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>
|
|
|
|
|
2022-01-12 18:55:19 +01:00
|
|
|
<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";
|
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 {
|
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
|
|
|
|
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>
|