2018-11-05 03:19:40 +01:00
|
|
|
<template>
|
2018-11-05 11:20:35 +01:00
|
|
|
<img v-if="customEmoji" class="fvgwvorwhxigeolkkrcderjzcawqrscl custom" :src="url" :alt="alt" :title="alt"/>
|
|
|
|
<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';
|
|
|
|
import { lib } from 'emojilib';
|
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
|
|
|
},
|
|
|
|
customEmojis: {
|
2018-11-05 11:20:35 +01:00
|
|
|
required: false,
|
|
|
|
default: []
|
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 {
|
|
|
|
return this.$store.state.device.useOsDefaultEmojis;
|
|
|
|
}
|
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;
|
|
|
|
this.url = customEmoji.url;
|
|
|
|
} else {
|
|
|
|
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-11-06 06:09:40 +01:00
|
|
|
let codes = [...this.char].map(x => x.codePointAt(0).toString(16));
|
|
|
|
if (!codes.includes('200d')) codes = codes.filter(x => x != 'fe0f');
|
|
|
|
|
|
|
|
this.url = `https://twemoji.maxcdn.com/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-11-05 03:19:40 +01:00
|
|
|
</style>
|