summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-22 06:13:38 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-22 06:13:38 +0900
commit8056497809754197af2d67b0b2c65f1a57122d06 (patch)
treeb9b81dbd9a99e25cd4e89862ba9302151f08582f /src/web/app/desktop/scripts
parentwip (diff)
downloadmisskey-8056497809754197af2d67b0b2c65f1a57122d06.tar.gz
misskey-8056497809754197af2d67b0b2c65f1a57122d06.tar.bz2
misskey-8056497809754197af2d67b0b2c65f1a57122d06.zip
wip
Diffstat (limited to 'src/web/app/desktop/scripts')
-rw-r--r--src/web/app/desktop/scripts/autocomplete.ts132
1 files changed, 0 insertions, 132 deletions
diff --git a/src/web/app/desktop/scripts/autocomplete.ts b/src/web/app/desktop/scripts/autocomplete.ts
deleted file mode 100644
index 8f075efdd1..0000000000
--- a/src/web/app/desktop/scripts/autocomplete.ts
+++ /dev/null
@@ -1,132 +0,0 @@
-import getCaretCoordinates from 'textarea-caret';
-import * as riot from 'riot';
-
-/**
- * オートコンプリートを管理するクラス。
- */
-class Autocomplete {
- private suggestion: any;
- private textarea: any;
-
- /**
- * 対象のテキストエリアを与えてインスタンスを初期化します。
- */
- constructor(textarea) {
- // BIND ---------------------------------
- this.onInput = this.onInput.bind(this);
- this.complete = this.complete.bind(this);
- this.close = this.close.bind(this);
- // --------------------------------------
-
- this.suggestion = null;
- this.textarea = textarea;
- }
-
- /**
- * このインスタンスにあるテキストエリアの入力のキャプチャを開始します。
- */
- public attach() {
- this.textarea.addEventListener('input', this.onInput);
- }
-
- /**
- * このインスタンスにあるテキストエリアの入力のキャプチャを解除します。
- */
- public detach() {
- this.textarea.removeEventListener('input', this.onInput);
- this.close();
- }
-
- /**
- * テキスト入力時
- */
- private onInput() {
- 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);
- }
-
- /**
- * サジェストを提示します。
- */
- private open(type, q) {
- // 既に開いているサジェストは閉じる
- this.close();
-
- // サジェスト要素作成
- const tag = document.createElement('mk-autocomplete-suggestion');
-
- // ~ サジェストを表示すべき位置を計算 ~
-
- 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;
-
- tag.style.left = x + 'px';
- tag.style.top = y + 'px';
-
- // 要素追加
- const el = document.body.appendChild(tag);
-
- // マウント
- this.suggestion = (riot as any).mount(el, {
- textarea: this.textarea,
- complete: this.complete,
- close: this.close,
- type: type,
- q: q
- })[0];
- }
-
- /**
- * サジェストを閉じます。
- */
- private close() {
- if (this.suggestion == null) return;
-
- this.suggestion.unmount();
- this.suggestion = null;
-
- this.textarea.focus();
- }
-
- /**
- * オートコンプリートする
- */
- private complete(user) {
- this.close();
-
- const value = user.username;
-
- const caret = this.textarea.selectionStart;
- 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);
- }
-}
-
-export default Autocomplete;