2018-02-07 10:34:43 +01:00
|
|
|
<template>
|
2018-12-27 14:54:50 +01:00
|
|
|
<div class="mk-reactions-viewer" :class="{ isMe }">
|
2019-08-28 22:15:14 +02:00
|
|
|
<x-reaction v-for="(count, reaction) in note.reactions" :reaction="reaction" :count="count" :is-initial="initialReactions.has(reaction)" :note="note" :key="reaction"/>
|
2018-02-07 10:34:43 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-02-06 18:05:49 +01:00
|
|
|
import XReaction from './reactions-viewer.reaction.vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
export default Vue.extend({
|
2019-02-06 18:05:49 +01:00
|
|
|
components: {
|
|
|
|
XReaction
|
|
|
|
},
|
2019-08-28 22:11:26 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
initialReactions: new Set(Object.keys(this.note.reactions))
|
|
|
|
};
|
|
|
|
},
|
2018-12-27 14:54:50 +01:00
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
2019-02-06 18:05:49 +01:00
|
|
|
},
|
2018-12-27 14:54:50 +01:00
|
|
|
},
|
2018-02-16 07:38:12 +01:00
|
|
|
computed: {
|
2018-12-27 14:54:50 +01:00
|
|
|
isMe(): boolean {
|
2019-02-06 18:05:49 +01:00
|
|
|
return this.$store.getters.isSignedIn && this.$store.state.i.id === this.note.userId;
|
2018-12-16 19:29:57 +01:00
|
|
|
},
|
|
|
|
},
|
2018-02-16 07:38:12 +01:00
|
|
|
});
|
2018-02-07 10:41:48 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 15:59:56 +02:00
|
|
|
.mk-reactions-viewer
|
2019-02-06 14:57:08 +01:00
|
|
|
margin: 4px -2px
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-02-16 07:38:12 +01:00
|
|
|
&:empty
|
|
|
|
display none
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2018-12-27 14:54:50 +01:00
|
|
|
&.isMe
|
|
|
|
> span
|
|
|
|
cursor default !important
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background var(--reactionViewerButtonBg) !important
|
2018-02-07 10:41:48 +01:00
|
|
|
</style>
|