Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Ignore unreads in low priority rooms in the space panel #6518

Merged
13 changes: 11 additions & 2 deletions src/stores/notifications/SpaceNotificationState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import { arrayDiff } from "../../utils/arrays";
import { RoomNotificationState } from "./RoomNotificationState";
import { NOTIFICATION_STATE_UPDATE, NotificationState } from "./NotificationState";
import { FetchRoomFn } from "./ListNotificationState";
import { DefaultTagID } from "../room-list/models";
import RoomListStore from "../room-list/RoomListStore";

export class SpaceNotificationState extends NotificationState {
public rooms: Room[] = []; // exposed only for tests
Expand Down Expand Up @@ -74,7 +76,15 @@ export class SpaceNotificationState extends NotificationState {

this._count = 0;
this._color = NotificationColor.None;
for (const state of Object.values(this.states)) {
for (const [roomId, state] of Object.entries(this.states)) {
const roomTags = RoomListStore.instance.getTagsForRoom(this.rooms.find(r => r.roomId === roomId));

// We ignore unreads in LowPriority rooms, see https://github.com/vector-im/element-web/issues/16836
if (
roomTags.includes(DefaultTagID.LowPriority) &&
state.color === NotificationColor.Bold
) continue;

this._count += state.count;
this._color = Math.max(this.color, state.color);
}
Expand All @@ -83,4 +93,3 @@ export class SpaceNotificationState extends NotificationState {
this.emitIfUpdated(snapshot);
}
}