From 4767804bcc607d572397eb0ebd83a3675e403106 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Fri, 30 Dec 2022 14:10:00 +0900
Subject: [PATCH] :art:

---
 .../frontend/src/components/MkReactionsViewer.vue  | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/packages/frontend/src/components/MkReactionsViewer.vue b/packages/frontend/src/components/MkReactionsViewer.vue
index 4af9d6baa2..a22f7b6e74 100644
--- a/packages/frontend/src/components/MkReactionsViewer.vue
+++ b/packages/frontend/src/components/MkReactionsViewer.vue
@@ -1,9 +1,11 @@
 <template>
-<div class="tdflqwzn" :class="{ isMe }">
+<Transition :name="$store.state.animation ? 'y' : ''">
+<div v-if="Object.keys(note.reactions).length > 0" class="tdflqwzn" :class="{ isMe }">
 	<TransitionGroup :name="$store.state.animation ? 'x' : ''">
 		<XReaction v-for="(count, reaction) in note.reactions" :key="reaction" :reaction="reaction" :count="count" :is-initial="initialReactions.has(reaction)" :note="note"/>
 	</TransitionGroup>
 </div>
+</Transition>
 </template>
 
 <script lang="ts" setup>
@@ -22,6 +24,16 @@ const isMe = computed(() => $i && $i.id === props.note.userId);
 </script>
 
 <style lang="scss" scoped>
+.y-enter-active, .y-leave-active {
+	overflow: clip;
+	max-height: 36px;
+	transition: opacity 0.2s cubic-bezier(0,.5,.5,1), max-height 0.2s cubic-bezier(0,.5,.5,1) !important;
+}
+.y-enter-from, .y-leave-to {
+	max-height: 0px;
+	opacity: 0;
+}
+
 .x-move, .x-enter-active, .x-leave-active {
 	transition: opacity 0.2s cubic-bezier(0,.5,.5,1), transform 0.2s cubic-bezier(0,.5,.5,1) !important;
 }