From b73f88fe54a02653acfdda6eaa2bbafae8231aa6 Mon Sep 17 00:00:00 2001 From: tamaina Date: Fri, 4 Aug 2023 11:01:43 +0000 Subject: [PATCH] :v: --- .../frontend/src/scripts/entity-manager.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/packages/frontend/src/scripts/entity-manager.ts b/packages/frontend/src/scripts/entity-manager.ts index 5fb63cc8c0..25cefe2e4a 100644 --- a/packages/frontend/src/scripts/entity-manager.ts +++ b/packages/frontend/src/scripts/entity-manager.ts @@ -268,13 +268,20 @@ export class NoteManager { const reaction = body.reaction; if (body.emoji && !(body.emoji.name in note.value.reactionEmojis)) { - note.value.reactionEmojis[body.emoji.name] = body.emoji.url; - } + note.value.reactionEmojis = { + ...note.value.reactionEmojis, + [body.emoji.name]: body.emoji.url, + }; + } - // TODO: reactionsプロパティがない場合ってあったっけ? なければ || {} は消せる - const currentCount = (note.value.reactions || {})[reaction] || 0; - - note.value.reactions[reaction] = currentCount + 1; + if (reaction in note.value.reactions) { + note.value.reactions[reaction]++; + } else { + note.value.reactions = { + ...note.value.reactions, + [reaction]: 1, + }; + } if ($i && (body.userId === $i.id)) { note.value.myReaction = reaction;