misskey/src/web/app/common/views/directives/autocomplete.ts

162 lines
3.9 KiB
TypeScript
Raw Normal View History

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) {
2018-02-24 16:55:49 +00:00
//#region BIND
this.onInput = this.onInput.bind(this);
2017-02-18 23:09:55 +00:00
this.complete = this.complete.bind(this);
2018-02-24 16:55:49 +00:00
this.close = this.close.bind(this);
//#endregion
2017-02-18 23:09:55 +00:00
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('@');
2018-02-24 16:55:49 +00:00
const emojiIndex = text.lastIndexOf(':');
if (mentionIndex != -1 && mentionIndex > emojiIndex) {
const username = text.substr(mentionIndex + 1);
if (!username.match(/^[a-zA-Z0-9-]+$/)) return;
this.open('user', username);
}
if (emojiIndex != -1 && emojiIndex > mentionIndex) {
const emoji = text.substr(emojiIndex + 1);
if (!emoji.match(/^[\+\-a-z_]+$/)) return;
this.open('emoji', emoji);
}
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 open(type, q) {
2017-02-18 08:18:31 +00:00
// 既に開いているサジェストは閉じる
this.close();
2018-02-24 17:57:19 +00:00
//#region サジェストを表示すべき位置を計算
const caretPosition = getCaretCoordinates(this.textarea, this.textarea.selectionStart);
const rect = this.textarea.getBoundingClientRect();
const x = rect.left + caretPosition.left - this.textarea.scrollLeft;
const y = rect.top + caretPosition.top - this.textarea.scrollTop;
//#endregion
2017-02-18 08:18:31 +00:00
// サジェスト要素作成
2018-02-21 21:13:38 +00:00
this.suggestion = new MkAutocomplete({
propsData: {
textarea: this.textarea,
complete: this.complete,
close: this.close,
type: type,
2018-02-24 17:57:19 +00:00
q: q,
x,
y
2018-02-21 21:13:38 +00:00
}
}).$mount();
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
*/
2018-02-24 16:55:49 +00:00
private complete(type, value) {
2017-02-18 08:18:31 +00:00
this.close();
const caret = this.textarea.selectionStart;
2018-02-24 16:55:49 +00:00
if (type == 'user') {
const source = this.textarea.value;
2017-02-18 08:18:31 +00:00
2018-02-24 16:55:49 +00:00
const before = source.substr(0, caret);
const trimmedBefore = before.substring(0, before.lastIndexOf('@'));
const after = source.substr(caret);
2017-02-18 08:18:31 +00:00
2018-02-24 16:55:49 +00:00
// 挿入
this.textarea.value = trimmedBefore + '@' + value.username + ' ' + after;
// キャレットを戻す
this.textarea.focus();
const pos = caret + value.username.length;
this.textarea.setSelectionRange(pos, pos);
} else if (type == 'emoji') {
const source = this.textarea.value;
const before = source.substr(0, caret);
const trimmedBefore = before.substring(0, before.lastIndexOf(':'));
const after = source.substr(caret);
// 挿入
this.textarea.value = trimmedBefore + value + after;
// キャレットを戻す
this.textarea.focus();
const pos = caret + value.length;
this.textarea.setSelectionRange(pos, pos);
}
2017-02-18 08:18:31 +00:00
}
}