From 7046c6c9b6bab238c96d40e6cecca8e255392dbe Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 19 May 2023 11:00:22 +1000 Subject: [PATCH] fix: cap unread count to the CONVERSATION.MAX_UNREAD_COUNT value --- ts/hooks/useParamSelector.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ts/hooks/useParamSelector.ts b/ts/hooks/useParamSelector.ts index ecfc62c6c..df837c162 100644 --- a/ts/hooks/useParamSelector.ts +++ b/ts/hooks/useParamSelector.ts @@ -9,6 +9,7 @@ import { UserUtils } from '../session/utils'; import { StateType } from '../state/reducer'; import { getMessageReactsProps } from '../state/selectors/conversations'; import { isPrivateAndFriend } from '../state/selectors/selectedConversation'; +import { CONVERSATION } from '../session/constants'; export function useAvatarPath(convoId: string | undefined) { const convoProps = useConversationPropsById(convoId); @@ -232,9 +233,14 @@ export function useMessageReactsPropsById(messageId?: string) { }); } +/** + * Returns the unread count of that conversation, or 0 if none are found. + * Note: returned value is capped at a max of CONVERSATION.MAX_UNREAD_COUNT + */ export function useUnreadCount(conversationId?: string): number { const convoProps = useConversationPropsById(conversationId); - return convoProps?.unreadCount || 0; + const convoUnreadCount = convoProps?.unreadCount || 0; + return Math.min(CONVERSATION.MAX_UNREAD_COUNT, convoUnreadCount); } export function useHasUnread(conversationId?: string): boolean {