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

82 lines
2.6 KiB
Vue
Raw Normal View History

2022-07-16 04:14:16 +00:00
<template>
2020-12-28 08:00:31 +00:00
<img v-if="customEmoji" class="mk-emoji custom" :class="{ normal, noStyle }" :src="url" :alt="alt" :title="alt" decoding="async"/>
<img v-else-if="char && !useOsNativeEmojis" class="mk-emoji" :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';
2022-07-16 04:14:16 +00:00
import { CustomEmoji } from 'misskey-js/built/entities';
2021-11-11 17:02:25 +00:00
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
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 { instance } from '@/instance';
import { getEmojiName } from '@/scripts/emojilist';
2022-07-16 04:14:16 +00:00
const props = defineProps<{
emoji: string;
normal?: boolean;
noStyle?: boolean;
customEmojis?: CustomEmoji[];
isReaction?: boolean;
}>();
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 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 ce = computed(() => props.customEmojis ?? instance.emojis ?? []);
const customEmoji = computed(() => isCustom.value ? ce.value.find(x => x.name === props.emoji.substr(1, props.emoji.length - 2)) : undefined);
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 {
const rawUrl = (customEmoji.value as CustomEmoji).url;
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
});
2022-07-16 04:14:16 +00:00
const alt = computed(() => customEmoji.value ? `:${customEmoji.value.name}:` : 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 = customEmoji.value
? `:${customEmoji.value.name}:`
: (getEmojiName(char.value as string) ?? char.value as string);
(event.target as HTMLElement).title = title;
}
2018-11-05 02:19:40 +00:00
</script>
<style lang="scss" scoped>
.mk-emoji {
height: 1.25em;
vertical-align: -0.25em;
&.custom {
height: 2.5em;
vertical-align: middle;
transition: transform 0.2s ease;
&:hover {
transform: scale(1.2);
}
&.normal {
height: 1.25em;
vertical-align: -0.25em;
&:hover {
transform: none;
}
}
}
&.noStyle {
height: auto !important;
}
}
2018-11-05 02:19:40 +00:00
</style>