From 441c0ca46545d07b7a020d9670944b4c83e38dbd Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 2 Nov 2023 15:50:20 +0900 Subject: [PATCH] wip --- .../api/endpoints/i/notifications-grouped.ts | 2 +- .../src/components/MkNotification.vue | 30 +++++++++++++++++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/packages/backend/src/server/api/endpoints/i/notifications-grouped.ts b/packages/backend/src/server/api/endpoints/i/notifications-grouped.ts index 22320c75aa..4ea94b07f6 100644 --- a/packages/backend/src/server/api/endpoints/i/notifications-grouped.ts +++ b/packages/backend/src/server/api/endpoints/i/notifications-grouped.ts @@ -149,7 +149,7 @@ export default class extends Endpoint { // eslint- id: '', createdAt: notification.createdAt, noteId: prev.noteId!, - userIds: [], + userIds: [prev.notifierId!], }; prevGroupedNotification = groupedNotifications.at(-1)!; } diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index 8e770fde8c..ff20bc591f 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -9,9 +9,11 @@ SPDX-License-Identifier: AGPL-3.0-only +
+
- +
{{ i18n.ts._notification.testNotification }} {{ i18n.t('_notification.reactedBySomeUsers', { n: notification.reactions.length }) }} + {{ i18n.t('_notification.renotedBySomeUsers', { n: notification.users.length }) }} {{ notification.header }} @@ -61,7 +64,7 @@ SPDX-License-Identifier: AGPL-3.0-only - + @@ -199,6 +202,29 @@ useTooltip(reactionRef, (showing) => { display: block; width: 100%; height: 100%; +} + +.icon_reactionGroup, +.icon_renoteGroup { + display: grid; + align-items: center; + justify-items: center; + width: 80%; + height: 80%; + font-size: 15px; + border-radius: 100%; + color: #fff; +} + +.icon_reactionGroup { + background: #e99a0b; +} + +.icon_renoteGroup { + background: #36d298; +} + +.icon_app { border-radius: 6px; }