firefish/packages/client/src/scripts/reaction-picker.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-09-01 23:27:33 +00:00
import type { Ref } from "vue";
import { defineAsyncComponent, ref } from "vue";
2023-01-13 04:40:33 +00:00
import { popup } from "@/os";
2021-03-05 04:49:46 +00:00
class ReactionPicker {
private src: Ref<HTMLElement | null> = ref(null);
private manualShowing = ref(false);
private onChosen?: (reaction: string) => void;
private onClosed?: () => void;
2021-03-05 04:49:46 +00:00
constructor() {
// nop
}
public async init() {
2023-01-13 04:40:33 +00:00
await popup(
defineAsyncComponent(
() => import("@/components/MkEmojiPickerDialog.vue"),
),
{
src: this.src,
asReactionPicker: true,
manualShowing: this.manualShowing,
2021-03-05 04:49:46 +00:00
},
2023-01-13 04:40:33 +00:00
{
done: (reaction) => {
this.onChosen?.(reaction);
2023-01-13 04:40:33 +00:00
},
close: () => {
this.manualShowing.value = false;
},
closed: () => {
this.src.value = null;
this.onClosed?.();
2023-01-13 04:40:33 +00:00
},
2021-03-05 04:49:46 +00:00
},
2023-01-13 04:40:33 +00:00
);
2021-03-05 04:49:46 +00:00
}
2023-01-13 04:40:33 +00:00
public show(
src: HTMLElement,
onChosen: ReactionPicker["onChosen"],
onClosed: ReactionPicker["onClosed"],
) {
2021-03-05 04:49:46 +00:00
this.src.value = src;
this.manualShowing.value = true;
this.onChosen = onChosen;
this.onClosed = onClosed;
}
}
export const reactionPicker = new ReactionPicker();