egirlskey/packages/frontend/src/components/global/MkEmoji.vue

79 lines
2.4 KiB
Vue
Raw Normal View History

2022-07-16 04:14:16 +00:00
<template>
2023-01-09 20:17:54 +00:00
<img v-if="isCustom" :class="[$style.root, $style.custom, { [$style.normal]: normal, [$style.noStyle]: noStyle }]" :src="url" :alt="alt" :title="alt" decoding="async"/>
<img v-else-if="char && !useOsNativeEmojis" :class="$style.root" :src="url" :alt="alt" decoding="async" @pointerenter="computeTitle"/>
<span v-else-if="char && useOsNativeEmojis" :alt="alt" @pointerenter="computeTitle">{{ char }}</span>
<span v-else>{{ emoji }}</span>
2018-11-05 02:19:40 +00:00
</template>
2022-07-16 04:14:16 +00:00
<script lang="ts" setup>
import { computed } from 'vue';
import { getStaticImageUrl } from '@/scripts/media-proxy';
2022-12-26 07:04:56 +00:00
import { char2twemojiFilePath, char2fluentEmojiFilePath } from '@/scripts/emoji-base';
2021-12-05 07:57:49 +00:00
import { defaultStore } from '@/store';
import { getEmojiName } from '@/scripts/emojilist';
2022-07-16 04:14:16 +00:00
const props = defineProps<{
emoji: string;
normal?: boolean;
noStyle?: boolean;
isReaction?: boolean;
2022-12-29 23:41:22 +00:00
host?: string | null;
2022-07-16 04:14:16 +00:00
}>();
2022-12-26 07:04:56 +00:00
const char2path = defaultStore.state.emojiStyle === 'twemoji' ? char2twemojiFilePath : char2fluentEmojiFilePath;
2022-07-16 04:14:16 +00:00
const isCustom = computed(() => props.emoji.startsWith(':'));
const customEmojiName = props.emoji.substr(1, props.emoji.length - 2);
const char = computed(() => isCustom.value ? undefined : props.emoji);
2022-12-26 07:04:56 +00:00
const useOsNativeEmojis = computed(() => defaultStore.state.emojiStyle === 'native' && !props.isReaction);
2022-07-16 04:14:16 +00:00
const url = computed(() => {
if (char.value) {
2022-12-26 07:04:56 +00:00
return char2path(char.value);
2022-07-16 04:14:16 +00:00
} else {
2022-12-29 23:41:22 +00:00
const rawUrl = props.host ? `/emoji/${customEmojiName}@${props.host}.webp` : `/emoji/${customEmojiName}.webp`;
2022-07-16 04:14:16 +00:00
return defaultStore.state.disableShowingAnimatedImages
? getStaticImageUrl(rawUrl)
: rawUrl;
2022-07-16 04:14:16 +00:00
}
2018-11-05 02:19:40 +00:00
});
const alt = computed(() => isCustom.value ? `:${customEmojiName}:` : char.value);
// Searching from an array with 2000 items for every emoji felt like too energy-consuming, so I decided to do it lazily on pointerenter
function computeTitle(event: PointerEvent): void {
const title = isCustom.value
? `:${customEmojiName}:`
: (getEmojiName(char.value as string) ?? char.value as string);
(event.target as HTMLElement).title = title;
}
2018-11-05 02:19:40 +00:00
</script>
2023-01-09 20:17:54 +00:00
<style lang="scss" module>
.root {
height: 1.25em;
vertical-align: -0.25em;
2023-01-09 20:17:54 +00:00
}
2023-01-09 20:17:54 +00:00
.custom {
height: 2.5em;
vertical-align: middle;
transition: transform 0.2s ease;
2023-01-09 20:17:54 +00:00
&:hover {
transform: scale(1.2);
}
}
2023-01-09 20:17:54 +00:00
.normal {
height: 1.25em;
vertical-align: -0.25em;
2023-01-09 20:17:54 +00:00
&:hover {
transform: none;
}
2023-01-09 20:17:54 +00:00
}
2023-01-09 20:17:54 +00:00
.noStyle {
height: auto !important;
}
2018-11-05 02:19:40 +00:00
</style>