mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:23:08 +02:00
6f33be6c75
* enhance(client): MkNoteのリアクションの表示数は16に制限・リアクションの横の?ボタンでリアクション詳細 * info-circleにする * - Layout Shiftが起こらないように - 自分のリアクションは必ずつける * https://github.com/misskey-dev/misskey/pull/9841#issuecomment-1423786235 * remove logger * refactor * refactor Co-authored-by: acid-chicken <root@acid-chicken.com> * Revert "https://github.com/misskey-dev/misskey/pull/9841#issuecomment-1423786235" This reverts commit ec1315b1fb207e0c5b2a5f2f4a00de7379c7a29b. * wip * wip * 🎨 * fix * fix * fix * 🎨 * wip * remove extras from MkNoteDetailed * もっと! * no v-if * dashed --------- Co-authored-by: acid-chicken <root@acid-chicken.com>
88 lines
2.7 KiB
Vue
88 lines
2.7 KiB
Vue
<template>
|
|
<TransitionGroup
|
|
:enter-active-class="$store.state.animation ? $style.transition_x_enterActive : ''"
|
|
:leave-active-class="$store.state.animation ? $style.transition_x_leaveActive : ''"
|
|
:enter-from-class="$store.state.animation ? $style.transition_x_enterFrom : ''"
|
|
:leave-to-class="$store.state.animation ? $style.transition_x_leaveTo : ''"
|
|
:move-class="$store.state.animation ? $style.transition_x_move : ''"
|
|
tag="div" :class="$style.root"
|
|
>
|
|
<XReaction v-for="[reaction, count] in reactions" :key="reaction" :reaction="reaction" :count="count" :is-initial="initialReactions.has(reaction)" :note="note"/>
|
|
<slot v-if="hasMoreReactions" name="more" />
|
|
</TransitionGroup>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import * as misskey from 'misskey-js';
|
|
import XReaction from '@/components/MkReactionsViewer.reaction.vue';
|
|
import { watch } from 'vue';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
note: misskey.entities.Note;
|
|
maxNumber?: number;
|
|
}>(), {
|
|
maxNumber: Infinity,
|
|
});
|
|
|
|
const initialReactions = new Set(Object.keys(props.note.reactions));
|
|
|
|
let reactions = $ref<[string, number][]>([]);
|
|
let hasMoreReactions = $ref(false);
|
|
|
|
if (props.note.myReaction && !Object.keys(reactions).includes(props.note.myReaction)) {
|
|
reactions[props.note.myReaction] = props.note.reactions[props.note.myReaction];
|
|
}
|
|
|
|
watch([() => props.note.reactions, () => props.maxNumber], ([newSource, maxNumber]) => {
|
|
let newReactions: [string, number][] = [];
|
|
hasMoreReactions = Object.keys(newSource).length > maxNumber;
|
|
|
|
for (let i = 0; i < reactions.length; i++) {
|
|
const reaction = reactions[i][0];
|
|
if (reaction in newSource && newSource[reaction] !== 0) {
|
|
reactions[i][1] = newSource[reaction];
|
|
newReactions.push(reactions[i]);
|
|
}
|
|
}
|
|
|
|
const newReactionsNames = newReactions.map(([x]) => x);
|
|
newReactions = [
|
|
...newReactions,
|
|
...Object.entries(newSource)
|
|
.sort(([, a], [, b]) => b - a)
|
|
.filter(([y], i) => i < maxNumber && !newReactionsNames.includes(y)),
|
|
]
|
|
|
|
newReactions = newReactions.slice(0, props.maxNumber);
|
|
|
|
if (props.note.myReaction && !newReactions.map(([x]) => x).includes(props.note.myReaction)) {
|
|
newReactions.push([props.note.myReaction, newSource[props.note.myReaction]]);
|
|
}
|
|
|
|
reactions = newReactions;
|
|
}, { immediate: true, deep: true });
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.transition_x_move,
|
|
.transition_x_enterActive,
|
|
.transition_x_leaveActive {
|
|
transition: opacity 0.2s cubic-bezier(0,.5,.5,1), transform 0.2s cubic-bezier(0,.5,.5,1) !important;
|
|
}
|
|
.transition_x_enterFrom,
|
|
.transition_x_leaveTo {
|
|
opacity: 0;
|
|
transform: scale(0.7);
|
|
}
|
|
.transition_x_leaveActive {
|
|
position: absolute;
|
|
}
|
|
|
|
.root {
|
|
margin: 4px -2px 0 -2px;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|