TelegramPWA/src/modules/actions/api/localSearch.ts
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

175 lines
4.4 KiB
TypeScript

import {
addReducer, getDispatch, getGlobal, setGlobal,
} from '../../../lib/teact/teactn';
import { ApiChat, ApiUser, MAIN_THREAD_ID } from '../../../api/types';
import { MESSAGE_SEARCH_SLICE, SHARED_MEDIA_SLICE } from '../../../config';
import { callApi } from '../../../api/gramjs';
import {
selectCurrentTextSearch,
selectCurrentMediaSearchPeerId,
selectCurrentMediaSearch, selectCurrentMessageList, selectChat, selectThreadInfo,
} from '../../selectors';
import { buildCollectionByKey } from '../../../util/iteratees';
import {
addChatMessagesById,
addUsers,
updateLocalMediaSearchResults,
updateLocalTextSearchResults,
} from '../../reducers';
import { SharedMediaType } from '../../../types';
addReducer('searchTextMessagesLocal', (global) => {
const { chatId, threadId } = selectCurrentMessageList(global) || {};
const chat = chatId ? selectChat(global, chatId) : undefined;
const currentSearch = selectCurrentTextSearch(global);
if (!chat || !currentSearch || !threadId) {
return;
}
const { query, results } = currentSearch;
const offsetId = results ? results.nextOffsetId : undefined;
let topMessageId: number | undefined;
if (threadId !== MAIN_THREAD_ID) {
const threadInfo = selectThreadInfo(global, chatId!, threadId);
topMessageId = threadInfo ? threadInfo.topMessageId : undefined;
}
void searchTextMessages(chat, threadId, topMessageId, query, offsetId);
});
addReducer('searchMediaMessagesLocal', (global) => {
const peerId = selectCurrentMediaSearchPeerId(global);
const chatOrUser = peerId
? global.users.byId[peerId] || global.chats.byId[peerId]
: undefined;
const currentSearch = selectCurrentMediaSearch(global);
if (!chatOrUser || !currentSearch) {
return;
}
const { currentType: type, resultsByType } = currentSearch;
const currentResults = type && resultsByType && resultsByType[type];
const offsetId = currentResults ? currentResults.nextOffsetId : undefined;
if (!type) {
return;
}
void searchSharedMedia(chatOrUser, type, offsetId);
});
addReducer('searchMessagesByDate', (global, actions, payload) => {
const { timestamp } = payload!;
const { chatId } = selectCurrentMessageList(global) || {};
if (!chatId) {
return;
}
const chat = selectChat(global, chatId);
if (!chat) {
return;
}
void searchMessagesByDate(chat, timestamp);
});
async function searchTextMessages(
chatOrUser: ApiChat,
threadId: number,
topMessageId?: number,
query?: string,
offsetId?: number,
) {
const result = await callApi('searchMessagesLocal', {
chatOrUser,
type: 'text',
query,
topMessageId,
limit: MESSAGE_SEARCH_SLICE,
offsetId,
});
if (!result) {
return;
}
const {
messages, users, totalCount, nextOffsetId,
} = result;
const byId = buildCollectionByKey(messages, 'id');
const newFoundIds = Object.keys(byId).map(Number);
let global = getGlobal();
const currentSearch = selectCurrentTextSearch(global);
if (!currentSearch || (query && query !== currentSearch.query)) {
return;
}
global = addChatMessagesById(global, chatOrUser.id, byId);
global = addUsers(global, buildCollectionByKey(users, 'id'));
global = updateLocalTextSearchResults(global, chatOrUser.id, threadId, newFoundIds, totalCount, nextOffsetId);
setGlobal(global);
}
async function searchSharedMedia(
chatOrUser: ApiChat | ApiUser,
type: SharedMediaType,
offsetId?: number,
) {
const result = await callApi('searchMessagesLocal', {
chatOrUser,
type,
limit: SHARED_MEDIA_SLICE,
offsetId,
});
if (!result) {
return;
}
const {
messages, users, totalCount, nextOffsetId,
} = result;
const byId = buildCollectionByKey(messages, 'id');
const newFoundIds = Object.keys(byId).map(Number);
let global = getGlobal();
const currentSearch = selectCurrentMediaSearch(global);
if (!currentSearch) {
return;
}
global = addChatMessagesById(global, chatOrUser.id, byId);
global = addUsers(global, buildCollectionByKey(users, 'id'));
global = updateLocalMediaSearchResults(global, chatOrUser.id, type, newFoundIds, totalCount, nextOffsetId);
setGlobal(global);
}
/**
* @param timestamp start of target date in seconds
*/
async function searchMessagesByDate(chat: ApiChat, timestamp: number) {
const messageId = await callApi('findFirstMessageIdAfterDate', {
chat,
timestamp,
});
if (!messageId) {
return;
}
getDispatch().focusMessage({
chatId: chat.id,
messageId,
});
}