2023-07-27 05:31:52 +00:00
|
|
|
|
<!--
|
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
-->
|
|
|
|
|
|
2021-02-27 10:53:20 +00:00
|
|
|
|
<template>
|
2022-07-05 22:30:56 +00:00
|
|
|
|
<!-- このコンポーネントの要素のclassは親から利用されるのでむやみに弄らないこと -->
|
2023-12-02 06:26:46 +00:00
|
|
|
|
<!-- フォルダの中にはカスタム絵文字だけ(Unicode絵文字もこっち) -->
|
2023-12-23 12:20:51 +00:00
|
|
|
|
<section v-if="!hasChildSection" v-panel style="border-radius: var(--radius-sm); border-bottom: 0.5px solid var(--divider);">
|
2021-02-27 10:53:20 +00:00
|
|
|
|
<header class="_acrylic" @click="shown = !shown">
|
2023-12-23 01:09:23 +00: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> (<i class="ph-bold ph-lg"></i>:{{ emojis.length }})
|
2021-02-27 10:53:20 +00:00
|
|
|
|
</header>
|
2022-07-05 22:30:56 +00:00
|
|
|
|
<div v-if="shown" class="body">
|
2022-07-05 14:01:23 +00:00
|
|
|
|
<button
|
|
|
|
|
v-for="emoji in emojis"
|
2021-11-19 10:36:12 +00:00
|
|
|
|
:key="emoji"
|
2023-03-10 05:15:49 +00:00
|
|
|
|
:data-emoji="emoji"
|
2022-07-05 22:30:56 +00:00
|
|
|
|
class="_button item"
|
2023-03-10 05:15:49 +00:00
|
|
|
|
@pointerenter="computeButtonTitle"
|
2022-01-18 14:06:16 +00:00
|
|
|
|
@click="emit('chosen', emoji, $event)"
|
2021-02-27 10:53:20 +00:00
|
|
|
|
>
|
2023-01-26 09:28:17 +00:00
|
|
|
|
<MkCustomEmoji v-if="emoji[0] === ':'" class="emoji" :name="emoji" :normal="true"/>
|
|
|
|
|
<MkEmoji v-else class="emoji" :emoji="emoji" :normal="true"/>
|
2021-02-27 10:53:20 +00:00
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2023-12-02 06:26:46 +00:00
|
|
|
|
<!-- フォルダの中にはカスタム絵文字やフォルダがある -->
|
2023-12-23 12:20:51 +00:00
|
|
|
|
<section v-else v-panel style="border-radius: var(--radius-sm); border-bottom: 0.5px solid var(--divider);">
|
2023-12-09 17:11:17 +00:00
|
|
|
|
<header class="_acrylic" @click="shown = !shown">
|
2023-12-31 21:17:40 +00: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> (<i class="ph-folder ph-bold ph-lg"></i>:{{ customEmojiTree.length }} <i class="ph-smiley-sticker ph-bold ph-lg ti-fw"></i>:{{ emojis.length }})
|
2023-12-09 17:11:17 +00:00
|
|
|
|
</header>
|
|
|
|
|
<div v-if="shown" style="padding-left: 9px;">
|
|
|
|
|
<MkEmojiPickerSection
|
|
|
|
|
v-for="child in customEmojiTree"
|
|
|
|
|
:key="`custom:${child.value}`"
|
|
|
|
|
:initialShown="initialShown"
|
|
|
|
|
:emojis="computed(() => customEmojis.filter(e => e.category === child.category).map(e => `:${e.name}:`))"
|
|
|
|
|
:hasChildSection="child.children.length !== 0"
|
|
|
|
|
:customEmojiTree="child.children"
|
|
|
|
|
@chosen="nestedChosen"
|
|
|
|
|
>
|
|
|
|
|
{{ child.value || i18n.ts.other }}
|
|
|
|
|
</MkEmojiPickerSection>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="shown" class="body">
|
|
|
|
|
<button
|
|
|
|
|
v-for="emoji in emojis"
|
|
|
|
|
:key="emoji"
|
|
|
|
|
:data-emoji="emoji"
|
|
|
|
|
class="_button item"
|
|
|
|
|
@pointerenter="computeButtonTitle"
|
|
|
|
|
@click="emit('chosen', emoji, $event)"
|
|
|
|
|
>
|
|
|
|
|
<MkCustomEmoji v-if="emoji[0] === ':'" class="emoji" :name="emoji" :normal="true"/>
|
|
|
|
|
<MkEmoji v-else class="emoji" :emoji="emoji" :normal="true"/>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-12-02 06:26:46 +00:00
|
|
|
|
</section>
|
2021-02-27 10:53:20 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
|
<script lang="ts" setup>
|
2023-01-22 17:11:28 +00:00
|
|
|
|
import { ref, computed, Ref } from 'vue';
|
2023-12-02 06:26:46 +00:00
|
|
|
|
import { i18n } from '../i18n.js';
|
2023-12-23 01:09:23 +00:00
|
|
|
|
import { CustomEmojiFolderTree, getEmojiName } from '@/scripts/emojilist.js';
|
2023-12-02 06:26:46 +00:00
|
|
|
|
import { customEmojis } from '@/custom-emojis.js';
|
|
|
|
|
import MkEmojiPickerSection from '@/components/MkEmojiPicker.section.vue';
|
2021-02-27 10:53:20 +00:00
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
|
const props = defineProps<{
|
2023-01-22 17:11:28 +00:00
|
|
|
|
emojis: string[] | Ref<string[]>;
|
2022-01-18 14:06:16 +00:00
|
|
|
|
initialShown?: boolean;
|
2023-12-02 06:26:46 +00:00
|
|
|
|
hasChildSection?: boolean;
|
|
|
|
|
customEmojiTree?: CustomEmojiFolderTree[];
|
2022-01-18 14:06:16 +00:00
|
|
|
|
}>();
|
2021-02-27 10:53:20 +00:00
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
|
const emit = defineEmits<{
|
2022-05-07 08:00:05 +00:00
|
|
|
|
(ev: 'chosen', v: string, event: MouseEvent): void;
|
2022-01-18 14:06:16 +00:00
|
|
|
|
}>();
|
2021-02-27 10:53:20 +00:00
|
|
|
|
|
2023-01-22 17:11:28 +00:00
|
|
|
|
const emojis = computed(() => Array.isArray(props.emojis) ? props.emojis : props.emojis.value);
|
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
|
const shown = ref(!!props.initialShown);
|
2023-03-10 05:15:49 +00: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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-02 06:26:46 +00:00
|
|
|
|
function nestedChosen(emoji: any, ev?: MouseEvent) {
|
|
|
|
|
emit('chosen', emoji, ev);
|
|
|
|
|
}
|
2021-02-27 10:53:20 +00:00
|
|
|
|
</script>
|