mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Use the variables we just defined above
This commit is contained in:
parent
0e6f401b62
commit
23b29ce3f5
@ -28,12 +28,11 @@ export const BADGE_STATES = [ALL_MESSAGES, ALL_MESSAGES_LOUD];
|
|||||||
export const MENTION_BADGE_STATES = [...BADGE_STATES, MENTIONS_ONLY];
|
export const MENTION_BADGE_STATES = [...BADGE_STATES, MENTIONS_ONLY];
|
||||||
|
|
||||||
export function shouldShowNotifBadge(roomNotifState) {
|
export function shouldShowNotifBadge(roomNotifState) {
|
||||||
const showBadgeInStates = [ALL_MESSAGES, ALL_MESSAGES_LOUD];
|
return BADGE_STATES.includes(roomNotifState);
|
||||||
return showBadgeInStates.indexOf(roomNotifState) > -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function shouldShowMentionBadge(roomNotifState) {
|
export function shouldShowMentionBadge(roomNotifState) {
|
||||||
return roomNotifState !== MUTE;
|
return MENTION_BADGE_STATES.includes(roomNotifState);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function aggregateNotificationCount(rooms) {
|
export function aggregateNotificationCount(rooms) {
|
||||||
|
Loading…
Reference in New Issue
Block a user