69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { defineAsyncComponent, ref, watch } from 'vue';
|
|
import type { Ref } from 'vue';
|
|
import { popup } from '@/os.js';
|
|
import { prefer } from '@/preferences.js';
|
|
|
|
/**
|
|
* 絵文字ピッカーを表示する。
|
|
* 類似の機能として{@link ReactionPicker}が存在しているが、この機能とは動きが異なる。
|
|
* 投稿フォームなどで絵文字を選択する時など、絵文字ピックアップ後でもダイアログが消えずに残り、
|
|
* 一度表示したダイアログを連続で使用できることが望ましいシーンでの利用が想定される。
|
|
*/
|
|
class EmojiPicker {
|
|
private anchorElement: Ref<HTMLElement | null> = ref(null);
|
|
private manualShowing = ref(false);
|
|
private onChosen?: (emoji: string) => void;
|
|
private onClosed?: () => void;
|
|
|
|
constructor() {
|
|
// nop
|
|
}
|
|
|
|
public async init() {
|
|
const emojisRef = ref<string[]>([]);
|
|
|
|
watch([prefer.r.emojiPaletteForMain, prefer.r.emojiPalettes], () => {
|
|
emojisRef.value = prefer.s.emojiPaletteForMain == null ? prefer.s.emojiPalettes[0].emojis : prefer.s.emojiPalettes.find(palette => palette.id === prefer.s.emojiPaletteForMain)?.emojis ?? [];
|
|
}, {
|
|
immediate: true,
|
|
});
|
|
|
|
await popup(defineAsyncComponent(() => import('@/components/MkEmojiPickerDialog.vue')), {
|
|
anchorElement: this.anchorElement,
|
|
pinnedEmojis: emojisRef,
|
|
asReactionPicker: false,
|
|
manualShowing: this.manualShowing,
|
|
choseAndClose: false,
|
|
}, {
|
|
done: emoji => {
|
|
if (this.onChosen) this.onChosen(emoji);
|
|
},
|
|
close: () => {
|
|
this.manualShowing.value = false;
|
|
},
|
|
closed: () => {
|
|
this.anchorElement.value = null;
|
|
if (this.onClosed) this.onClosed();
|
|
},
|
|
});
|
|
}
|
|
|
|
public show(
|
|
anchorElement: HTMLElement,
|
|
onChosen?: EmojiPicker['onChosen'],
|
|
onClosed?: EmojiPicker['onClosed'],
|
|
) {
|
|
this.anchorElement.value = anchorElement;
|
|
this.manualShowing.value = true;
|
|
this.onChosen = onChosen;
|
|
this.onClosed = onClosed;
|
|
}
|
|
}
|
|
|
|
export const emojiPicker = new EmojiPicker();
|