2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-02-27 05:08:34 +01:00
|
|
|
<template>
|
2022-01-18 15:06:16 +01:00
|
|
|
<MkModal
|
|
|
|
ref="modal"
|
|
|
|
v-slot="{ type, maxHeight }"
|
2023-05-19 06:58:09 +02:00
|
|
|
:zPriority="'middle'"
|
2023-12-14 06:11:20 +01:00
|
|
|
:preferType="defaultStore.state.emojiPickerUseDrawerForMobile === false ? 'popup' : 'auto'"
|
2023-05-19 06:58:09 +02:00
|
|
|
:transparentBg="true"
|
|
|
|
:manualShowing="manualShowing"
|
2022-01-18 15:06:16 +01:00
|
|
|
:src="src"
|
|
|
|
@click="modal?.close()"
|
|
|
|
@opening="opening"
|
|
|
|
@close="emit('close')"
|
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
|
|
|
<MkEmojiPicker
|
|
|
|
ref="picker"
|
2023-05-27 04:35:26 +02:00
|
|
|
class="_popup _shadow"
|
|
|
|
:class="{ [$style.drawer]: type === 'drawer' }"
|
2023-05-19 06:58:09 +02:00
|
|
|
:showPinned="showPinned"
|
2023-12-14 06:11:20 +01:00
|
|
|
:pinnedEmojis="pinnedEmojis"
|
2023-05-19 06:58:09 +02:00
|
|
|
:asReactionPicker="asReactionPicker"
|
|
|
|
:asDrawer="type === 'drawer'"
|
2022-01-18 15:06:16 +01:00
|
|
|
:max-height="maxHeight"
|
|
|
|
@chosen="chosen"
|
|
|
|
/>
|
2021-12-16 18:14:40 +01:00
|
|
|
</MkModal>
|
2021-02-27 05:08:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 06:42:09 +01:00
|
|
|
import { shallowRef } from 'vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkModal from '@/components/MkModal.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkEmojiPicker from '@/components/MkEmojiPicker.vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { defaultStore } from '@/store.js';
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2023-12-03 09:25:34 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-01-28 04:30:47 +01:00
|
|
|
manualShowing?: boolean | null;
|
2022-01-18 15:06:16 +01:00
|
|
|
src?: HTMLElement;
|
|
|
|
showPinned?: boolean;
|
2023-12-14 06:11:20 +01:00
|
|
|
pinnedEmojis?: string[],
|
2022-01-18 15:06:16 +01:00
|
|
|
asReactionPicker?: boolean;
|
2023-12-03 09:25:34 +01:00
|
|
|
choseAndClose?: boolean;
|
2022-01-18 15:06:16 +01:00
|
|
|
}>(), {
|
2022-01-28 04:30:47 +01:00
|
|
|
manualShowing: null,
|
2022-01-18 15:06:16 +01:00
|
|
|
showPinned: true,
|
2023-12-14 06:11:20 +01:00
|
|
|
pinnedEmojis: undefined,
|
2022-01-18 15:06:16 +01:00
|
|
|
asReactionPicker: false,
|
2023-12-03 09:25:34 +01:00
|
|
|
choseAndClose: true,
|
2022-01-18 15:06:16 +01:00
|
|
|
});
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const emit = defineEmits<{
|
2022-01-28 04:20:42 +01:00
|
|
|
(ev: 'done', v: any): void;
|
|
|
|
(ev: 'close'): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-18 15:06:16 +01:00
|
|
|
}>();
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2023-12-07 06:42:09 +01:00
|
|
|
const modal = shallowRef<InstanceType<typeof MkModal>>();
|
|
|
|
const picker = shallowRef<InstanceType<typeof MkEmojiPicker>>();
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
function chosen(emoji: any) {
|
|
|
|
emit('done', emoji);
|
2023-12-03 09:25:34 +01:00
|
|
|
if (props.choseAndClose) {
|
2023-12-07 06:42:09 +01:00
|
|
|
modal.value?.close();
|
2023-12-03 09:25:34 +01:00
|
|
|
}
|
2022-01-18 15:06:16 +01:00
|
|
|
}
|
2021-02-28 02:03:52 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
function opening() {
|
2023-12-07 06:42:09 +01:00
|
|
|
picker.value?.reset();
|
|
|
|
picker.value?.focus();
|
2023-01-09 09:08:58 +01:00
|
|
|
|
|
|
|
// 何故かちょっと待たないとフォーカスされない
|
|
|
|
setTimeout(() => {
|
2023-12-07 06:42:09 +01:00
|
|
|
picker.value?.focus();
|
2023-01-09 09:08:58 +01:00
|
|
|
}, 10);
|
2022-01-18 15:06:16 +01:00
|
|
|
}
|
2021-02-27 05:08:34 +01:00
|
|
|
</script>
|
|
|
|
|
2023-05-27 04:35:26 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.drawer {
|
|
|
|
border-radius: 24px;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
2021-02-27 05:08:34 +01:00
|
|
|
}
|
|
|
|
</style>
|