Sharkey/src/client/app/common/views/components/emoji.vue

51 lines
1,012 B
Vue
Raw Normal View History

2018-11-05 04:19:40 +02: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({
props: {
emoji: {
type: String,
required: true
},
customEmojis: {
required: false
}
},
2018-11-05 04:19:40 +02:00
data() {
return {
url: null,
alt: null,
name: null
}
},
mounted() {
this.$nextTick(() => this.exec());
},
methods: {
exec() {
const { emoji, customEmojis } = this;
2018-11-05 04:19:40 +02:00
this.name = emoji;
console.log(emoji, customEmojis)
this.url = customEmojis && customEmojis.length ? customEmojis.find(e => e.name === emoji || e.aliases && e.aliases.includes(emoji)).url : null;
2018-11-05 04:19:40 +02:00
if (!this.url) {
const { char } = lib[emoji] || { char: null };
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>