summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkReactionsViewer.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/components/MkReactionsViewer.vue')
-rw-r--r--packages/frontend/src/components/MkReactionsViewer.vue15
1 files changed, 14 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkReactionsViewer.vue b/packages/frontend/src/components/MkReactionsViewer.vue
index a88311efa1..4af9d6baa2 100644
--- a/packages/frontend/src/components/MkReactionsViewer.vue
+++ b/packages/frontend/src/components/MkReactionsViewer.vue
@@ -1,6 +1,8 @@
<template>
<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"/>
+ <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>
</template>
@@ -20,6 +22,17 @@ const isMe = computed(() => $i && $i.id === props.note.userId);
</script>
<style lang="scss" scoped>
+.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;
+}
+.x-enter-from, .x-leave-to {
+ opacity: 0;
+ transform: scale(0.7);
+}
+.x-leave-active {
+ position: absolute;
+}
+
.tdflqwzn {
margin: 4px -2px 0 -2px;