2018-11-05 03:19:40 +01:00
|
|
|
<template>
|
2018-12-06 02:02:04 +01:00
|
|
|
<img v-if="customEmoji" class="fvgwvorwhxigeolkkrcderjzcawqrscl custom" :class="{ normal: normal }" :src="url" :alt="alt" :title="alt"/>
|
2018-11-05 11:20:35 +01:00
|
|
|
<img v-else-if="char && !useOsDefaultEmojis" class="fvgwvorwhxigeolkkrcderjzcawqrscl" :src="url" :alt="alt" :title="alt"/>
|
|
|
|
<span v-else-if="char && useOsDefaultEmojis">{{ char }}</span>
|
|
|
|
<span v-else>:{{ name }}:</span>
|
2018-11-05 03:19:40 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-11 20:09:02 +01:00
|
|
|
// スクリプトサイズがデカい
|
|
|
|
//import { lib } from 'emojilib';
|
2019-02-04 19:51:54 +01:00
|
|
|
import { getStaticImageUrl } from '../../../common/scripts/get-static-image-url';
|
2019-03-18 14:02:45 +01:00
|
|
|
import { twemojiBase } from '../../../../../misc/twemoji-base';
|
2018-11-05 08:19:10 +01:00
|
|
|
|
2018-11-05 03:19:40 +01:00
|
|
|
export default Vue.extend({
|
2018-11-05 05:23:26 +01:00
|
|
|
props: {
|
2018-11-05 11:20:35 +01:00
|
|
|
name: {
|
2018-11-05 05:23:26 +01:00
|
|
|
type: String,
|
2018-11-05 07:15:30 +01:00
|
|
|
required: false
|
|
|
|
},
|
2018-11-05 11:20:35 +01:00
|
|
|
emoji: {
|
2018-11-05 07:15:30 +01:00
|
|
|
type: String,
|
|
|
|
required: false
|
2018-11-05 05:23:26 +01:00
|
|
|
},
|
2018-12-06 02:02:04 +01:00
|
|
|
normal: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2018-11-05 05:23:26 +01:00
|
|
|
customEmojis: {
|
2018-11-05 11:20:35 +01:00
|
|
|
required: false,
|
2018-11-12 16:12:55 +01:00
|
|
|
default: () => []
|
2019-03-17 16:03:57 +01:00
|
|
|
},
|
|
|
|
isReaction: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
2018-11-05 05:23:26 +01:00
|
|
|
},
|
2018-11-05 11:20:35 +01:00
|
|
|
|
2018-11-05 03:19:40 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
url: null,
|
2018-11-05 11:20:35 +01:00
|
|
|
char: null,
|
|
|
|
customEmoji: null
|
2018-11-05 03:19:40 +01:00
|
|
|
}
|
|
|
|
},
|
2018-11-05 11:20:35 +01:00
|
|
|
|
|
|
|
computed: {
|
|
|
|
alt(): string {
|
2018-11-05 11:33:28 +01:00
|
|
|
return this.customEmoji ? `:${this.customEmoji.name}:` : this.char;
|
2018-11-05 11:20:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
useOsDefaultEmojis(): boolean {
|
2019-03-17 16:03:57 +01:00
|
|
|
return this.$store.state.device.useOsDefaultEmojis && !this.isReaction;
|
2018-11-05 11:20:35 +01:00
|
|
|
}
|
2018-11-05 03:19:40 +01:00
|
|
|
},
|
2018-11-05 11:20:35 +01:00
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.name) {
|
|
|
|
const customEmoji = this.customEmojis.find(x => x.name == this.name);
|
|
|
|
if (customEmoji) {
|
|
|
|
this.customEmoji = customEmoji;
|
2019-02-04 20:09:44 +01:00
|
|
|
this.url = this.$store.state.device.disableShowingAnimatedImages
|
2019-02-04 19:51:54 +01:00
|
|
|
? getStaticImageUrl(customEmoji.url)
|
|
|
|
: customEmoji.url;
|
2018-11-05 11:20:35 +01:00
|
|
|
} else {
|
2018-11-11 20:09:02 +01:00
|
|
|
//const emoji = lib[this.name];
|
|
|
|
//if (emoji) {
|
|
|
|
// this.char = emoji.char;
|
|
|
|
//}
|
2018-11-05 03:19:40 +01:00
|
|
|
}
|
2018-11-05 11:20:35 +01:00
|
|
|
} else {
|
|
|
|
this.char = this.emoji;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.char) {
|
2018-12-07 09:21:34 +01:00
|
|
|
let codes = Array.from(this.char).map(x => x.codePointAt(0).toString(16));
|
2018-11-06 06:09:40 +01:00
|
|
|
if (!codes.includes('200d')) codes = codes.filter(x => x != 'fe0f');
|
2018-12-07 09:21:34 +01:00
|
|
|
codes = codes.filter(x => x && x.length);
|
2018-11-06 06:09:40 +01:00
|
|
|
|
2019-03-18 14:02:45 +01:00
|
|
|
this.url = `${twemojiBase}/2/svg/${codes.join('-')}.svg`;
|
2018-11-05 03:19:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-11-05 11:20:35 +01:00
|
|
|
.fvgwvorwhxigeolkkrcderjzcawqrscl
|
2018-11-05 17:48:33 +01:00
|
|
|
height 1.25em
|
|
|
|
vertical-align -0.25em
|
2018-11-05 11:20:35 +01:00
|
|
|
|
|
|
|
&.custom
|
|
|
|
height 2.5em
|
|
|
|
vertical-align middle
|
2018-11-05 13:04:19 +01:00
|
|
|
transition transform 0.2s ease
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
transform scale(1.2)
|
2018-11-05 11:20:35 +01:00
|
|
|
|
2018-12-06 02:02:04 +01:00
|
|
|
&.normal
|
|
|
|
height 1.25em
|
|
|
|
vertical-align -0.25em
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
transform none
|
|
|
|
|
2018-11-05 03:19:40 +01:00
|
|
|
</style>
|