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

96 lines
2.1 KiB
Vue
Raw Normal View History

2022-07-16 06:14:16 +02:00
<template>
2023-04-08 02:01:42 +02:00
<img
v-if="customEmoji"
class="mk-emoji custom"
:class="{ normal, noStyle }"
:src="url"
2024-04-04 09:51:43 +02:00
:alt="alt || undefined"
:title="alt || undefined"
2023-04-08 02:01:42 +02:00
decoding="async"
/>
<img
v-else-if="char && !useOsNativeEmojis"
class="mk-emoji"
:src="url"
2024-04-04 09:51:43 +02:00
:alt="alt || undefined"
:title="alt || undefined"
2023-04-08 02:01:42 +02:00
decoding="async"
/>
<span v-else-if="char && useOsNativeEmojis">{{ char }}</span>
<span v-else>{{ emoji }}</span>
2018-11-05 03:19:40 +01:00
</template>
2022-07-16 06:14:16 +02:00
<script lang="ts" setup>
2023-08-10 22:25:21 +02:00
import { computed } from "vue";
import type { entities } from "firefish-js";
2023-04-08 02:01:42 +02:00
import { getStaticImageUrl } from "@/scripts/get-static-image-url";
import { char2filePath } from "@/scripts/twemoji-base";
import { defaultStore } from "@/store";
import { instance } from "@/instance";
2022-07-16 06:14:16 +02:00
const props = defineProps<{
emoji: string;
normal?: boolean;
noStyle?: boolean;
customEmojis?: entities.CustomEmoji[];
2022-07-16 06:14:16 +02:00
isReaction?: boolean;
}>();
2023-04-08 02:01:42 +02:00
const isCustom = computed(() => props.emoji.startsWith(":"));
const char = computed(() => (isCustom.value ? null : props.emoji));
const useOsNativeEmojis = computed(
2023-07-06 03:28:27 +02:00
() => defaultStore.state.useOsNativeEmojis && !props.isReaction,
2023-04-08 02:01:42 +02:00
);
2022-07-16 06:14:16 +02:00
const ce = computed(() => props.customEmojis ?? instance.emojis ?? []);
2023-04-08 02:01:42 +02:00
const customEmoji = computed(() =>
isCustom.value
? ce.value.find(
2023-07-06 03:28:27 +02:00
(x) => x.name === props.emoji.substr(1, props.emoji.length - 2),
2024-02-11 18:50:57 +01:00
)
2023-07-06 03:28:27 +02:00
: null,
2023-04-08 02:01:42 +02:00
);
2022-07-16 06:14:16 +02:00
const url = computed(() => {
2024-04-04 09:51:43 +02:00
if (!customEmoji.value) return undefined;
2022-07-16 06:14:16 +02:00
if (char.value) {
return char2filePath(char.value);
} else {
return defaultStore.state.disableShowingAnimatedImages
? getStaticImageUrl(customEmoji.value.url)
: customEmoji.value.url;
}
2018-11-05 03:19:40 +01:00
});
2023-04-08 02:01:42 +02:00
const alt = computed(() =>
2023-07-06 03:28:27 +02:00
customEmoji.value ? `:${customEmoji.value.name}:` : char.value,
2023-04-08 02:01:42 +02:00
);
2018-11-05 03:19:40 +01:00
</script>
<style lang="scss" scoped>
.mk-emoji {
height: 1.25em;
vertical-align: -0.25em;
&.custom {
height: 2em;
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 03:19:40 +01:00
</style>