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

42 lines
947 B
TypeScript
Raw Normal View History

2021-03-05 04:49:46 +00:00
import { Ref, ref } from 'vue';
2021-11-11 17:02:25 +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() {
2021-11-11 17:02:25 +00:00
await popup(import('@/components/emoji-picker-dialog.vue'), {
2021-03-05 04:49:46 +00:00
src: this.src,
asReactionPicker: true,
manualShowing: this.manualShowing
}, {
done: reaction => {
this.onChosen!(reaction);
},
close: () => {
this.manualShowing.value = false;
},
closed: () => {
this.src.value = null;
this.onClosed!();
}
});
}
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();