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 11:53:20 +01:00
|
|
|
<template>
|
2022-07-06 00:30:56 +02:00
|
|
|
<!-- このコンポーネントの要素のclassは親から利用されるのでむやみに弄らないこと -->
|
2021-02-27 11:53:20 +01:00
|
|
|
<section>
|
|
|
|
<header class="_acrylic" @click="shown = !shown">
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="toggle ti-fw" :class="shown ? 'ph-caret-down ph-bold ph-lg' : 'ph-caret-up ph-bold ph-lg'"></i> <slot></slot> ({{ emojis.length }})
|
2021-02-27 11:53:20 +01:00
|
|
|
</header>
|
2022-07-06 00:30:56 +02:00
|
|
|
<div v-if="shown" class="body">
|
2022-07-05 16:01:23 +02:00
|
|
|
<button
|
|
|
|
v-for="emoji in emojis"
|
2021-11-19 11:36:12 +01:00
|
|
|
:key="emoji"
|
2023-03-10 06:15:49 +01:00
|
|
|
:data-emoji="emoji"
|
2022-07-06 00:30:56 +02:00
|
|
|
class="_button item"
|
2023-03-10 06:15:49 +01:00
|
|
|
@pointerenter="computeButtonTitle"
|
2022-01-18 15:06:16 +01:00
|
|
|
@click="emit('chosen', emoji, $event)"
|
2021-02-27 11:53:20 +01:00
|
|
|
>
|
2023-01-26 10:28:17 +01:00
|
|
|
<MkCustomEmoji v-if="emoji[0] === ':'" class="emoji" :name="emoji" :normal="true"/>
|
|
|
|
<MkEmoji v-else class="emoji" :emoji="emoji" :normal="true"/>
|
2021-02-27 11:53:20 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
<script lang="ts" setup>
|
2023-01-22 18:11:28 +01:00
|
|
|
import { ref, computed, Ref } from 'vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { getEmojiName } from '@/scripts/emojilist.js';
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const props = defineProps<{
|
2023-01-22 18:11:28 +01:00
|
|
|
emojis: string[] | Ref<string[]>;
|
2022-01-18 15:06:16 +01:00
|
|
|
initialShown?: boolean;
|
|
|
|
}>();
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const emit = defineEmits<{
|
2022-05-07 10:00:05 +02:00
|
|
|
(ev: 'chosen', v: string, event: MouseEvent): void;
|
2022-01-18 15:06:16 +01:00
|
|
|
}>();
|
2021-02-27 11:53:20 +01:00
|
|
|
|
2023-01-22 18:11:28 +01:00
|
|
|
const emojis = computed(() => Array.isArray(props.emojis) ? props.emojis : props.emojis.value);
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const shown = ref(!!props.initialShown);
|
2023-03-10 06:15:49 +01:00
|
|
|
|
|
|
|
/** @see MkEmojiPicker.vue */
|
|
|
|
function computeButtonTitle(ev: MouseEvent): void {
|
|
|
|
const elm = ev.target as HTMLElement;
|
|
|
|
const emoji = elm.dataset.emoji as string;
|
|
|
|
elm.title = getEmojiName(emoji) ?? emoji;
|
|
|
|
}
|
|
|
|
|
2021-02-27 11:53:20 +01:00
|
|
|
</script>
|