2018-02-21 21:13:38 +00:00
|
|
|
import * as getCaretCoordinates from 'textarea-caret';
|
|
|
|
import MkAutocomplete from '../components/autocomplete.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
bind(el, binding, vn) {
|
2018-02-22 12:15:24 +00:00
|
|
|
const self = el._autoCompleteDirective_ = {} as any;
|
2018-02-21 21:13:38 +00:00
|
|
|
self.x = new Autocomplete(el);
|
|
|
|
self.x.attach();
|
|
|
|
},
|
|
|
|
|
|
|
|
unbind(el, binding, vn) {
|
2018-02-22 12:15:24 +00:00
|
|
|
const self = el._autoCompleteDirective_;
|
|
|
|
self.x.detach();
|
2018-02-21 21:13:38 +00:00
|
|
|
}
|
|
|
|
};
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* オートコンプリートを管理するクラス。
|
|
|
|
*/
|
|
|
|
class Autocomplete {
|
2017-11-13 09:05:35 +00:00
|
|
|
private suggestion: any;
|
|
|
|
private textarea: any;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 対象のテキストエリアを与えてインスタンスを初期化します。
|
|
|
|
*/
|
|
|
|
constructor(textarea) {
|
2017-02-18 23:09:55 +00:00
|
|
|
// BIND ---------------------------------
|
|
|
|
this.onInput = this.onInput.bind(this);
|
|
|
|
this.complete = this.complete.bind(this);
|
|
|
|
this.close = this.close.bind(this);
|
|
|
|
// --------------------------------------
|
|
|
|
|
2017-02-18 08:18:31 +00:00
|
|
|
this.suggestion = null;
|
|
|
|
this.textarea = textarea;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* このインスタンスにあるテキストエリアの入力のキャプチャを開始します。
|
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
public attach() {
|
2017-02-18 08:18:31 +00:00
|
|
|
this.textarea.addEventListener('input', this.onInput);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* このインスタンスにあるテキストエリアの入力のキャプチャを解除します。
|
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
public detach() {
|
2017-02-18 08:18:31 +00:00
|
|
|
this.textarea.removeEventListener('input', this.onInput);
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:05:35 +00:00
|
|
|
* テキスト入力時
|
2017-02-18 08:18:31 +00:00
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
private onInput() {
|
2017-02-18 08:18:31 +00:00
|
|
|
this.close();
|
|
|
|
|
|
|
|
const caret = this.textarea.selectionStart;
|
|
|
|
const text = this.textarea.value.substr(0, caret);
|
|
|
|
|
|
|
|
const mentionIndex = text.lastIndexOf('@');
|
|
|
|
|
|
|
|
if (mentionIndex == -1) return;
|
|
|
|
|
|
|
|
const username = text.substr(mentionIndex + 1);
|
|
|
|
|
|
|
|
if (!username.match(/^[a-zA-Z0-9-]+$/)) return;
|
|
|
|
|
|
|
|
this.open('user', username);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:05:35 +00:00
|
|
|
* サジェストを提示します。
|
2017-02-18 08:18:31 +00:00
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
private open(type, q) {
|
2017-02-18 08:18:31 +00:00
|
|
|
// 既に開いているサジェストは閉じる
|
|
|
|
this.close();
|
|
|
|
|
|
|
|
// サジェスト要素作成
|
2018-02-21 21:13:38 +00:00
|
|
|
this.suggestion = new MkAutocomplete({
|
|
|
|
propsData: {
|
|
|
|
textarea: this.textarea,
|
|
|
|
complete: this.complete,
|
|
|
|
close: this.close,
|
|
|
|
type: type,
|
|
|
|
q: q
|
|
|
|
}
|
|
|
|
}).$mount();
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
// ~ サジェストを表示すべき位置を計算 ~
|
|
|
|
|
|
|
|
const caretPosition = getCaretCoordinates(this.textarea, this.textarea.selectionStart);
|
|
|
|
|
|
|
|
const rect = this.textarea.getBoundingClientRect();
|
|
|
|
|
|
|
|
const x = rect.left + window.pageXOffset + caretPosition.left;
|
|
|
|
const y = rect.top + window.pageYOffset + caretPosition.top;
|
|
|
|
|
2018-02-21 21:13:38 +00:00
|
|
|
this.suggestion.$el.style.left = x + 'px';
|
|
|
|
this.suggestion.$el.style.top = y + 'px';
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
// 要素追加
|
2018-02-21 21:13:38 +00:00
|
|
|
document.body.appendChild(this.suggestion.$el);
|
2017-02-18 08:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:05:35 +00:00
|
|
|
* サジェストを閉じます。
|
2017-02-18 08:18:31 +00:00
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
private close() {
|
2017-02-18 22:24:31 +00:00
|
|
|
if (this.suggestion == null) return;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
2018-02-21 21:13:38 +00:00
|
|
|
this.suggestion.$destroy();
|
2017-02-18 08:18:31 +00:00
|
|
|
this.suggestion = null;
|
|
|
|
|
|
|
|
this.textarea.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:05:35 +00:00
|
|
|
* オートコンプリートする
|
2017-02-18 08:18:31 +00:00
|
|
|
*/
|
2017-11-13 09:05:35 +00:00
|
|
|
private complete(user) {
|
2017-02-18 08:18:31 +00:00
|
|
|
this.close();
|
|
|
|
|
|
|
|
const value = user.username;
|
|
|
|
|
|
|
|
const caret = this.textarea.selectionStart;
|
|
|
|
const source = this.textarea.value;
|
|
|
|
|
|
|
|
const before = source.substr(0, caret);
|
2017-02-27 08:01:26 +00:00
|
|
|
const trimmedBefore = before.substring(0, before.lastIndexOf('@'));
|
2017-02-18 08:18:31 +00:00
|
|
|
const after = source.substr(caret);
|
|
|
|
|
|
|
|
// 結果を挿入する
|
2017-02-27 08:01:26 +00:00
|
|
|
this.textarea.value = trimmedBefore + '@' + value + ' ' + after;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
// キャレットを戻す
|
|
|
|
this.textarea.focus();
|
|
|
|
const pos = caret + value.length;
|
|
|
|
this.textarea.setSelectionRange(pos, pos);
|
|
|
|
}
|
|
|
|
}
|