mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 19:43:09 +02:00
decde50c86
* enhance(client): show Unicode emoji tooltip with its name * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: tamaina <tamaina@hotmail.co.jp> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
78 lines
2.3 KiB
Vue
78 lines
2.3 KiB
Vue
<template>
|
|
<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" decoding="async" @pointerenter="computeTitle"/>
|
|
<span v-else-if="char && useOsNativeEmojis" :alt="alt" @pointerenter="computeTitle">{{ char }}</span>
|
|
<span v-else>{{ emoji }}</span>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { CustomEmoji } from 'misskey-js/built/entities';
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
|
import { char2filePath } from '@/scripts/twemoji-base';
|
|
import { defaultStore } from '@/store';
|
|
import { instance } from '@/instance';
|
|
import { getEmojiName } from '@/scripts/emojilist';
|
|
|
|
const props = defineProps<{
|
|
emoji: string;
|
|
normal?: boolean;
|
|
noStyle?: boolean;
|
|
customEmojis?: CustomEmoji[];
|
|
isReaction?: boolean;
|
|
}>();
|
|
|
|
const isCustom = computed(() => props.emoji.startsWith(':'));
|
|
const char = computed(() => isCustom.value ? undefined : props.emoji);
|
|
const useOsNativeEmojis = computed(() => defaultStore.state.useOsNativeEmojis && !props.isReaction);
|
|
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);
|
|
const url = computed(() => {
|
|
if (char.value) {
|
|
return char2filePath(char.value);
|
|
} else {
|
|
const rawUrl = (customEmoji.value as CustomEmoji).url;
|
|
return defaultStore.state.disableShowingAnimatedImages
|
|
? getStaticImageUrl(rawUrl)
|
|
: rawUrl;
|
|
}
|
|
});
|
|
const alt = computed(() => customEmoji.value ? `:${customEmoji.value.name}:` : char.value);
|
|
|
|
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;
|
|
}
|
|
</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;
|
|
}
|
|
}
|
|
</style>
|