iceshrimp-legacy/packages/client/src/components/MkReactionsViewer.vue

39 lines
846 B
Vue
Raw Normal View History

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>
<script lang="ts" setup>
import { computed } from 'vue';
2022-12-12 04:24:12 +01:00
import * as misskey from 'calckey-js';
import { $i } from '@/account';
import XReaction from '@/components/MkReactionsViewer.reaction.vue';
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>
<style lang="scss" scoped>
2020-02-21 22:43:46 +01:00
.tdflqwzn {
2023-02-20 19:30:15 +01:00
margin-inline: -2px;
margin-top: .2em;
2023-01-10 03:53:39 +01:00
width: 100%;
2023-02-20 19:30:15 +01:00
&:empty {
display: none;
}
2018-02-07 10:41:48 +01:00
&.isMe {
> span {
cursor: default !important;
}
}
}
2018-02-07 10:41:48 +01:00
</style>