2018-02-07 10:34:43 +01:00
|
|
|
<template>
|
2020-02-21 22:43:46 +01:00
|
|
|
<div class="tdflqwzn" :class="{ isMe }">
|
2021-11-19 11:36:12 +01: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 10:34:43 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:55:19 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2022-12-12 04:24:12 +01:00
|
|
|
import * as misskey from 'calckey-js';
|
2022-01-12 18:55:19 +01:00
|
|
|
import { $i } from '@/account';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XReaction from '@/components/MkReactionsViewer.reaction.vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2022-01-12 18:55:19 +01: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 10:41:48 +01:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
2020-02-21 22:43:46 +01:00
|
|
|
.tdflqwzn {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin: 4px -2px 0 -2px;
|
2023-01-10 03:53:39 +01:00
|
|
|
width: 100%;
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-02-07 10:41:48 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
&.isMe {
|
|
|
|
> span {
|
|
|
|
cursor: default !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-07 10:41:48 +01:00
|
|
|
</style>
|