Add !unread: internal filter
This commit is contained in:
parent
b76543d0ee
commit
1e6e8c3be4
1 changed files with 18 additions and 0 deletions
|
@ -7,6 +7,7 @@ import type { ConversationType } from '../state/ducks/conversations';
|
||||||
import { parseAndFormatPhoneNumber } from './libphonenumberInstance';
|
import { parseAndFormatPhoneNumber } from './libphonenumberInstance';
|
||||||
import { WEEK } from './durations';
|
import { WEEK } from './durations';
|
||||||
import { fuseGetFnRemoveDiacritics, getCachedFuseIndex } from './fuse';
|
import { fuseGetFnRemoveDiacritics, getCachedFuseIndex } from './fuse';
|
||||||
|
import { getConversationUnreadCountForAppBadge } from './getConversationUnreadCountForAppBadge';
|
||||||
|
|
||||||
// Fuse.js scores have order of 0.01
|
// Fuse.js scores have order of 0.01
|
||||||
const ACTIVE_AT_SCORE_FACTOR = (1 / WEEK) * 0.01;
|
const ACTIVE_AT_SCORE_FACTOR = (1 / WEEK) * 0.01;
|
||||||
|
@ -71,6 +72,23 @@ COMMANDS.set('groupIdEndsWith', (conversations, query) => {
|
||||||
return conversations.filter(convo => convo.groupId?.endsWith(query));
|
return conversations.filter(convo => convo.groupId?.endsWith(query));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
COMMANDS.set('unread', conversations => {
|
||||||
|
const canCountMutedConversations =
|
||||||
|
window.storage.get('badge-count-muted-conversations') || false;
|
||||||
|
|
||||||
|
return conversations.filter(convo => {
|
||||||
|
return getConversationUnreadCountForAppBadge(
|
||||||
|
{
|
||||||
|
...convo,
|
||||||
|
|
||||||
|
// Difference between redux type and conversation attributes
|
||||||
|
active_at: convo.activeAt,
|
||||||
|
},
|
||||||
|
canCountMutedConversations
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// See https://fusejs.io/examples.html#extended-search for
|
// See https://fusejs.io/examples.html#extended-search for
|
||||||
// extended search documentation.
|
// extended search documentation.
|
||||||
function searchConversations(
|
function searchConversations(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue