feat: add note to self inEnglish option to search

pull/3206/head
Ryan Miller 7 months ago
parent 9abc90d65f
commit d7f1a548fe

@ -68,7 +68,10 @@ export function search(query: string): SearchResultsKickoffActionType {
async function doSearch(query: string): Promise<SearchResultsPayloadType> {
const options: SearchOptions = {
noteToSelf: window.i18n('noteToSelf').toLowerCase(),
noteToSelf: [
window.i18n('noteToSelf').toLowerCase(),
window.i18n.inEnglish('noteToSelf').toLowerCase(),
],
savedMessages: window.i18n('savedMessages').toLowerCase(),
ourNumber: UserUtils.getOurPubKeyStrFromCache(),
};
@ -209,10 +212,8 @@ async function queryContactsAndGroups(providedQuery: string, options: SearchOpti
let contactsAndGroups: Array<string> = searchResults.map(conversation => conversation.id);
const queryLowered = query.toLowerCase();
// Inject synthetic Note to Self entry if query matches localized 'Note to Self'
if (
noteToSelf.includes(query) ||
noteToSelf.includes(queryLowered) ||
noteToSelf.some(str => str.includes(query) || str.includes(queryLowered)) ||
savedMessages.includes(query) ||
savedMessages.includes(queryLowered)
) {

@ -1,6 +1,6 @@
export type SearchOptions = {
ourNumber: string;
noteToSelf: string;
noteToSelf: Array<string>;
savedMessages: string;
};

Loading…
Cancel
Save