2022-07-16 07:14:16 +03:00
|
|
|
<template>
|
2023-01-26 08:48:12 +02:00
|
|
|
<img v-if="!useOsNativeEmojis" :class="$style.root" :src="url" :alt="props.emoji" decoding="async" @pointerenter="computeTitle"/>
|
|
|
|
<span v-else-if="useOsNativeEmojis" :alt="props.emoji" @pointerenter="computeTitle">{{ props.emoji }}</span>
|
2020-11-08 05:08:07 +02:00
|
|
|
<span v-else>{{ emoji }}</span>
|
2018-11-05 04:19:40 +02:00
|
|
|
</template>
|
|
|
|
|
2022-07-16 07:14:16 +03:00
|
|
|
<script lang="ts" setup>
|
2022-12-25 08:52:52 +02:00
|
|
|
import { computed } from 'vue';
|
2022-12-26 09:04:56 +02:00
|
|
|
import { char2twemojiFilePath, char2fluentEmojiFilePath } from '@/scripts/emoji-base';
|
2021-12-05 09:57:49 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2022-12-25 08:52:52 +02:00
|
|
|
import { getEmojiName } from '@/scripts/emojilist';
|
2018-11-05 09:19:10 +02:00
|
|
|
|
2022-07-16 07:14:16 +03:00
|
|
|
const props = defineProps<{
|
|
|
|
emoji: string;
|
|
|
|
}>();
|
2018-11-05 12:20:35 +02:00
|
|
|
|
2022-12-26 09:04:56 +02:00
|
|
|
const char2path = defaultStore.state.emojiStyle === 'twemoji' ? char2twemojiFilePath : char2fluentEmojiFilePath;
|
|
|
|
|
2023-01-26 08:48:12 +02:00
|
|
|
const useOsNativeEmojis = computed(() => defaultStore.state.emojiStyle === 'native');
|
2022-07-16 07:14:16 +03:00
|
|
|
const url = computed(() => {
|
2023-01-26 08:48:12 +02:00
|
|
|
return char2path(props.emoji);
|
2018-11-05 04:19:40 +02:00
|
|
|
});
|
2022-12-25 08:52:52 +02:00
|
|
|
|
2022-12-25 09:03:21 +02:00
|
|
|
// Searching from an array with 2000 items for every emoji felt like too energy-consuming, so I decided to do it lazily on pointerenter
|
2022-12-25 08:52:52 +02:00
|
|
|
function computeTitle(event: PointerEvent): void {
|
2023-01-26 08:48:12 +02:00
|
|
|
const title = getEmojiName(props.emoji as string) ?? props.emoji as string;
|
2022-12-25 08:52:52 +02:00
|
|
|
(event.target as HTMLElement).title = title;
|
|
|
|
}
|
2018-11-05 04:19:40 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 22:17:54 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 21:37:25 +02:00
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2023-01-09 22:17:54 +02:00
|
|
|
}
|
2018-11-05 04:19:40 +02:00
|
|
|
</style>
|