2018-02-07 03:34:43 -06:00
|
|
|
<template>
|
2020-02-21 15:43:46 -06:00
|
|
|
<div class="tdflqwzn" :class="{ isMe }">
|
2021-11-19 04:36:12 -06:00
|
|
|
<XReaction v-for="(count, reaction) in note.reactions" :key="reaction" :reaction="reaction" :count="count" :is-initial="initialReactions.has(reaction)" :note="note"/>
|
2018-02-07 03:34:43 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 11:55:19 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
|
|
|
import { $i } from '@/account';
|
2019-02-06 11:05:49 -06:00
|
|
|
import XReaction from './reactions-viewer.reaction.vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
|
2022-01-12 11:55:19 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const initialReactions = new Set(Object.keys(props.note.reactions));
|
|
|
|
|
|
|
|
const isMe = computed(() => $i && $i.id === props.note.userId);
|
2018-02-07 03:41:48 -06:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<style lang="scss" scoped>
|
2020-02-21 15:43:46 -06:00
|
|
|
.tdflqwzn {
|
2020-01-29 13:37:25 -06:00
|
|
|
margin: 4px -2px 0 -2px;
|
2018-02-07 03:41:48 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-02-07 03:41:48 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
&.isMe {
|
|
|
|
> span {
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-07 03:41:48 -06:00
|
|
|
</style>
|