2018-11-05 11:19:40 +09:00
|
|
|
<template>
|
2020-01-30 04:37:25 +09:00
|
|
|
<img v-if="customEmoji" class="mk-emoji custom" :class="{ normal, noStyle }" :src="url" :alt="alt" :title="alt"/>
|
2020-02-13 03:11:37 +09:00
|
|
|
<img v-else-if="char && !useOsNativeEmojis" class="mk-emoji" :src="url" :alt="alt" :title="alt"/>
|
|
|
|
<span v-else-if="char && useOsNativeEmojis">{{ char }}</span>
|
2020-11-08 12:08:07 +09:00
|
|
|
<span v-else>{{ emoji }}</span>
|
2018-11-05 11:19:40 +09:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 20:12:00 +09:00
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
2020-12-11 21:43:28 +09:00
|
|
|
import { twemojiSvgBase } from '@/../misc/twemoji-base';
|
2018-11-05 16:19:10 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
export default defineComponent({
|
2018-11-05 13:23:26 +09:00
|
|
|
props: {
|
2018-11-05 19:20:35 +09:00
|
|
|
emoji: {
|
2018-11-05 15:15:30 +09:00
|
|
|
type: String,
|
2020-11-08 12:08:07 +09:00
|
|
|
required: true
|
2018-11-05 13:23:26 +09:00
|
|
|
},
|
2018-12-06 10:02:04 +09:00
|
|
|
normal: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2020-01-30 04:37:25 +09:00
|
|
|
noStyle: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2018-11-05 13:23:26 +09:00
|
|
|
customEmojis: {
|
2018-11-05 19:20:35 +09:00
|
|
|
required: false,
|
2018-11-13 00:12:55 +09:00
|
|
|
default: () => []
|
2019-03-18 00:03:57 +09:00
|
|
|
},
|
|
|
|
isReaction: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
2018-11-05 13:23:26 +09:00
|
|
|
},
|
2018-11-05 19:20:35 +09:00
|
|
|
|
2018-11-05 11:19:40 +09:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
url: null,
|
2018-11-05 19:20:35 +09:00
|
|
|
char: null,
|
|
|
|
customEmoji: null
|
2018-11-05 11:19:40 +09:00
|
|
|
}
|
|
|
|
},
|
2018-11-05 19:20:35 +09:00
|
|
|
|
|
|
|
computed: {
|
2020-11-08 12:08:07 +09:00
|
|
|
isCustom(): boolean {
|
|
|
|
return this.emoji.startsWith(':');
|
|
|
|
},
|
|
|
|
|
2018-11-05 19:20:35 +09:00
|
|
|
alt(): string {
|
2018-11-05 19:33:28 +09:00
|
|
|
return this.customEmoji ? `:${this.customEmoji.name}:` : this.char;
|
2018-11-05 19:20:35 +09:00
|
|
|
},
|
|
|
|
|
2020-02-13 03:11:37 +09:00
|
|
|
useOsNativeEmojis(): boolean {
|
|
|
|
return this.$store.state.device.useOsNativeEmojis && !this.isReaction;
|
2020-02-10 23:17:42 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
ce() {
|
|
|
|
let ce = [];
|
|
|
|
if (this.customEmojis) ce = ce.concat(this.customEmojis);
|
|
|
|
if (this.$store.state.instance.meta && this.$store.state.instance.meta.emojis) ce = ce.concat(this.$store.state.instance.meta.emojis);
|
|
|
|
return ce;
|
2018-11-05 19:20:35 +09:00
|
|
|
}
|
2018-11-05 11:19:40 +09:00
|
|
|
},
|
2018-11-05 19:20:35 +09:00
|
|
|
|
2019-07-05 17:58:54 +09:00
|
|
|
watch: {
|
2020-02-10 23:17:42 +09:00
|
|
|
ce: {
|
|
|
|
handler() {
|
2020-11-08 12:08:07 +09:00
|
|
|
if (this.isCustom) {
|
|
|
|
const customEmoji = this.ce.find(x => x.name === this.emoji.substr(1, this.emoji.length - 2));
|
2020-02-10 23:17:42 +09:00
|
|
|
if (customEmoji) {
|
|
|
|
this.customEmoji = customEmoji;
|
|
|
|
this.url = this.$store.state.device.disableShowingAnimatedImages
|
|
|
|
? getStaticImageUrl(customEmoji.url)
|
|
|
|
: customEmoji.url;
|
|
|
|
}
|
2019-07-05 17:58:54 +09:00
|
|
|
}
|
2020-02-10 23:17:42 +09:00
|
|
|
},
|
|
|
|
immediate: true
|
2019-07-05 17:58:54 +09:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-11-05 19:20:35 +09:00
|
|
|
created() {
|
2020-11-08 12:08:07 +09:00
|
|
|
if (!this.isCustom) {
|
2018-11-05 19:20:35 +09:00
|
|
|
this.char = this.emoji;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.char) {
|
2018-12-07 17:21:34 +09:00
|
|
|
let codes = Array.from(this.char).map(x => x.codePointAt(0).toString(16));
|
2018-11-06 14:09:40 +09:00
|
|
|
if (!codes.includes('200d')) codes = codes.filter(x => x != 'fe0f');
|
2018-12-07 17:21:34 +09:00
|
|
|
codes = codes.filter(x => x && x.length);
|
2018-11-06 14:09:40 +09:00
|
|
|
|
2019-09-21 21:31:38 +09:00
|
|
|
this.url = `${twemojiSvgBase}/${codes.join('-')}.svg`;
|
2018-11-05 11:19:40 +09:00
|
|
|
}
|
2019-07-05 17:58:54 +09:00
|
|
|
},
|
2018-11-05 11:19:40 +09:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-emoji {
|
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2018-11-05 19:20:35 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
&.custom {
|
|
|
|
height: 2.5em;
|
|
|
|
vertical-align: middle;
|
|
|
|
transition: transform 0.2s ease;
|
2018-11-05 21:04:19 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
&:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
2018-11-05 19:20:35 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
&.normal {
|
|
|
|
height: 1.25em;
|
|
|
|
vertical-align: -0.25em;
|
2018-12-06 10:02:04 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
&:hover {
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-06 10:02:04 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
&.noStyle {
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 11:19:40 +09:00
|
|
|
</style>
|