Sharkey/src/web/app/desktop/views/directives/autocomplete.ts

143 lines
3.3 KiB
TypeScript
Raw Normal View History

2018-02-21 23:13:38 +02:00
import * as getCaretCoordinates from 'textarea-caret';
import MkAutocomplete from '../components/autocomplete.vue';
export default {
bind(el, binding, vn) {
const self = el._userPreviewDirective_ = {} as any;
self.x = new Autocomplete(el);
self.x.attach();
},
unbind(el, binding, vn) {
const self = el._userPreviewDirective_;
self.x.close();
}
};
2017-02-18 10:18:31 +02:00
/**
*
*/
class Autocomplete {
2017-11-13 11:05:35 +02:00
private suggestion: any;
private textarea: any;
2017-02-18 10:18:31 +02:00
/**
*
*/
constructor(textarea) {
2017-02-19 01:09:55 +02:00
// BIND ---------------------------------
this.onInput = this.onInput.bind(this);
this.complete = this.complete.bind(this);
this.close = this.close.bind(this);
// --------------------------------------
2017-02-18 10:18:31 +02:00
this.suggestion = null;
this.textarea = textarea;
}
/**
*
*/
2017-11-13 11:05:35 +02:00
public attach() {
2017-02-18 10:18:31 +02:00
this.textarea.addEventListener('input', this.onInput);
}
/**
*
*/
2017-11-13 11:05:35 +02:00
public detach() {
2017-02-18 10:18:31 +02:00
this.textarea.removeEventListener('input', this.onInput);
this.close();
}
/**
2017-11-13 11:05:35 +02:00
*
2017-02-18 10:18:31 +02:00
*/
2017-11-13 11:05:35 +02:00
private onInput() {
2017-02-18 10:18:31 +02: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 11:05:35 +02:00
*
2017-02-18 10:18:31 +02:00
*/
2017-11-13 11:05:35 +02:00
private open(type, q) {
2017-02-18 10:18:31 +02:00
// 既に開いているサジェストは閉じる
this.close();
// サジェスト要素作成
2018-02-21 23:13:38 +02:00
this.suggestion = new MkAutocomplete({
propsData: {
textarea: this.textarea,
complete: this.complete,
close: this.close,
type: type,
q: q
}
}).$mount();
2017-02-18 10:18:31 +02: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 23:13:38 +02:00
this.suggestion.$el.style.left = x + 'px';
this.suggestion.$el.style.top = y + 'px';
2017-02-18 10:18:31 +02:00
// 要素追加
2018-02-21 23:13:38 +02:00
document.body.appendChild(this.suggestion.$el);
2017-02-18 10:18:31 +02:00
}
/**
2017-11-13 11:05:35 +02:00
*
2017-02-18 10:18:31 +02:00
*/
2017-11-13 11:05:35 +02:00
private close() {
2017-02-19 00:24:31 +02:00
if (this.suggestion == null) return;
2017-02-18 10:18:31 +02:00
2018-02-21 23:13:38 +02:00
this.suggestion.$destroy();
2017-02-18 10:18:31 +02:00
this.suggestion = null;
this.textarea.focus();
}
/**
2017-11-13 11:05:35 +02:00
*
2017-02-18 10:18:31 +02:00
*/
2017-11-13 11:05:35 +02:00
private complete(user) {
2017-02-18 10:18:31 +02: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 10:01:26 +02:00
const trimmedBefore = before.substring(0, before.lastIndexOf('@'));
2017-02-18 10:18:31 +02:00
const after = source.substr(caret);
// 結果を挿入する
2017-02-27 10:01:26 +02:00
this.textarea.value = trimmedBefore + '@' + value + ' ' + after;
2017-02-18 10:18:31 +02:00
// キャレットを戻す
this.textarea.focus();
const pos = caret + value.length;
this.textarea.setSelectionRange(pos, pos);
}
}