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

85 lines
2.9 KiB
Vue
Raw Normal View History

2022-07-16 04:14:16 +00:00
<template>
<span v-if="isCustom && errored">:{{ customEmojiName }}:</span>
2023-01-22 16:07:17 +00:00
<img v-else-if="isCustom" :class="[$style.root, $style.custom, { [$style.normal]: normal, [$style.noStyle]: noStyle }]" :src="url" :alt="alt" :title="alt" decoding="async" @error="errored = true" @load="errored = false"/>
2023-01-09 20:17:54 +00:00
<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';
import { customEmojis } from '@/custom-emojis';
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(':'));
2023-01-22 16:07:17 +00:00
const customEmojiName = computed(() => props.emoji.substr(1, props.emoji.length - 2).replace('@.', ''));
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);
2023-01-22 16:07:17 +00:00
} else if (props.host == null && !customEmojiName.value.includes('@')) {
const found = customEmojis.value.find(x => x.name === customEmojiName.value);
return found ? defaultStore.state.disableShowingAnimatedImages ? getStaticImageUrl(found.url) : found.url : null;
2022-07-16 04:14:16 +00:00
} else {
2023-01-22 16:07:17 +00:00
const rawUrl = props.host ? `/emoji/${customEmojiName.value}@${props.host}.webp` : `/emoji/${customEmojiName.value}.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
});
2023-01-22 16:07:17 +00:00
const alt = computed(() => isCustom.value ? `:${customEmojiName.value}:` : char.value);
let errored = $ref(isCustom.value && url.value == null);
// 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
2023-01-22 16:07:17 +00:00
? `:${customEmojiName.value}:`
: (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>