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

48 lines
931 B
Vue
Raw Normal View History

2018-02-07 10:34:43 +01:00
<template>
<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';
import XReaction from './reactions-viewer.reaction.vue';
2018-02-16 07:38:12 +01:00
export default Vue.extend({
components: {
XReaction
},
data() {
return {
initialReactions: new Set(Object.keys(this.note.reactions))
};
},
props: {
note: {
type: Object,
required: true
},
},
2018-02-16 07:38:12 +01:00
computed: {
isMe(): boolean {
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
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
&.isMe
> span
cursor default !important
&:hover
background var(--reactionViewerButtonBg) !important
2018-02-07 10:41:48 +01:00
</style>