iceshrimp-legacy/src/client/app/common/views/components/reaction-icon.vue

54 lines
1.2 KiB
Vue
Raw Normal View History

2018-02-07 11:00:55 +01:00
<template>
<mk-emoji :emoji="str.startsWith(':') ? null : str" :name="str.startsWith(':') ? str.substr(1, str.length - 2) : null" :is-reaction="true" :custom-emojis="customEmojis" :normal="true"/>
2018-02-07 11:00:55 +01:00
</template>
2018-02-13 04:32:00 +01:00
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-13 04:32:00 +01:00
export default Vue.extend({
i18n: i18n(),
props: {
reaction: {
type: String,
required: true
},
},
data() {
return {
customEmojis: []
};
},
created() {
this.$root.getMeta().then(meta => {
if (meta && meta.emojis) this.customEmojis = meta.emojis;
});
},
computed: {
str(): any {
switch (this.reaction) {
case 'like': return '👍';
case 'love': return '❤';
case 'laugh': return '😆';
case 'hmm': return '🤔';
case 'surprise': return '😮';
case 'congrats': return '🎉';
case 'angry': return '💢';
case 'confused': return '😥';
case 'rip': return '😇';
case 'pudding': return (this.$store.getters.isSignedIn && this.$store.state.settings.iLikeSushi) ? '🍣' : '🍮';
case 'star': return '⭐';
default: return this.reaction;
}
},
},
2018-02-13 04:32:00 +01:00
});
</script>
2018-02-07 11:00:55 +01:00
<style lang="stylus" scoped>
2018-02-13 04:32:00 +01:00
.mk-reaction-icon
2018-02-07 11:00:55 +01:00
img
vertical-align middle
width 1em
height 1em
</style>