2022-07-16 07:14:16 +03:00
|
|
|
<template>
|
2020-12-28 10:00:31 +02:00
|
|
|
<img v-if="customEmoji" 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';
|
2022-07-16 07:14:16 +03:00
|
|
|
import { CustomEmoji } from 'misskey-js/built/entities';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
2022-06-19 18:33:46 +03:00
|
|
|
import { char2filePath } from '@/scripts/twemoji-base';
|
2021-12-05 09:57:49 +02:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { instance } from '@/instance';
|
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;
|
|
|
|
customEmojis?: CustomEmoji[];
|
|
|
|
isReaction?: boolean;
|
|
|
|
}>();
|
2018-11-05 12:20:35 +02:00
|
|
|
|
2022-07-16 07:14:16 +03:00
|
|
|
const isCustom = computed(() => props.emoji.startsWith(':'));
|
2022-12-25 08:52:52 +02:00
|
|
|
const char = computed(() => isCustom.value ? undefined : props.emoji);
|
2022-07-16 07:14:16 +03:00
|
|
|
const useOsNativeEmojis = computed(() => defaultStore.state.useOsNativeEmojis && !props.isReaction);
|
|
|
|
const ce = computed(() => props.customEmojis ?? instance.emojis ?? []);
|
2022-12-25 08:52:52 +02:00
|
|
|
const customEmoji = computed(() => isCustom.value ? ce.value.find(x => x.name === props.emoji.substr(1, props.emoji.length - 2)) : undefined);
|
2022-07-16 07:14:16 +03:00
|
|
|
const url = computed(() => {
|
|
|
|
if (char.value) {
|
|
|
|
return char2filePath(char.value);
|
|
|
|
} else {
|
2022-12-25 08:52:52 +02:00
|
|
|
const rawUrl = (customEmoji.value as CustomEmoji).url;
|
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-07-16 07:14:16 +03:00
|
|
|
const alt = computed(() => customEmoji.value ? `:${customEmoji.value.name}:` : 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 {
|
|
|
|
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 04:19:40 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.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>
|