2022-07-15 23:14:16 -05:00
|
|
|
<template>
|
2023-01-26 00:48:12 -06: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-07 21:08:07 -06:00
|
|
|
<span v-else>{{ emoji }}</span>
|
2018-11-04 20:19:40 -06:00
|
|
|
</template>
|
|
|
|
|
2022-07-15 23:14:16 -05:00
|
|
|
<script lang="ts" setup>
|
2022-12-25 00:52:52 -06:00
|
|
|
import { computed } from 'vue';
|
2022-12-26 01:04:56 -06:00
|
|
|
import { char2twemojiFilePath, char2fluentEmojiFilePath } from '@/scripts/emoji-base';
|
2021-12-05 01:57:49 -06:00
|
|
|
import { defaultStore } from '@/store';
|
2022-12-25 00:52:52 -06:00
|
|
|
import { getEmojiName } from '@/scripts/emojilist';
|
2018-11-05 01:19:10 -06:00
|
|
|
|
2022-07-15 23:14:16 -05:00
|
|
|
const props = defineProps<{
|
|
|
|
emoji: string;
|
|
|
|
}>();
|
2018-11-05 04:20:35 -06:00
|
|
|
|
2022-12-26 01:04:56 -06:00
|
|
|
const char2path = defaultStore.state.emojiStyle === 'twemoji' ? char2twemojiFilePath : char2fluentEmojiFilePath;
|
|
|
|
|
2023-01-26 00:48:12 -06:00
|
|
|
const useOsNativeEmojis = computed(() => defaultStore.state.emojiStyle === 'native');
|
2022-07-15 23:14:16 -05:00
|
|
|
const url = computed(() => {
|
2023-01-26 00:48:12 -06:00
|
|
|
return char2path(props.emoji);
|
2018-11-04 20:19:40 -06:00
|
|
|
});
|
2022-12-25 00:52:52 -06:00
|
|
|
|
2022-12-25 01:03:21 -06: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 00:52:52 -06:00
|
|
|
function computeTitle(event: PointerEvent): void {
|
2023-01-26 00:48:12 -06:00
|
|
|
const title = getEmojiName(props.emoji as string) ?? props.emoji as string;
|
2022-12-25 00:52:52 -06:00
|
|
|
(event.target as HTMLElement).title = title;
|
|
|
|
}
|
2018-11-04 20:19:40 -06:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 14:17:54 -06:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 13:37:25 -06:00
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2023-01-09 14:17:54 -06:00
|
|
|
}
|
2018-11-04 20:19:40 -06:00
|
|
|
</style>
|