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

46 lines
870 B
Vue
Raw Normal View History

2018-02-07 10:34:43 +01:00
<template>
2023-04-08 02:01:42 +02:00
<div class="tdflqwzn" :class="{ isMe }">
<XReaction
v-for="(count, reaction) in note.reactions"
:key="reaction"
:reaction="reaction"
:count="count"
:is-initial="initialReactions.has(reaction)"
:note="note"
/>
</div>
2018-02-07 10:34:43 +01:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { computed } from "vue";
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;
2023-04-08 02:01:42 +02:00
margin-top: 0.2em;
2023-01-10 03:53:39 +01:00
width: 100%;
2023-04-08 02:01:42 +02: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>