2018-11-04 20:19:40 -06:00
|
|
|
<template>
|
|
|
|
<img class="mk-emoji" :src="url" :alt="alt || name" :title="name">
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { lib } from 'emojilib';
|
|
|
|
export default Vue.extend({
|
2018-11-04 22:23:26 -06:00
|
|
|
props: {
|
|
|
|
emoji: {
|
|
|
|
type: String,
|
2018-11-05 00:15:30 -06:00
|
|
|
required: false
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
2018-11-04 22:23:26 -06:00
|
|
|
},
|
|
|
|
customEmojis: {
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
2018-11-04 20:19:40 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
url: null,
|
|
|
|
alt: null,
|
|
|
|
name: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$nextTick(() => this.exec());
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
exec() {
|
2018-11-05 00:15:30 -06:00
|
|
|
const { emoji, raw, customEmojis } = this;
|
|
|
|
this.name = emoji || raw;
|
|
|
|
this.url = !raw && customEmojis && customEmojis.length ? customEmojis.find(e => e.name === emoji || e.aliases && e.aliases.includes(emoji)).url : null;
|
2018-11-04 20:19:40 -06:00
|
|
|
if (!this.url) {
|
2018-11-05 00:15:30 -06:00
|
|
|
const char = raw || lib[emoji] && lib[emoji].char;
|
2018-11-04 20:19:40 -06:00
|
|
|
if (char) {
|
|
|
|
this.url = `https://twemoji.maxcdn.com/2/svg/${char.codePointAt(0).toString(16)}.svg`;
|
|
|
|
this.alt = char;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-emoji
|
|
|
|
height 2.5em
|
|
|
|
vertical-align middle
|
|
|
|
</style>
|