2022-07-16 07:14:16 +03:00
|
|
|
<template>
|
2022-12-29 03:14:44 +02:00
|
|
|
<img v-if="isCustom" class="mk-emoji custom" :class="{ normal, noStyle }" :src="url" :alt="alt" :title="alt" decoding="async"/>
|
2022-12-25 09:03:21 +02:00
|
|
|
<img v-else-if="char && !useOsNativeEmojis" class="mk-emoji" :src="url" :alt="alt" decoding="async" @pointerenter="computeTitle"/>
|
2022-12-25 08:52:52 +02:00
|
|
|
<span v-else-if="char && useOsNativeEmojis" :alt="alt" @pointerenter="computeTitle">{{ char }}</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';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
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;
|
|
|
|
normal?: boolean;
|
|
|
|
noStyle?: boolean;
|
|
|
|
isReaction?: boolean;
|
|
|
|
}>();
|
2018-11-05 12:20:35 +02:00
|
|
|
|
2022-12-26 09:04:56 +02:00
|
|
|
const char2path = defaultStore.state.emojiStyle === 'twemoji' ? char2twemojiFilePath : char2fluentEmojiFilePath;
|
|
|
|
|
2022-07-16 07:14:16 +03:00
|
|
|
const isCustom = computed(() => props.emoji.startsWith(':'));
|
2022-12-29 03:14:44 +02:00
|
|
|
const customEmojiName = props.emoji.substr(1, props.emoji.length - 2);
|
2022-12-25 08:52:52 +02:00
|
|
|
const char = computed(() => isCustom.value ? undefined : props.emoji);
|
2022-12-26 09:04:56 +02:00
|
|
|
const useOsNativeEmojis = computed(() => defaultStore.state.emojiStyle === 'native' && !props.isReaction);
|
2022-07-16 07:14:16 +03:00
|
|
|
const url = computed(() => {
|
|
|
|
if (char.value) {
|
2022-12-26 09:04:56 +02:00
|
|
|
return char2path(char.value);
|
2022-07-16 07:14:16 +03:00
|
|
|
} else {
|
2022-12-29 03:14:44 +02:00
|
|
|
const rawUrl = '/emoji/' + customEmojiName + '.webp';
|
2022-07-16 07:14:16 +03:00
|
|
|
return defaultStore.state.disableShowingAnimatedImages
|
2022-12-25 08:52:52 +02:00
|
|
|
? getStaticImageUrl(rawUrl)
|
|
|
|
: rawUrl;
|
2022-07-16 07:14:16 +03:00
|
|
|
}
|
2018-11-05 04:19:40 +02:00
|
|
|
});
|
2022-12-29 03:14:44 +02:00
|
|
|
const alt = computed(() => isCustom.value ? `:${customEmojiName}:` : char.value);
|
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 {
|
2022-12-29 03:14:44 +02:00
|
|
|
const title = isCustom.value
|
|
|
|
? `:${customEmojiName}:`
|
2022-12-25 08:52:52 +02:00
|
|
|
: (getEmojiName(char.value as string) ?? char.value as string);
|
|
|
|
(event.target as HTMLElement).title = title;
|
|
|
|
}
|
2018-11-05 04:19:40 +02:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 21:37:25 +02:00
|
|
|
.mk-emoji {
|
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2018-11-05 12:20:35 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
&.custom {
|
|
|
|
height: 2.5em;
|
|
|
|
vertical-align: middle;
|
|
|
|
transition: transform 0.2s ease;
|
2018-11-05 14:04:19 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
&:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
2018-11-05 12:20:35 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
&.normal {
|
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2018-12-06 03:02:04 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
&:hover {
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-06 03:02:04 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
&.noStyle {
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 04:19:40 +02:00
|
|
|
</style>
|