Filter chats by Unread

This commit is contained in:
yash-signal 2024-11-13 13:33:41 -06:00 committed by GitHub
parent 45e9c07125
commit a56e7d0ade
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 883 additions and 438 deletions

View file

@ -39,7 +39,7 @@ export abstract class LeftPaneHelper<T> {
getSearchInput(
_: Readonly<{
clearConversationSearch: () => unknown;
clearSearch: () => unknown;
clearSearchQuery: () => unknown;
endConversationSearch: () => unknown;
endSearch: () => unknown;
i18n: LocalizerType;
@ -50,6 +50,7 @@ export abstract class LeftPaneHelper<T> {
updateSearchTerm: (searchTerm: string) => unknown;
showConversation: ShowConversationType;
showInbox: () => void;
updateFilterByUnread: (filterByUnread: boolean) => void;
}> &
LookupConversationWithoutServiceIdActionsType
): null | ReactChild {
@ -78,7 +79,7 @@ export abstract class LeftPaneHelper<T> {
_: Readonly<{
clearConversationSearch: () => unknown;
clearGroupCreationError: () => void;
clearSearch: () => unknown;
clearSearchQuery: () => unknown;
closeMaximumGroupSizeModal: () => unknown;
closeRecommendedGroupSizeModal: () => unknown;
composeDeleteAvatarFromDisk: DeleteAvatarFromDiskActionType;