2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-05-01 13:51:07 +00:00
|
|
|
import { nextTick, Ref, ref, defineAsyncComponent } from 'vue';
|
|
|
|
import getCaretCoordinates from 'textarea-caret';
|
2021-04-04 04:00:39 +00:00
|
|
|
import { toASCII } from 'punycode/';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { popup } from '@/os.js';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-12-14 04:11:23 +00:00
|
|
|
export type SuggestionType = 'user' | 'hashtag' | 'emoji' | 'mfmTag';
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export class Autocomplete {
|
|
|
|
private suggestion: {
|
|
|
|
x: Ref<number>;
|
|
|
|
y: Ref<number>;
|
2021-09-25 17:10:07 +00:00
|
|
|
q: Ref<string | null>;
|
2022-07-04 14:46:48 +00:00
|
|
|
close: () => void;
|
2021-09-25 17:10:07 +00:00
|
|
|
} | null;
|
2022-01-15 16:46:25 +00:00
|
|
|
private textarea: HTMLInputElement | HTMLTextAreaElement;
|
2018-02-25 08:38:16 +00:00
|
|
|
private currentType: string;
|
2022-01-15 16:46:25 +00:00
|
|
|
private textRef: Ref<string>;
|
2018-12-19 15:02:28 +00:00
|
|
|
private opening: boolean;
|
2023-12-14 04:11:23 +00:00
|
|
|
private onlyType: SuggestionType[];
|
2018-02-25 04:05:55 +00:00
|
|
|
|
|
|
|
private get text(): string {
|
2022-12-22 05:28:13 +00:00
|
|
|
// Use raw .value to get the latest value
|
|
|
|
// (Because v-model does not update while composition)
|
|
|
|
return this.textarea.value;
|
2018-02-25 04:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private set text(text: string) {
|
2022-12-22 05:28:13 +00:00
|
|
|
// Use ref value to notify other watchers
|
|
|
|
// (Because .value setter never fires input/change events)
|
2022-01-15 16:46:25 +00:00
|
|
|
this.textRef.value = text;
|
2018-02-25 04:05:55 +00:00
|
|
|
}
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 対象のテキストエリアを与えてインスタンスを初期化します。
|
|
|
|
*/
|
2023-12-14 04:11:23 +00:00
|
|
|
constructor(textarea: HTMLInputElement | HTMLTextAreaElement, textRef: Ref<string>, onlyType?: SuggestionType[]) {
|
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;
|
2022-01-15 16:46:25 +00:00
|
|
|
this.textRef = textRef;
|
2018-12-19 15:02:28 +00:00
|
|
|
this.opening = false;
|
2023-12-14 04:11:23 +00:00
|
|
|
this.onlyType = onlyType ?? ['user', 'hashtag', 'emoji', 'mfmTag'];
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
this.attach();
|
2017-02-18 08:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* このインスタンスにあるテキストエリアの入力のキャプチャを開始します。
|
|
|
|
*/
|
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() {
|
2018-07-17 22:19:24 +00:00
|
|
|
const caretPos = this.textarea.selectionStart;
|
2023-07-13 22:59:54 +00:00
|
|
|
const text = this.text.substring(0, caretPos).split('\n').pop()!;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
|
|
|
const mentionIndex = text.lastIndexOf('@');
|
2018-07-17 22:19:24 +00:00
|
|
|
const hashtagIndex = text.lastIndexOf('#');
|
2018-02-24 16:55:49 +00:00
|
|
|
const emojiIndex = text.lastIndexOf(':');
|
2021-09-25 17:55:11 +00:00
|
|
|
const mfmTagIndex = text.lastIndexOf('$');
|
2018-02-24 16:55:49 +00:00
|
|
|
|
2018-07-27 22:38:29 +00:00
|
|
|
const max = Math.max(
|
|
|
|
mentionIndex,
|
|
|
|
hashtagIndex,
|
2021-09-25 17:55:11 +00:00
|
|
|
emojiIndex,
|
|
|
|
mfmTagIndex);
|
2018-07-17 22:19:24 +00:00
|
|
|
|
2022-05-07 05:19:15 +00:00
|
|
|
if (max === -1) {
|
2018-07-20 18:15:31 +00:00
|
|
|
this.close();
|
|
|
|
return;
|
|
|
|
}
|
2018-07-17 22:19:24 +00:00
|
|
|
|
2022-05-07 05:19:15 +00:00
|
|
|
const isMention = mentionIndex !== -1;
|
|
|
|
const isHashtag = hashtagIndex !== -1;
|
|
|
|
const isMfmTag = mfmTagIndex !== -1;
|
|
|
|
const isEmoji = emojiIndex !== -1 && text.split(/:[a-z0-9_+\-]+:/).pop()!.includes(':');
|
2018-07-17 22:19:24 +00:00
|
|
|
|
2018-02-25 08:38:16 +00:00
|
|
|
let opened = false;
|
|
|
|
|
2023-12-14 04:11:23 +00:00
|
|
|
if (isMention && this.onlyType.includes('user')) {
|
2023-07-13 22:59:54 +00:00
|
|
|
const username = text.substring(mentionIndex + 1);
|
2023-12-19 21:03:43 +00:00
|
|
|
if (username !== '' && username.match(/^[a-zA-Z0-9_.]+$/)) {
|
2018-02-25 08:38:16 +00:00
|
|
|
this.open('user', username);
|
|
|
|
opened = true;
|
2020-01-31 22:38:40 +00:00
|
|
|
} else if (username === '') {
|
|
|
|
this.open('user', null);
|
|
|
|
opened = true;
|
2018-02-25 08:38:16 +00:00
|
|
|
}
|
2018-02-24 16:55:49 +00:00
|
|
|
}
|
|
|
|
|
2023-12-14 04:11:23 +00:00
|
|
|
if (isHashtag && !opened && this.onlyType.includes('hashtag')) {
|
2023-07-13 22:59:54 +00:00
|
|
|
const hashtag = text.substring(hashtagIndex + 1);
|
2018-07-27 22:38:29 +00:00
|
|
|
if (!hashtag.includes(' ')) {
|
2018-07-17 22:19:24 +00:00
|
|
|
this.open('hashtag', hashtag);
|
|
|
|
opened = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:11:23 +00:00
|
|
|
if (isEmoji && !opened && this.onlyType.includes('emoji')) {
|
2023-07-13 22:59:54 +00:00
|
|
|
const emoji = text.substring(emojiIndex + 1);
|
2018-11-05 17:05:16 +00:00
|
|
|
if (!emoji.includes(' ')) {
|
2018-02-25 08:38:16 +00:00
|
|
|
this.open('emoji', emoji);
|
|
|
|
opened = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:11:23 +00:00
|
|
|
if (isMfmTag && !opened && this.onlyType.includes('mfmTag')) {
|
2023-07-13 22:59:54 +00:00
|
|
|
const mfmTag = text.substring(mfmTagIndex + 1);
|
2021-09-25 17:55:11 +00:00
|
|
|
if (!mfmTag.includes(' ')) {
|
2021-09-25 18:25:00 +00:00
|
|
|
this.open('mfmTag', mfmTag.replace('[', ''));
|
2021-09-25 17:55:11 +00:00
|
|
|
opened = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:38:16 +00:00
|
|
|
if (!opened) {
|
|
|
|
this.close();
|
2018-02-24 16:55:49 +00:00
|
|
|
}
|
2017-02-18 08:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 09:05:35 +00:00
|
|
|
* サジェストを提示します。
|
2017-02-18 08:18:31 +00:00
|
|
|
*/
|
2021-09-25 17:10:07 +00:00
|
|
|
private async open(type: string, q: string | null) {
|
2022-05-07 05:19:15 +00:00
|
|
|
if (type !== this.currentType) {
|
2018-02-25 08:38:16 +00:00
|
|
|
this.close();
|
|
|
|
}
|
2018-12-19 15:02:28 +00:00
|
|
|
if (this.opening) return;
|
|
|
|
this.opening = true;
|
2018-02-25 08:38:16 +00:00
|
|
|
this.currentType = type;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
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
|
|
|
|
|
2018-02-25 08:38:16 +00:00
|
|
|
if (this.suggestion) {
|
2020-10-17 11:12:00 +00:00
|
|
|
this.suggestion.x.value = x;
|
|
|
|
this.suggestion.y.value = y;
|
|
|
|
this.suggestion.q.value = q;
|
2018-12-19 15:02:28 +00:00
|
|
|
|
|
|
|
this.opening = false;
|
2018-02-25 08:38:16 +00:00
|
|
|
} else {
|
2020-10-17 11:12:00 +00:00
|
|
|
const _x = ref(x);
|
|
|
|
const _y = ref(y);
|
|
|
|
const _q = ref(q);
|
|
|
|
|
2022-08-30 15:24:33 +00:00
|
|
|
const { dispose } = await popup(defineAsyncComponent(() => import('@/components/MkAutocomplete.vue')), {
|
2020-10-17 11:12:00 +00:00
|
|
|
textarea: this.textarea,
|
|
|
|
close: this.close,
|
|
|
|
type: type,
|
|
|
|
q: _q,
|
|
|
|
x: _x,
|
|
|
|
y: _y,
|
|
|
|
}, {
|
|
|
|
done: (res) => {
|
|
|
|
this.complete(res);
|
2022-12-22 07:01:59 +00:00
|
|
|
},
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
2018-02-25 08:38:16 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
this.suggestion = {
|
|
|
|
q: _q,
|
|
|
|
x: _x,
|
|
|
|
y: _y,
|
|
|
|
close: () => dispose(),
|
|
|
|
};
|
2018-12-19 15:02:28 +00:00
|
|
|
|
|
|
|
this.opening = false;
|
2018-02-25 08:38:16 +00:00
|
|
|
}
|
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
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
this.suggestion.close();
|
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
|
|
|
*/
|
2020-10-17 11:12:00 +00:00
|
|
|
private complete({ type, value }) {
|
2017-02-18 08:18:31 +00:00
|
|
|
this.close();
|
|
|
|
|
|
|
|
const caret = this.textarea.selectionStart;
|
|
|
|
|
2022-05-07 05:19:15 +00:00
|
|
|
if (type === 'user') {
|
2018-02-25 04:05:55 +00:00
|
|
|
const source = this.text;
|
2017-02-18 08:18:31 +00:00
|
|
|
|
2023-07-13 22:59:54 +00:00
|
|
|
const before = source.substring(0, caret);
|
2018-02-24 16:55:49 +00:00
|
|
|
const trimmedBefore = before.substring(0, before.lastIndexOf('@'));
|
2023-07-13 22:59:54 +00:00
|
|
|
const after = source.substring(caret);
|
2017-02-18 08:18:31 +00:00
|
|
|
|
2018-10-14 07:56:19 +00:00
|
|
|
const acct = value.host === null ? value.username : `${value.username}@${toASCII(value.host)}`;
|
2018-07-24 15:51:30 +00:00
|
|
|
|
2018-02-24 16:55:49 +00:00
|
|
|
// 挿入
|
2018-09-01 14:12:51 +00:00
|
|
|
this.text = `${trimmedBefore}@${acct} ${after}`;
|
2018-02-24 16:55:49 +00:00
|
|
|
|
|
|
|
// キャレットを戻す
|
2022-01-15 16:46:25 +00:00
|
|
|
nextTick(() => {
|
2018-02-25 04:31:02 +00:00
|
|
|
this.textarea.focus();
|
2018-07-24 15:51:30 +00:00
|
|
|
const pos = trimmedBefore.length + (acct.length + 2);
|
2018-02-25 04:31:02 +00:00
|
|
|
this.textarea.setSelectionRange(pos, pos);
|
|
|
|
});
|
2022-05-07 05:19:15 +00:00
|
|
|
} else if (type === 'hashtag') {
|
2018-07-17 22:19:24 +00:00
|
|
|
const source = this.text;
|
|
|
|
|
2023-07-13 22:59:54 +00:00
|
|
|
const before = source.substring(0, caret);
|
2018-07-17 22:19:24 +00:00
|
|
|
const trimmedBefore = before.substring(0, before.lastIndexOf('#'));
|
2023-07-13 22:59:54 +00:00
|
|
|
const after = source.substring(caret);
|
2018-07-17 22:19:24 +00:00
|
|
|
|
|
|
|
// 挿入
|
2018-09-01 14:12:51 +00:00
|
|
|
this.text = `${trimmedBefore}#${value} ${after}`;
|
2018-07-17 22:19:24 +00:00
|
|
|
|
|
|
|
// キャレットを戻す
|
2022-01-15 16:46:25 +00:00
|
|
|
nextTick(() => {
|
2018-07-17 22:19:24 +00:00
|
|
|
this.textarea.focus();
|
|
|
|
const pos = trimmedBefore.length + (value.length + 2);
|
|
|
|
this.textarea.setSelectionRange(pos, pos);
|
|
|
|
});
|
2022-05-07 05:19:15 +00:00
|
|
|
} else if (type === 'emoji') {
|
2018-02-25 04:05:55 +00:00
|
|
|
const source = this.text;
|
2018-02-24 16:55:49 +00:00
|
|
|
|
2023-07-13 22:59:54 +00:00
|
|
|
const before = source.substring(0, caret);
|
2018-02-24 16:55:49 +00:00
|
|
|
const trimmedBefore = before.substring(0, before.lastIndexOf(':'));
|
2023-07-13 22:59:54 +00:00
|
|
|
const after = source.substring(caret);
|
2018-02-24 16:55:49 +00:00
|
|
|
|
|
|
|
// 挿入
|
2018-02-25 04:05:55 +00:00
|
|
|
this.text = trimmedBefore + value + after;
|
2018-02-24 16:55:49 +00:00
|
|
|
|
|
|
|
// キャレットを戻す
|
2022-01-15 16:46:25 +00:00
|
|
|
nextTick(() => {
|
2018-02-25 04:31:02 +00:00
|
|
|
this.textarea.focus();
|
2019-09-21 12:33:01 +00:00
|
|
|
const pos = trimmedBefore.length + value.length;
|
2018-02-25 04:31:02 +00:00
|
|
|
this.textarea.setSelectionRange(pos, pos);
|
|
|
|
});
|
2022-05-07 05:19:15 +00:00
|
|
|
} else if (type === 'mfmTag') {
|
2021-09-25 17:55:11 +00:00
|
|
|
const source = this.text;
|
|
|
|
|
2023-07-13 22:59:54 +00:00
|
|
|
const before = source.substring(0, caret);
|
2021-09-25 17:55:11 +00:00
|
|
|
const trimmedBefore = before.substring(0, before.lastIndexOf('$'));
|
2023-07-13 22:59:54 +00:00
|
|
|
const after = source.substring(caret);
|
2021-09-25 17:55:11 +00:00
|
|
|
|
|
|
|
// 挿入
|
|
|
|
this.text = `${trimmedBefore}$[${value} ]${after}`;
|
|
|
|
|
|
|
|
// キャレットを戻す
|
2022-01-15 16:46:25 +00:00
|
|
|
nextTick(() => {
|
2021-09-25 17:55:11 +00:00
|
|
|
this.textarea.focus();
|
|
|
|
const pos = trimmedBefore.length + (value.length + 3);
|
|
|
|
this.textarea.setSelectionRange(pos, pos);
|
|
|
|
});
|
2018-02-24 16:55:49 +00:00
|
|
|
}
|
2017-02-18 08:18:31 +00:00
|
|
|
}
|
|
|
|
}
|