tamaina 2021-04-24 00:52:04 +09:00
parent d24fedc018
commit 87589ee420
2 changed files with 6 additions and 7 deletions

View File

@ -92,18 +92,20 @@ export default defineComponent({
this.connection.on('notification', this.onNotification);
this.connection.on('readAllNotifications', () => {
this.queue = this.queue.map(x => markNotificationRead(x));
for (const item of this.queue) {
item.isRead = true;
}
for (const item of this.items) {
item.isRead = true;
}
});
this.connection.on('readNotifications', notificationIds => {
if (this.queue.length === 0) return;
for (let i = 0; i < this.queue.length; i++) {
if (notificationIds.includes(this.queue[i].id)) {
this.queue[i] = markNotificationRead(this.queue[i]);
this.queue[i].isRead = true;
}
}
for (let i = 0; i < this.items.length; i++) {
if (notificationIds.includes(this.items[i].id)) {
this.items[i].isRead = true;
}

View File

@ -1,3 +0,0 @@
export function markNotificationRead(notification: any) {
return { ...notification, isRead: true };
}