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