egirlskey/src/client/app/common/views/components/reactions-viewer.vue

65 lines
2.4 KiB
Vue
Raw Normal View History

2018-02-07 09:34:43 +00:00
<template>
2018-02-16 06:38:12 +00:00
<div class="mk-reactions-viewer">
2018-02-07 09:34:43 +00:00
<template v-if="reactions">
<span :class="{notReacted}" @click="react('like')" v-if="reactions.like"><mk-reaction-icon reaction="like"/><span>{{ reactions.like }}</span></span>
<span :class="{notReacted}" @click="react('love')" v-if="reactions.love"><mk-reaction-icon reaction="love"/><span>{{ reactions.love }}</span></span>
<span :class="{notReacted}" @click="react('laugh')" v-if="reactions.laugh"><mk-reaction-icon reaction="laugh"/><span>{{ reactions.laugh }}</span></span>
<span :class="{notReacted}" @click="react('hmm')" v-if="reactions.hmm"><mk-reaction-icon reaction="hmm"/><span>{{ reactions.hmm }}</span></span>
<span :class="{notReacted}" @click="react('surprise')" v-if="reactions.surprise"><mk-reaction-icon reaction="surprise"/><span>{{ reactions.surprise }}</span></span>
<span :class="{notReacted}" @click="react('congrats')" v-if="reactions.congrats"><mk-reaction-icon reaction="congrats"/><span>{{ reactions.congrats }}</span></span>
<span :class="{notReacted}" @click="react('angry')" v-if="reactions.angry"><mk-reaction-icon reaction="angry"/><span>{{ reactions.angry }}</span></span>
<span :class="{notReacted}" @click="react('confused')" v-if="reactions.confused"><mk-reaction-icon reaction="confused"/><span>{{ reactions.confused }}</span></span>
<span :class="{notReacted}" @click="react('rip')" v-if="reactions.rip"><mk-reaction-icon reaction="rip"/><span>{{ reactions.rip }}</span></span>
<span :class="{notReacted}" @click="react('pudding')" v-if="reactions.pudding"><mk-reaction-icon reaction="pudding"/><span>{{ reactions.pudding }}</span></span>
2018-02-07 09:34:43 +00:00
</template>
</div>
</template>
2018-02-16 06:38:12 +00:00
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
2018-04-07 17:30:37 +00:00
props: ['note'],
2018-02-16 06:38:12 +00:00
computed: {
reactions(): number {
2018-04-07 17:30:37 +00:00
return this.note.reactionCounts;
},
notReacted(): boolean {
return this.note.myReaction == null;
}
},
methods: {
react(reaction: string) {
(this as any).api('notes/reactions/create', {
noteId: this.note.id,
reaction: reaction
});
2018-02-07 09:41:48 +00:00
}
2018-02-16 06:38:12 +00:00
}
});
2018-02-07 09:41:48 +00:00
</script>
<style lang="stylus" scoped>
2018-09-27 13:59:56 +00:00
.mk-reactions-viewer
border-top dashed 1px var(--reactionViewerBorder)
border-bottom dashed 1px var(--reactionViewerBorder)
2018-02-16 06:38:12 +00:00
margin 4px 0
2018-02-07 09:41:48 +00:00
2018-02-16 06:38:12 +00:00
&:empty
display none
2018-02-07 09:41:48 +00:00
2018-02-16 06:38:12 +00:00
> span
margin-right 8px
2018-02-07 09:41:48 +00:00
&.notReacted
cursor pointer
2018-02-16 18:01:00 +00:00
> .mk-reaction-icon
2018-02-16 06:38:12 +00:00
font-size 1.4em
2017-03-19 19:24:19 +00:00
2018-02-16 06:38:12 +00:00
> span
margin-left 4px
font-size 1.2em
2018-09-27 13:59:56 +00:00
color var(--text)
2017-03-19 20:54:41 +00:00
2018-02-07 09:41:48 +00:00
</style>