1678 lines
53 KiB
TypeScript
1678 lines
53 KiB
TypeScript
/*
|
|
* https://github.com/morethanwords/tweb
|
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
|
*/
|
|
|
|
import { copy, getObjectKeysAndSort, safeAssign } from "../helpers/object";
|
|
import { escapeRegExp, limitSymbols } from "../helpers/string";
|
|
import appChatsManager from "../lib/appManagers/appChatsManager";
|
|
import appDialogsManager from "../lib/appManagers/appDialogsManager";
|
|
import appMessagesManager, { MyInputMessagesFilter, MyMessage } from "../lib/appManagers/appMessagesManager";
|
|
import appPeersManager from "../lib/appManagers/appPeersManager";
|
|
import appPhotosManager from "../lib/appManagers/appPhotosManager";
|
|
import appStateManager from "../lib/appManagers/appStateManager";
|
|
import appUsersManager from "../lib/appManagers/appUsersManager";
|
|
import { logger } from "../lib/logger";
|
|
import RichTextProcessor from "../lib/richtextprocessor";
|
|
import rootScope from "../lib/rootScope";
|
|
import { SearchGroup, SearchGroupType } from "./appSearch";
|
|
import { horizontalMenu } from "./horizontalMenu";
|
|
import LazyLoadQueue from "./lazyLoadQueue";
|
|
import { attachContextMenuListener, openBtnMenu, positionMenu, putPreloader } from "./misc";
|
|
import { ripple } from "./ripple";
|
|
import Scrollable, { ScrollableX } from "./scrollable";
|
|
import { wrapDocument, wrapPhoto, wrapVideo } from "./wrappers";
|
|
import useHeavyAnimationCheck, { getHeavyAnimationPromise } from "../hooks/useHeavyAnimationCheck";
|
|
import I18n, { LangPackKey, i18n } from "../lib/langPack";
|
|
import findUpClassName from "../helpers/dom/findUpClassName";
|
|
import { getMiddleware } from "../helpers/middleware";
|
|
import appProfileManager from "../lib/appManagers/appProfileManager";
|
|
import { ChannelParticipant, ChatFull, ChatParticipant, ChatParticipants, Message, MessageMedia, Photo, WebPage } from "../layer";
|
|
import SortedUserList from "./sortedUserList";
|
|
import findUpTag from "../helpers/dom/findUpTag";
|
|
import appSidebarRight from "./sidebarRight";
|
|
import mediaSizes from "../helpers/mediaSizes";
|
|
import appImManager from "../lib/appManagers/appImManager";
|
|
import positionElementByIndex from "../helpers/dom/positionElementByIndex";
|
|
import cleanSearchText from "../helpers/cleanSearchText";
|
|
import { IS_TOUCH_SUPPORTED } from "../environment/touchSupport";
|
|
import handleTabSwipe from "../helpers/dom/handleTabSwipe";
|
|
import windowSize from "../helpers/windowSize";
|
|
import { formatPhoneNumber } from "../helpers/formatPhoneNumber";
|
|
import ButtonMenu, { ButtonMenuItemOptions } from "./buttonMenu";
|
|
import PopupForward from "./popups/forward";
|
|
import PopupDeleteMessages from "./popups/deleteMessages";
|
|
import Row from "./row";
|
|
import htmlToDocumentFragment from "../helpers/dom/htmlToDocumentFragment";
|
|
import { SearchSelection } from "./chat/selection";
|
|
import { cancelEvent } from "../helpers/dom/cancelEvent";
|
|
import { attachClickEvent, simulateClickEvent } from "../helpers/dom/clickEvent";
|
|
import { MyDocument } from "../lib/appManagers/appDocsManager";
|
|
import AppMediaViewer from "./appMediaViewer";
|
|
import lockTouchScroll from "../helpers/dom/lockTouchScroll";
|
|
|
|
//const testScroll = false;
|
|
|
|
export type SearchSuperType = MyInputMessagesFilter/* | 'members' */;
|
|
export type SearchSuperContext = {
|
|
peerId: PeerId,
|
|
inputFilter: {_: MyInputMessagesFilter},
|
|
query?: string,
|
|
maxId?: number,
|
|
folderId?: number,
|
|
threadId?: number,
|
|
date?: number,
|
|
nextRate?: number,
|
|
minDate?: number,
|
|
maxDate?: number
|
|
};
|
|
|
|
export type SearchSuperMediaType = 'members' | 'media' | 'files' | 'links' | 'music' | 'chats' | 'voice';
|
|
export type SearchSuperMediaTab = {
|
|
inputFilter: SearchSuperType,
|
|
name: LangPackKey,
|
|
type: SearchSuperMediaType,
|
|
contentTab?: HTMLElement,
|
|
menuTab?: HTMLElement,
|
|
scroll?: {scrollTop: number, scrollHeight: number}
|
|
};
|
|
|
|
class SearchContextMenu {
|
|
private buttons: (ButtonMenuItemOptions & {verify?: () => boolean, withSelection?: true})[];
|
|
private element: HTMLElement;
|
|
private target: HTMLElement;
|
|
private peerId: PeerId;
|
|
private mid: number;
|
|
private isSelected: boolean;
|
|
|
|
constructor(
|
|
private attachTo: HTMLElement,
|
|
private searchSuper: AppSearchSuper
|
|
) {
|
|
const onContextMenu = (e: MouseEvent) => {
|
|
if(this.init) {
|
|
this.init();
|
|
this.init = null;
|
|
}
|
|
|
|
let item: HTMLElement;
|
|
try {
|
|
item = findUpClassName(e.target, 'search-super-item');
|
|
} catch(e) {}
|
|
|
|
if(!item) return;
|
|
|
|
if(e instanceof MouseEvent) e.preventDefault();
|
|
if(this.element.classList.contains('active')) {
|
|
return false;
|
|
}
|
|
if(e instanceof MouseEvent) e.cancelBubble = true;
|
|
|
|
this.target = item;
|
|
this.peerId = item.dataset.peerId.toPeerId();
|
|
this.mid = +item.dataset.mid;
|
|
this.isSelected = searchSuper.selection.isMidSelected(this.peerId, this.mid);
|
|
|
|
this.buttons.forEach(button => {
|
|
let good: boolean;
|
|
|
|
if(this.isSelected && !button.withSelection) {
|
|
good = false;
|
|
} else {
|
|
good = button.verify ? button.verify() : true;
|
|
}
|
|
|
|
button.element.classList.toggle('hide', !good);
|
|
});
|
|
|
|
item.classList.add('menu-open');
|
|
|
|
positionMenu(e, this.element);
|
|
openBtnMenu(this.element, () => {
|
|
item.classList.remove('menu-open');
|
|
});
|
|
};
|
|
|
|
if(IS_TOUCH_SUPPORTED) {
|
|
|
|
} else {
|
|
attachContextMenuListener(attachTo, onContextMenu as any);
|
|
}
|
|
}
|
|
|
|
private init() {
|
|
this.buttons = [{
|
|
icon: 'forward',
|
|
text: 'Forward',
|
|
onClick: this.onForwardClick,
|
|
verify: () => appMessagesManager.canForward(appMessagesManager.getMessageByPeer(this.peerId, this.mid))
|
|
}, {
|
|
icon: 'forward',
|
|
text: 'Message.Context.Selection.Forward',
|
|
onClick: this.onForwardClick,
|
|
verify: () => this.isSelected &&
|
|
!this.searchSuper.selection.selectionForwardBtn.classList.contains('hide'),
|
|
withSelection: true
|
|
}, {
|
|
icon: 'message',
|
|
text: 'Message.Context.Goto',
|
|
onClick: this.onGotoClick,
|
|
withSelection: true
|
|
}, {
|
|
icon: 'select',
|
|
text: 'Message.Context.Select',
|
|
onClick: this.onSelectClick
|
|
}, {
|
|
icon: 'select',
|
|
text: 'Message.Context.Selection.Clear',
|
|
onClick: this.onClearSelectionClick,
|
|
verify: () => this.isSelected,
|
|
withSelection: true
|
|
}, {
|
|
icon: 'delete danger',
|
|
text: 'Delete',
|
|
onClick: this.onDeleteClick,
|
|
verify: () => appMessagesManager.canDeleteMessage(appMessagesManager.getMessageByPeer(this.peerId, this.mid))
|
|
}, {
|
|
icon: 'delete danger',
|
|
text: 'Message.Context.Selection.Delete',
|
|
onClick: this.onDeleteClick,
|
|
verify: () => this.isSelected && !this.searchSuper.selection.selectionDeleteBtn.classList.contains('hide'),
|
|
withSelection: true
|
|
}];
|
|
|
|
this.element = ButtonMenu(this.buttons);
|
|
this.element.classList.add('search-contextmenu', 'contextmenu');
|
|
document.getElementById('page-chats').append(this.element);
|
|
}
|
|
|
|
private onGotoClick = () => {
|
|
rootScope.dispatchEvent('history_focus', {
|
|
peerId: this.peerId,
|
|
mid: this.mid,
|
|
threadId: this.searchSuper.searchContext.threadId
|
|
});
|
|
};
|
|
|
|
private onForwardClick = () => {
|
|
if(this.searchSuper.selection.isSelecting) {
|
|
simulateClickEvent(this.searchSuper.selection.selectionForwardBtn);
|
|
} else {
|
|
new PopupForward({
|
|
[this.peerId]: [this.mid]
|
|
});
|
|
}
|
|
};
|
|
|
|
private onSelectClick = () => {
|
|
this.searchSuper.selection.toggleByElement(this.target);
|
|
};
|
|
|
|
private onClearSelectionClick = () => {
|
|
this.searchSuper.selection.cancelSelection();
|
|
};
|
|
|
|
private onDeleteClick = () => {
|
|
if(this.searchSuper.selection.isSelecting) {
|
|
simulateClickEvent(this.searchSuper.selection.selectionDeleteBtn);
|
|
} else {
|
|
new PopupDeleteMessages(this.peerId, [this.mid], 'chat');
|
|
}
|
|
};
|
|
}
|
|
|
|
export type ProcessSearchSuperResult = {
|
|
message: Message.message,
|
|
middleware: () => boolean,
|
|
promises: Promise<any>[],
|
|
elemsToAppend: {element: HTMLElement, message: any}[],
|
|
inputFilter: MyInputMessagesFilter,
|
|
searchGroup?: SearchGroup
|
|
};
|
|
|
|
export default class AppSearchSuper {
|
|
public tabs: {[t in SearchSuperType]: HTMLDivElement} = {} as any;
|
|
|
|
public mediaTab: SearchSuperMediaTab;
|
|
|
|
public container: HTMLElement;
|
|
public nav: HTMLElement;
|
|
public navScrollableContainer: HTMLDivElement;
|
|
public tabsContainer: HTMLElement;
|
|
public navScrollable: ScrollableX;
|
|
private tabsMenu: HTMLElement;
|
|
private prevTabId = -1;
|
|
|
|
private lazyLoadQueue = new LazyLoadQueue();
|
|
public middleware = getMiddleware();
|
|
|
|
public historyStorage: Partial<{[type in SearchSuperType]: {mid: number, peerId: PeerId}[]}> = {};
|
|
public usedFromHistory: Partial<{[type in SearchSuperType]: number}> = {};
|
|
public urlsToRevoke: string[] = [];
|
|
|
|
public searchContext: SearchSuperContext;
|
|
public loadMutex: Promise<any> = Promise.resolve();
|
|
|
|
private nextRates: Partial<{[type in SearchSuperType]: number}> = {};
|
|
private loadPromises: Partial<{[type in SearchSuperType]: Promise<void>}> = {};
|
|
private loaded: Partial<{[type in SearchSuperType]: boolean}> = {};
|
|
private loadedChats = false;
|
|
private firstLoad = true;
|
|
|
|
private log = logger('SEARCH-SUPER');
|
|
public selectTab: ReturnType<typeof horizontalMenu>;
|
|
|
|
private monthContainers: Partial<{
|
|
[type in SearchSuperType]: {
|
|
[timestamp: number]: {
|
|
container: HTMLElement,
|
|
items: HTMLElement
|
|
}
|
|
}
|
|
}> = {};
|
|
|
|
private searchGroupMedia: SearchGroup;
|
|
|
|
public mediaTabsMap: Map<SearchSuperMediaType, SearchSuperMediaTab> = new Map();
|
|
|
|
private membersList: SortedUserList;
|
|
|
|
private skipScroll: boolean;
|
|
|
|
// * arguments
|
|
public mediaTabs: SearchSuperMediaTab[];
|
|
public scrollable: Scrollable;
|
|
public searchGroups?: {[group in SearchGroupType]: SearchGroup};
|
|
public asChatList? = false;
|
|
public groupByMonth? = true;
|
|
public hideEmptyTabs? = true;
|
|
public onChangeTab?: (mediaTab: SearchSuperMediaTab) => void;
|
|
public showSender? = false;
|
|
|
|
private searchContextMenu: SearchContextMenu;
|
|
public selection: SearchSelection;
|
|
|
|
constructor(options: Pick<AppSearchSuper, 'mediaTabs' | 'scrollable' | 'searchGroups' | 'asChatList' | 'groupByMonth' | 'hideEmptyTabs' | 'onChangeTab' | 'showSender'>) {
|
|
safeAssign(this, options);
|
|
|
|
this.container = document.createElement('div');
|
|
this.container.classList.add('search-super');
|
|
|
|
this.searchContextMenu = new SearchContextMenu(this.container, this);
|
|
this.selection = new SearchSelection(this, appMessagesManager);
|
|
|
|
const navScrollableContainer = this.navScrollableContainer = document.createElement('div');
|
|
navScrollableContainer.classList.add('search-super-tabs-scrollable', 'menu-horizontal-scrollable', 'sticky');
|
|
|
|
const navScrollable = this.navScrollable = new ScrollableX(navScrollableContainer);
|
|
navScrollable.container.classList.add('search-super-nav-scrollable');
|
|
|
|
const nav = this.nav = document.createElement('nav');
|
|
nav.classList.add('search-super-tabs', 'menu-horizontal-div');
|
|
this.tabsMenu = nav;
|
|
|
|
navScrollable.container.append(nav);
|
|
|
|
for(const mediaTab of this.mediaTabs) {
|
|
const menuTab = document.createElement('div');
|
|
menuTab.classList.add('menu-horizontal-div-item');
|
|
const span = document.createElement('span');
|
|
const i = document.createElement('i');
|
|
|
|
span.append(i18n(mediaTab.name));
|
|
span.append(i);
|
|
|
|
menuTab.append(span);
|
|
|
|
ripple(menuTab);
|
|
|
|
this.tabsMenu.append(menuTab);
|
|
|
|
this.mediaTabsMap.set(mediaTab.type, mediaTab);
|
|
|
|
mediaTab.menuTab = menuTab;
|
|
}
|
|
|
|
this.tabsContainer = document.createElement('div');
|
|
this.tabsContainer.classList.add('search-super-tabs-container', 'tabs-container');
|
|
|
|
let unlockScroll: ReturnType<typeof lockTouchScroll>;
|
|
if(IS_TOUCH_SUPPORTED) {
|
|
handleTabSwipe({
|
|
element: this.tabsContainer,
|
|
onSwipe: (xDiff, yDiff, e) => {
|
|
const prevId = this.selectTab.prevId();
|
|
const children = Array.from(this.tabsMenu.children) as HTMLElement[];
|
|
let idx: number;
|
|
if(xDiff > 0) {
|
|
for(let i = prevId + 1; i < children.length; ++i) {
|
|
if(!children[i].classList.contains('hide')) {
|
|
idx = i;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
for(let i = prevId - 1; i >= 0; --i) {
|
|
if(!children[i].classList.contains('hide')) {
|
|
idx = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(idx !== undefined) {
|
|
unlockScroll = lockTouchScroll(this.tabsContainer);
|
|
this.selectTab(idx);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
for(const mediaTab of this.mediaTabs) {
|
|
const container = document.createElement('div');
|
|
container.classList.add('search-super-container-' + mediaTab.type, 'tabs-tab');
|
|
|
|
const content = document.createElement('div');
|
|
content.classList.add('search-super-content-' + mediaTab.type);
|
|
|
|
container.append(content);
|
|
|
|
this.tabsContainer.append(container);
|
|
|
|
this.tabs[mediaTab.inputFilter] = content;
|
|
|
|
mediaTab.contentTab = content;
|
|
}
|
|
|
|
this.container.append(navScrollableContainer, this.tabsContainer);
|
|
|
|
// * construct end
|
|
|
|
this.searchGroupMedia = new SearchGroup(false, 'messages', true);
|
|
|
|
this.scrollable.onScrolledBottom = () => {
|
|
if(this.mediaTab.contentTab && this.mediaTab.contentTab.childElementCount/* && false */) {
|
|
//this.log('onScrolledBottom will load media');
|
|
this.load(true);
|
|
}
|
|
};
|
|
//this.scroll.attachSentinels(undefined, 400);
|
|
|
|
this.selectTab = horizontalMenu(this.tabsMenu, this.tabsContainer, (id, tabContent, animate) => {
|
|
if(this.prevTabId === id && !this.skipScroll) {
|
|
this.scrollable.scrollIntoViewNew({
|
|
element: this.container,
|
|
position: 'start'
|
|
});
|
|
return;
|
|
}
|
|
|
|
const newMediaTab = this.mediaTabs[id];
|
|
if(this.onChangeTab) {
|
|
this.onChangeTab(newMediaTab);
|
|
}
|
|
|
|
const fromMediaTab = this.mediaTab;
|
|
this.mediaTab = newMediaTab;
|
|
|
|
if(this.prevTabId !== -1 && animate) {
|
|
this.onTransitionStart();
|
|
}
|
|
|
|
if(this.skipScroll) {
|
|
this.skipScroll = false;
|
|
} else {
|
|
const offsetTop = this.container.offsetTop;
|
|
let scrollTop = this.scrollable.scrollTop;
|
|
if(scrollTop < offsetTop) {
|
|
this.scrollable.scrollIntoViewNew({
|
|
element: this.container,
|
|
position: 'start'
|
|
});
|
|
scrollTop = offsetTop;
|
|
}
|
|
|
|
fromMediaTab.scroll = {scrollTop: scrollTop, scrollHeight: this.scrollable.scrollHeight};
|
|
|
|
if(newMediaTab.scroll === undefined) {
|
|
const rect = this.container.getBoundingClientRect();
|
|
const rect2 = this.container.parentElement.getBoundingClientRect();
|
|
const diff = rect.y - rect2.y;
|
|
|
|
if(scrollTop > diff) {
|
|
newMediaTab.scroll = {scrollTop: diff, scrollHeight: 0};
|
|
}
|
|
}
|
|
|
|
if(newMediaTab.scroll) {
|
|
const diff = fromMediaTab.scroll.scrollTop - newMediaTab.scroll.scrollTop;
|
|
//console.log('what you gonna do', this.goingHard, diff);
|
|
|
|
//this.scrollable.scrollTop = scrollTop;
|
|
if(diff/* && diff < 0 */) {
|
|
/* if(diff > -(fromMediaTab.contentTab.scrollHeight + this.nav.scrollHeight)) {
|
|
fromMediaTab.contentTab.style.transform = `translateY(${diff}px)`;
|
|
this.scrollable.scrollTop = scrollTop - diff;
|
|
} else { */
|
|
newMediaTab.contentTab.style.transform = `translateY(${diff}px)`;
|
|
//}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* if(this.prevTabId !== -1 && nav.offsetTop) {
|
|
this.scrollable.scrollTop -= nav.offsetTop;
|
|
} */
|
|
|
|
/* this.log('setVirtualContainer', id, this.sharedMediaSelected, this.sharedMediaSelected.childElementCount);
|
|
this.scroll.setVirtualContainer(this.sharedMediaSelected); */
|
|
|
|
if(this.prevTabId !== -1 && !newMediaTab.contentTab.childElementCount) { // quick brown fix
|
|
//this.contentContainer.classList.remove('loaded');
|
|
this.load(true);
|
|
}
|
|
|
|
this.prevTabId = id;
|
|
}, () => {
|
|
this.scrollable.onScroll();
|
|
|
|
//console.log('what y', this.tabSelected.style.transform);
|
|
if(this.mediaTab.scroll !== undefined) {
|
|
this.mediaTab.contentTab.style.transform = '';
|
|
this.scrollable.scrollTop = this.mediaTab.scroll.scrollTop;
|
|
}
|
|
|
|
if(unlockScroll) {
|
|
unlockScroll();
|
|
unlockScroll = undefined;
|
|
}
|
|
|
|
this.onTransitionEnd();
|
|
}, undefined, navScrollable);
|
|
|
|
attachClickEvent(this.tabsContainer, (e) => {
|
|
if(this.selection.isSelecting) {
|
|
cancelEvent(e);
|
|
this.selection.toggleByElement(findUpClassName(e.target, 'search-super-item'));
|
|
}
|
|
}, {capture: true, passive: false});
|
|
|
|
const onMediaClick = (className: string, targetClassName: string, inputFilter: MyInputMessagesFilter, e: MouseEvent) => {
|
|
const target = findUpClassName(e.target as HTMLDivElement, className);
|
|
if(!target) return;
|
|
|
|
const mid = +target.dataset.mid;
|
|
if(!mid) {
|
|
this.log.warn('no messageId by click on target:', target);
|
|
return;
|
|
}
|
|
|
|
const peerId = target.dataset.peerId.toPeerId();
|
|
|
|
const targets = (Array.from(this.tabs[inputFilter].querySelectorAll('.' + targetClassName)) as HTMLElement[]).map(el => {
|
|
const containerEl = findUpClassName(el, className);
|
|
return {
|
|
element: el,
|
|
mid: +containerEl.dataset.mid,
|
|
peerId: containerEl.dataset.peerId.toPeerId()
|
|
};
|
|
});
|
|
|
|
//const ids = Object.keys(this.mediaDivsByIds).map(k => +k).sort((a, b) => a - b);
|
|
const idx = targets.findIndex(item => item.mid === mid && item.peerId === peerId);
|
|
|
|
const message = appMessagesManager.getMessageByPeer(peerId, mid);
|
|
new AppMediaViewer()
|
|
.setSearchContext(this.copySearchContext(inputFilter))
|
|
.openMedia(message, targets[idx].element, 0, false, targets.slice(0, idx), targets.slice(idx + 1));
|
|
};
|
|
|
|
attachClickEvent(this.tabs.inputMessagesFilterPhotoVideo, onMediaClick.bind(null, 'grid-item', 'grid-item', 'inputMessagesFilterPhotoVideo'));
|
|
attachClickEvent(this.tabs.inputMessagesFilterDocument, onMediaClick.bind(null, 'document-with-thumb', 'media-container', 'inputMessagesFilterDocument'));
|
|
|
|
/* attachClickEvent(this.tabs.inputMessagesFilterUrl, (e) => {
|
|
const target = e.target as HTMLElement;
|
|
if(target.tagName === 'A') {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const a = findUpClassName(target, 'row').querySelector('.anchor-url:last-child') as HTMLAnchorElement;
|
|
a.click();
|
|
} catch(err) {}
|
|
}); */
|
|
|
|
this.mediaTab = this.mediaTabs[0];
|
|
|
|
useHeavyAnimationCheck(() => {
|
|
this.lazyLoadQueue.lock();
|
|
}, () => {
|
|
this.lazyLoadQueue.unlockAndRefresh(); // ! maybe not so efficient
|
|
});
|
|
}
|
|
|
|
private onTransitionStart = () => {
|
|
this.container.classList.add('sliding');
|
|
};
|
|
|
|
private onTransitionEnd = () => {
|
|
this.container.classList.remove('sliding');
|
|
};
|
|
|
|
public filterMessagesByType(messages: any[], type: SearchSuperType): MyMessage[] {
|
|
if(type === 'inputMessagesFilterEmpty') return messages;
|
|
|
|
if(type !== 'inputMessagesFilterUrl') {
|
|
messages = messages.filter(message => !!message.media);
|
|
}
|
|
|
|
/* if(!this.peerId) {
|
|
messages = messages.filter(message => {
|
|
if(message.peerId === rootScope.myId) {
|
|
return true;
|
|
}
|
|
|
|
const dialog = appMessagesManager.getDialogByPeerId(message.fromId)[0];
|
|
return dialog && dialog.folder_id === 0;
|
|
});
|
|
} */
|
|
|
|
let filtered: any[] = [];
|
|
|
|
switch(type) {
|
|
case 'inputMessagesFilterPhotoVideo': {
|
|
for(let message of messages) {
|
|
let media = message.media.photo || message.media.document || (message.media.webpage && message.media.webpage.document);
|
|
if(!media) {
|
|
//this.log('no media!', message);
|
|
continue;
|
|
}
|
|
|
|
if(media._ === 'document' && media.type !== 'video'/* && media.type !== 'gif' */) {
|
|
//this.log('broken video', media);
|
|
continue;
|
|
}
|
|
|
|
filtered.push(message);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterDocument': {
|
|
for(let message of messages) {
|
|
if(!message.media.document || ['voice', 'audio', 'gif', 'sticker', 'round'].includes(message.media.document.type)) {
|
|
continue;
|
|
}
|
|
|
|
filtered.push(message);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterUrl': {
|
|
//this.log('inputMessagesFilterUrl', messages);
|
|
for(let message of messages) {
|
|
//if((message.media.webpage && message.media.webpage._ !== 'webPageEmpty')) {
|
|
filtered.push(message);
|
|
//}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterMusic': {
|
|
for(let message of messages) {
|
|
if(!message.media.document || message.media.document.type !== 'audio') {
|
|
continue;
|
|
}
|
|
|
|
filtered.push(message);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterVoice': {
|
|
for(let message of messages) {
|
|
if(!message.media.document || message.media.document.type !== 'voice') {
|
|
continue;
|
|
}
|
|
|
|
filtered.push(message);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterRoundVoice': {
|
|
for(let message of messages) {
|
|
if(!message.media.document || !(['voice', 'round'] as MyDocument['type'][]).includes(message.media.document.type)) {
|
|
continue;
|
|
}
|
|
|
|
filtered.push(message);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return filtered;
|
|
}
|
|
|
|
private processEmptyFilter({message, searchGroup}: ProcessSearchSuperResult) {
|
|
const {dialog, dom} = appDialogsManager.addDialogNew({
|
|
dialog: message.peerId,
|
|
container: searchGroup.list,
|
|
drawStatus: false,
|
|
avatarSize: 54
|
|
});
|
|
|
|
appDialogsManager.setLastMessage(dialog, message, dom, this.searchContext.query);
|
|
}
|
|
|
|
private processPhotoVideoFilter({message, promises, middleware, elemsToAppend}: ProcessSearchSuperResult) {
|
|
const media = appMessagesManager.getMediaFromMessage(message);
|
|
|
|
const div = document.createElement('div');
|
|
div.classList.add('grid-item');
|
|
//this.log(message, photo);
|
|
|
|
let wrapped: ReturnType<typeof wrapPhoto>;
|
|
const size = appPhotosManager.choosePhotoSize(media, 200, 200);
|
|
if(media._ !== 'photo') {
|
|
wrapped = wrapVideo({
|
|
doc: media,
|
|
message,
|
|
container: div,
|
|
boxWidth: 0,
|
|
boxHeight: 0,
|
|
lazyLoadQueue: this.lazyLoadQueue,
|
|
middleware,
|
|
onlyPreview: true,
|
|
withoutPreloader: true,
|
|
noPlayButton: true,
|
|
size
|
|
}).thumb;
|
|
} else {
|
|
wrapped = wrapPhoto({
|
|
photo: media,
|
|
message,
|
|
container: div,
|
|
boxWidth: 0,
|
|
boxHeight: 0,
|
|
lazyLoadQueue: this.lazyLoadQueue,
|
|
middleware,
|
|
withoutPreloader: true,
|
|
noBlur: true,
|
|
size
|
|
});
|
|
}
|
|
|
|
[wrapped.images.thumb, wrapped.images.full].filter(Boolean).forEach(image => {
|
|
image.classList.add('grid-item-media');
|
|
});
|
|
|
|
promises.push(wrapped.loadPromises.thumb);
|
|
|
|
elemsToAppend.push({element: div, message});
|
|
}
|
|
|
|
private processDocumentFilter({message, elemsToAppend, inputFilter}: ProcessSearchSuperResult) {
|
|
const document = appMessagesManager.getMediaFromMessage(message);
|
|
const showSender = this.showSender || (['voice', 'round'] as MyDocument['type'][]).includes(document.type);
|
|
const div = wrapDocument({
|
|
message,
|
|
withTime: !showSender,
|
|
fontWeight: 400,
|
|
voiceAsMusic: true,
|
|
showSender,
|
|
searchContext: this.copySearchContext(inputFilter),
|
|
lazyLoadQueue: this.lazyLoadQueue,
|
|
noAutoDownload: true
|
|
});
|
|
|
|
if((['audio', 'voice', 'round'] as MyDocument['type'][]).includes(document.type)) {
|
|
div.classList.add('audio-48');
|
|
}
|
|
|
|
elemsToAppend.push({element: div, message});
|
|
}
|
|
|
|
private processUrlFilter({message, promises, middleware, elemsToAppend}: ProcessSearchSuperResult) {
|
|
let webpage = (message.media as MessageMedia.messageMediaWebPage)?.webpage as WebPage.webPage;
|
|
|
|
if(!webpage) {
|
|
const entity = message.totalEntities ? message.totalEntities.find((e: any) => e._ === 'messageEntityUrl' || e._ === 'messageEntityTextUrl') : null;
|
|
let url: string, display_url: string, sliced: string;
|
|
|
|
if(!entity) {
|
|
//this.log.error('NO ENTITY:', message);
|
|
const match = RichTextProcessor.matchUrl(message.message);
|
|
if(!match) {
|
|
//this.log.error('NO ENTITY AND NO MATCH:', message);
|
|
return;
|
|
}
|
|
|
|
url = match[0];
|
|
} else {
|
|
sliced = message.message.slice(entity.offset, entity.offset + entity.length);
|
|
}
|
|
|
|
if(entity?._ === 'messageEntityTextUrl') {
|
|
url = entity.url;
|
|
//display_url = sliced;
|
|
} else {
|
|
url = url || sliced;
|
|
}
|
|
|
|
display_url = url;
|
|
|
|
const same = message.message === url;
|
|
if(!url.match(/^(ftp|http|https):\/\//)) {
|
|
display_url = 'https://' + url;
|
|
url = url.includes('@') ? url : 'https://' + url;
|
|
}
|
|
|
|
display_url = new URL(display_url).hostname;
|
|
|
|
webpage = {
|
|
_: 'webPage',
|
|
url,
|
|
display_url,
|
|
id: '',
|
|
hash: 0
|
|
};
|
|
|
|
if(!same) {
|
|
webpage.description = message.message;
|
|
webpage.rDescription = RichTextProcessor.wrapRichText(limitSymbols(message.message, 150, 180));
|
|
}
|
|
}
|
|
|
|
let previewDiv = document.createElement('div');
|
|
previewDiv.classList.add('preview', 'row-media');
|
|
|
|
//this.log('wrapping webpage', webpage);
|
|
|
|
if(webpage.photo) {
|
|
const res = wrapPhoto({
|
|
container: previewDiv,
|
|
message: null,
|
|
photo: webpage.photo as Photo.photo,
|
|
boxWidth: 0,
|
|
boxHeight: 0,
|
|
withoutPreloader: true,
|
|
lazyLoadQueue: this.lazyLoadQueue,
|
|
middleware,
|
|
size: appPhotosManager.choosePhotoSize(webpage.photo as Photo.photo, 60, 60, false),
|
|
loadPromises: promises,
|
|
noBlur: true
|
|
});
|
|
} else {
|
|
previewDiv.classList.add('empty');
|
|
previewDiv.innerHTML = RichTextProcessor.getAbbreviation(webpage.title || webpage.display_url || webpage.description || webpage.url, true);
|
|
}
|
|
|
|
let title = webpage.rTitle || '';
|
|
let subtitle = webpage.rDescription || '';
|
|
|
|
const subtitleFragment = htmlToDocumentFragment(subtitle);
|
|
const aFragment = htmlToDocumentFragment(RichTextProcessor.wrapRichText(webpage.url || ''));
|
|
const a = aFragment.firstElementChild;
|
|
if(a instanceof HTMLAnchorElement) {
|
|
try { // can have 'URIError: URI malformed'
|
|
a.innerText = decodeURIComponent(a.href);
|
|
} catch(err) {
|
|
|
|
}
|
|
}
|
|
|
|
if(subtitleFragment.firstChild) {
|
|
subtitleFragment.append('\n');
|
|
}
|
|
|
|
subtitleFragment.append(a);
|
|
|
|
if(this.showSender) {
|
|
subtitleFragment.append('\n', appMessagesManager.wrapSenderToPeer(message));
|
|
}
|
|
|
|
if(!title) {
|
|
//title = new URL(webpage.url).hostname;
|
|
title = RichTextProcessor.wrapPlainText(webpage.display_url.split('/', 1)[0]);
|
|
}
|
|
|
|
const row = new Row({
|
|
title,
|
|
titleRight: appMessagesManager.wrapSentTime(message),
|
|
subtitle: subtitleFragment,
|
|
havePadding: true,
|
|
clickable: true,
|
|
noRipple: true
|
|
});
|
|
|
|
/* const mediaDiv = document.createElement('div');
|
|
mediaDiv.classList.add('row-media'); */
|
|
|
|
row.container.append(previewDiv);
|
|
|
|
/* ripple(div);
|
|
div.append(previewDiv);
|
|
div.insertAdjacentHTML('beforeend', `
|
|
<div class="title">${title}${titleAdditionHTML}</div>
|
|
<div class="subtitle">${subtitle}</div>
|
|
<div class="url">${url}</div>
|
|
${sender}
|
|
`); */
|
|
|
|
if(row.container.innerText.trim().length) {
|
|
elemsToAppend.push({element: row.container, message});
|
|
}
|
|
}
|
|
|
|
public async performSearchResult(messages: any[], mediaTab: SearchSuperMediaTab, append = true) {
|
|
const elemsToAppend: {element: HTMLElement, message: any}[] = [];
|
|
const sharedMediaDiv: HTMLElement = mediaTab.contentTab;
|
|
const promises: Promise<any>[] = [];
|
|
const middleware = this.middleware.get();
|
|
let inputFilter = mediaTab.inputFilter;
|
|
|
|
await getHeavyAnimationPromise();
|
|
|
|
let searchGroup: SearchGroup;
|
|
if(inputFilter === 'inputMessagesFilterPhotoVideo' && !!this.searchContext.query.trim()) {
|
|
inputFilter = 'inputMessagesFilterEmpty';
|
|
searchGroup = this.searchGroupMedia;
|
|
sharedMediaDiv.append(searchGroup.container);
|
|
} else if(inputFilter === 'inputMessagesFilterEmpty') {
|
|
searchGroup = this.searchGroups.messages;
|
|
}
|
|
|
|
const options: ProcessSearchSuperResult = {
|
|
elemsToAppend,
|
|
inputFilter,
|
|
message: undefined,
|
|
middleware,
|
|
promises,
|
|
searchGroup
|
|
};
|
|
|
|
let processCallback: (options: ProcessSearchSuperResult) => any;
|
|
|
|
// https://core.telegram.org/type/MessagesFilter
|
|
switch(inputFilter) {
|
|
case 'inputMessagesFilterEmpty': {
|
|
processCallback = this.processEmptyFilter;
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterPhotoVideo': {
|
|
processCallback = this.processPhotoVideoFilter;
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterVoice':
|
|
case 'inputMessagesFilterRoundVoice':
|
|
case 'inputMessagesFilterMusic':
|
|
case 'inputMessagesFilterDocument': {
|
|
processCallback = this.processDocumentFilter;
|
|
break;
|
|
}
|
|
|
|
case 'inputMessagesFilterUrl': {
|
|
processCallback = this.processUrlFilter;
|
|
break;
|
|
}
|
|
|
|
default:
|
|
//this.log.warn('death is my friend', messages);
|
|
break;
|
|
}
|
|
|
|
if(processCallback) {
|
|
processCallback = processCallback.bind(this);
|
|
|
|
for(const message of messages) {
|
|
try {
|
|
options.message = message;
|
|
processCallback(options);
|
|
} catch(err) {
|
|
this.log.error('error rendering filter', inputFilter, options, message, err);
|
|
}
|
|
}
|
|
}
|
|
|
|
if(searchGroup && searchGroup.list.childElementCount) {
|
|
searchGroup.setActive();
|
|
}
|
|
|
|
if(this.loadMutex) {
|
|
promises.push(this.loadMutex);
|
|
}
|
|
|
|
if(promises.length) {
|
|
await Promise.all(promises);
|
|
if(!middleware()) {
|
|
//this.log.warn('peer changed');
|
|
return;
|
|
}
|
|
}
|
|
|
|
if(elemsToAppend.length) {
|
|
const method = append ? 'append' : 'prepend';
|
|
elemsToAppend.forEach(details => {
|
|
const {element, message} = details;
|
|
const monthContainer = this.getMonthContainerByTimestamp(this.groupByMonth ? message.date : 0, inputFilter);
|
|
element.classList.add('search-super-item');
|
|
element.dataset.mid = '' + message.mid;
|
|
element.dataset.peerId = '' + message.peerId;
|
|
monthContainer.items[method](element);
|
|
|
|
if(this.selection.isSelecting) {
|
|
this.selection.toggleElementCheckbox(element, true);
|
|
}
|
|
});
|
|
}
|
|
|
|
//if(type !== 'inputMessagesFilterEmpty') {
|
|
this.afterPerforming(inputFilter === 'inputMessagesFilterEmpty' ? 1 : messages.length, sharedMediaDiv);
|
|
//}
|
|
}
|
|
|
|
private afterPerforming(length: number, contentTab: HTMLElement) {
|
|
if(contentTab) {
|
|
const parent = contentTab.parentElement;
|
|
Array.from(parent.children).slice(1).forEach(child => {
|
|
child.remove();
|
|
});
|
|
|
|
//this.contentContainer.classList.add('loaded');
|
|
|
|
if(!length && !contentTab.childElementCount) {
|
|
const div = document.createElement('div');
|
|
div.innerText = 'Nothing interesting here yet...';
|
|
div.classList.add('position-center', 'text-center', 'content-empty', 'no-select');
|
|
|
|
parent.append(div);
|
|
}
|
|
}
|
|
}
|
|
|
|
private loadChats() {
|
|
const renderedPeerIds: Set<PeerId> = new Set();
|
|
const middleware = this.middleware.get();
|
|
|
|
for(let i in this.searchGroups) {
|
|
const group = this.searchGroups[i as SearchGroupType];
|
|
this.tabs.inputMessagesFilterEmpty.append(group.container);
|
|
group.clear();
|
|
}
|
|
|
|
const query = this.searchContext.query;
|
|
if(query) {
|
|
const setResults = (results: PeerId[], group: SearchGroup, showMembersCount = false) => {
|
|
results.forEach((peerId) => {
|
|
if(renderedPeerIds.has(peerId)) {
|
|
return;
|
|
}
|
|
|
|
renderedPeerIds.add(peerId);
|
|
|
|
const peer = appPeersManager.getPeer(peerId);
|
|
|
|
//////////this.log('contacts peer', peer);
|
|
|
|
const {dom} = appDialogsManager.addDialogNew({
|
|
dialog: peerId,
|
|
container: group.list,
|
|
drawStatus: false,
|
|
avatarSize: 48,
|
|
autonomous: group.autonomous
|
|
});
|
|
|
|
if(showMembersCount && (peer.participants_count || peer.participants)) {
|
|
const regExp = new RegExp(`(${escapeRegExp(query)}|${escapeRegExp(cleanSearchText(query))})`, 'gi');
|
|
dom.titleSpan.innerHTML = dom.titleSpan.innerHTML.replace(regExp, '<i>$1</i>');
|
|
dom.lastMessageSpan.append(appProfileManager.getChatMembersString(peerId.toChatId()));
|
|
} else if(peerId === rootScope.myId) {
|
|
dom.lastMessageSpan.append(i18n('Presence.YourChat'));
|
|
} else {
|
|
let username = appPeersManager.getPeerUsername(peerId);
|
|
if(!username) {
|
|
const user = appUsersManager.getUser(peerId);
|
|
if(user && user.phone) {
|
|
username = '+' + formatPhoneNumber(user.phone).formatted;
|
|
}
|
|
} else {
|
|
username = '@' + username;
|
|
}
|
|
|
|
dom.lastMessageSpan.innerHTML = '<i>' + username + '</i>';
|
|
}
|
|
});
|
|
|
|
group.toggle();
|
|
};
|
|
|
|
const onLoad = <T>(arg: T) => {
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
//this.loadedContacts = true;
|
|
|
|
return arg;
|
|
};
|
|
|
|
return Promise.all([
|
|
appUsersManager.getContactsPeerIds(query, true)
|
|
.then(onLoad)
|
|
.then((contacts) => {
|
|
if(contacts) {
|
|
setResults(contacts, this.searchGroups.contacts, true);
|
|
}
|
|
}),
|
|
|
|
appUsersManager.searchContacts(query, 20)
|
|
.then(onLoad)
|
|
.then((contacts) => {
|
|
if(contacts) {
|
|
setResults(contacts.my_results, this.searchGroups.contacts, true);
|
|
setResults(contacts.results/* .concat(contacts.results, contacts.results, contacts.results) */, this.searchGroups.globalContacts);
|
|
|
|
this.searchGroups.globalContacts.container.classList.add('is-short');
|
|
|
|
if(this.searchGroups.globalContacts.nameEl.lastElementChild !== this.searchGroups.globalContacts.nameEl.firstElementChild) {
|
|
this.searchGroups.globalContacts.nameEl.lastElementChild.remove();
|
|
}
|
|
|
|
if(this.searchGroups.globalContacts.list.childElementCount > 3) {
|
|
const showMore = document.createElement('div');
|
|
showMore.classList.add('search-group__show-more');
|
|
const intlElement = new I18n.IntlElement({
|
|
key: 'Separator.ShowMore'
|
|
});
|
|
showMore.append(intlElement.element);
|
|
this.searchGroups.globalContacts.nameEl.append(showMore);
|
|
showMore.addEventListener('click', () => {
|
|
const isShort = this.searchGroups.globalContacts.container.classList.toggle('is-short');
|
|
intlElement.key = isShort ? 'Separator.ShowMore' : 'Separator.ShowLess';
|
|
intlElement.update();
|
|
});
|
|
}
|
|
}
|
|
}),
|
|
|
|
appMessagesManager.getConversations(query, 0, 20, 0).promise
|
|
.then(onLoad)
|
|
.then(value => {
|
|
if(value) {
|
|
setResults(value.dialogs.map(d => d.peerId), this.searchGroups.contacts, true);
|
|
}
|
|
})
|
|
]);
|
|
} else if(!this.searchContext.peerId && !this.searchContext.minDate) {
|
|
const renderRecentSearch = (setActive = true) => {
|
|
return appStateManager.getState().then(state => {
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
this.searchGroups.recent.list.innerHTML = '';
|
|
|
|
state.recentSearch.slice(0, 20).forEach(peerId => {
|
|
let {dialog, dom} = appDialogsManager.addDialogNew({
|
|
dialog: peerId,
|
|
container: this.searchGroups.recent.list,
|
|
drawStatus: false,
|
|
meAsSaved: true,
|
|
avatarSize: 48,
|
|
autonomous: true
|
|
});
|
|
|
|
dom.lastMessageSpan.append(peerId.isUser() ? appUsersManager.getUserStatusString(peerId) : appProfileManager.getChatMembersString(peerId.toChatId()));
|
|
});
|
|
|
|
if(!state.recentSearch.length) {
|
|
this.searchGroups.recent.clear();
|
|
} else if(setActive) {
|
|
this.searchGroups.recent.setActive();
|
|
}
|
|
});
|
|
};
|
|
|
|
return Promise.all([
|
|
appUsersManager.getTopPeers('correspondents').then(peers => {
|
|
if(!middleware()) return;
|
|
|
|
const idx = peers.findIndex(peer => peer.id === rootScope.myId);
|
|
if(idx !== -1) {
|
|
peers = peers.slice();
|
|
peers.splice(idx, 1);
|
|
}
|
|
//console.log('got top categories:', categories);
|
|
if(peers.length) {
|
|
peers.forEach((peer) => {
|
|
appDialogsManager.addDialogNew({
|
|
dialog: peer.id,
|
|
container: this.searchGroups.people.list,
|
|
drawStatus: false,
|
|
onlyFirstName: true,
|
|
avatarSize: 54,
|
|
autonomous: false
|
|
});
|
|
});
|
|
}
|
|
|
|
this.searchGroups.people.setActive();
|
|
}),
|
|
|
|
renderRecentSearch()
|
|
]);
|
|
} else return Promise.resolve();
|
|
}
|
|
|
|
private loadMembers(mediaTab: SearchSuperMediaTab) {
|
|
const id = this.searchContext.peerId.toChatId();
|
|
const middleware = this.middleware.get();
|
|
let promise: Promise<void>;
|
|
|
|
const renderParticipants = async(participants: (ChatParticipant | ChannelParticipant)[]) => {
|
|
if(this.loadMutex) {
|
|
await this.loadMutex;
|
|
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if(!this.membersList) {
|
|
this.membersList = new SortedUserList({lazyLoadQueue: this.lazyLoadQueue, rippleEnabled: false});
|
|
this.membersList.list.addEventListener('click', (e) => {
|
|
const li = findUpTag(e.target, 'LI');
|
|
if(!li) {
|
|
return;
|
|
}
|
|
|
|
const peerId = li.dataset.peerId.toPeerId();
|
|
let promise: Promise<any> = Promise.resolve();
|
|
if(mediaSizes.isMobile) {
|
|
promise = appSidebarRight.toggleSidebar(false);
|
|
}
|
|
|
|
promise.then(() => {
|
|
appImManager.setInnerPeer({peerId});
|
|
});
|
|
});
|
|
mediaTab.contentTab.append(this.membersList.list);
|
|
this.afterPerforming(1, mediaTab.contentTab);
|
|
}
|
|
|
|
participants.forEach(participant => {
|
|
const peerId = appChatsManager.getParticipantPeerId(participant);
|
|
if(peerId.isAnyChat()) {
|
|
return;
|
|
}
|
|
|
|
const user = appUsersManager.getUser(peerId);
|
|
if(user.pFlags.deleted) {
|
|
return;
|
|
}
|
|
|
|
this.membersList.add(peerId);
|
|
});
|
|
};
|
|
|
|
if(appChatsManager.isChannel(id)) {
|
|
const LOAD_COUNT = !this.membersList ? 50 : 200;
|
|
promise = appProfileManager.getChannelParticipants(id, undefined, LOAD_COUNT, this.nextRates[mediaTab.inputFilter]).then(participants => {
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
let list = mediaTab.contentTab.firstElementChild as HTMLUListElement;
|
|
this.nextRates[mediaTab.inputFilter] = (list ? list.childElementCount : 0) + participants.participants.length;
|
|
|
|
if(participants.participants.length < LOAD_COUNT) {
|
|
this.loaded[mediaTab.inputFilter] = true;
|
|
}
|
|
|
|
return renderParticipants(participants.participants);
|
|
});
|
|
} else {
|
|
promise = (appProfileManager.getChatFull(id) as Promise<ChatFull.chatFull>).then(chatFull => {
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
//console.log('anymore', chatFull);
|
|
this.loaded[mediaTab.inputFilter] = true;
|
|
const participants = chatFull.participants;
|
|
if(participants._ === 'chatParticipantsForbidden') {
|
|
return;
|
|
}
|
|
|
|
return renderParticipants(participants.participants);
|
|
});
|
|
}
|
|
|
|
return this.loadPromises[mediaTab.inputFilter] = promise.finally(() => {
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
this.loadPromises[mediaTab.inputFilter] = null;
|
|
});
|
|
}
|
|
|
|
private loadType(mediaTab: SearchSuperMediaTab, justLoad: boolean, loadCount: number, middleware: () => boolean) {
|
|
const type = mediaTab.inputFilter;
|
|
|
|
if(this.loadPromises[type]) {
|
|
return this.loadPromises[type];
|
|
}
|
|
|
|
if(mediaTab.type === 'members') {
|
|
return this.loadMembers(mediaTab);
|
|
}
|
|
|
|
const history = this.historyStorage[type] ?? (this.historyStorage[type] = []);
|
|
|
|
if(type === 'inputMessagesFilterEmpty' && !history.length) {
|
|
if(!this.loadedChats) {
|
|
this.loadChats();
|
|
this.loadedChats = true;
|
|
}
|
|
|
|
if(!this.searchContext.query.trim() && !this.searchContext.peerId && !this.searchContext.minDate) {
|
|
this.loaded[type] = true;
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
|
|
const logStr = 'load [' + type + ']: ';
|
|
|
|
// render from cache
|
|
if(history.length && this.usedFromHistory[type] < history.length && !justLoad) {
|
|
let messages: any[] = [];
|
|
let used = Math.max(0, this.usedFromHistory[type]);
|
|
let slicedLength = 0;
|
|
|
|
do {
|
|
let ids = history.slice(used, used + loadCount);
|
|
//this.log(logStr + 'will render from cache', used, history, ids, loadCount);
|
|
used += ids.length;
|
|
slicedLength += ids.length;
|
|
|
|
messages.push(...this.filterMessagesByType(ids.map(m => appMessagesManager.getMessageByPeer(m.peerId, m.mid)), type));
|
|
} while(slicedLength < loadCount && used < history.length);
|
|
|
|
// если перебор
|
|
/* if(slicedLength > loadCount) {
|
|
let diff = messages.length - loadCount;
|
|
messages = messages.slice(0, messages.length - diff);
|
|
used -= diff;
|
|
} */
|
|
|
|
this.usedFromHistory[type] = used;
|
|
//if(messages.length) {
|
|
return this.performSearchResult(messages, mediaTab).finally(() => {
|
|
setTimeout(() => {
|
|
this.scrollable.checkForTriggers();
|
|
}, 0);
|
|
});
|
|
//}
|
|
|
|
return Promise.resolve();
|
|
}
|
|
|
|
let maxId = history.length ? history[history.length - 1].mid : 0;
|
|
|
|
//this.log(logStr + 'search house of glass pre', type, maxId);
|
|
|
|
//let loadCount = history.length ? 50 : 15;
|
|
return this.loadPromises[type] = appMessagesManager.getSearch({
|
|
...this.searchContext,
|
|
inputFilter: {_: type},
|
|
maxId,
|
|
limit: loadCount,
|
|
nextRate: this.nextRates[type] ?? (this.nextRates[type] = 0)
|
|
}).then(value => {
|
|
history.push(...value.history.map(m => ({mid: m.mid, peerId: m.peerId})));
|
|
|
|
this.log(logStr + 'search house of glass', type, value);
|
|
|
|
if(!middleware()) {
|
|
//this.log.warn('peer changed');
|
|
return;
|
|
}
|
|
|
|
// ! Фикс случая, когда не загружаются документы при открытой панели разработчиков (происходит из-за того, что не совпадают критерии отбора документов в getSearch)
|
|
if(value.history.length < loadCount || (this.searchContext.folderId !== undefined && !value.next_rate) || value.history.length === value.count) {
|
|
//if((value.count || history.length === value.count) && history.length >= value.count) {
|
|
//this.log(logStr + 'loaded all media', value, loadCount);
|
|
this.loaded[type] = true;
|
|
}
|
|
|
|
this.nextRates[type] = value.next_rate;
|
|
|
|
if(justLoad) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
this.usedFromHistory[type] = history.length;
|
|
|
|
if(!this.loaded[type]) {
|
|
(this.loadPromises[type] || Promise.resolve()).then(() => {
|
|
setTimeout(() => {
|
|
if(!middleware()) return;
|
|
//this.log('will preload more');
|
|
if(this.mediaTab === mediaTab) {
|
|
const promise = this.load(true, true);
|
|
if(promise) {
|
|
promise.then(() => {
|
|
if(!middleware()) return;
|
|
//this.log('preloaded more');
|
|
setTimeout(() => {
|
|
this.scrollable.checkForTriggers();
|
|
}, 0);
|
|
});
|
|
}
|
|
}
|
|
}, 0);
|
|
});
|
|
}
|
|
|
|
//if(value.history.length) {
|
|
return this.performSearchResult(this.filterMessagesByType(value.history, type), mediaTab);
|
|
//}
|
|
}).catch(err => {
|
|
this.log.error('load error:', err);
|
|
}).finally(() => {
|
|
this.loadPromises[type] = null;
|
|
});
|
|
}
|
|
|
|
public async load(single = false, justLoad = false) {
|
|
// if(testScroll/* || 1 === 1 */) {
|
|
// return;
|
|
// }
|
|
|
|
//return;
|
|
|
|
const peerId = this.searchContext.peerId;
|
|
this.log('load', single, peerId, this.loadPromises);
|
|
const middleware = this.middleware.get();
|
|
|
|
if(this.firstLoad) {
|
|
if(this.hideEmptyTabs) {
|
|
const mediaTabs = this.mediaTabs.filter(mediaTab => mediaTab.inputFilter !== 'inputMessagesFilterEmpty')
|
|
const filters = mediaTabs.map(mediaTab => ({_: mediaTab.inputFilter}));
|
|
|
|
const counters = await appMessagesManager.getSearchCounters(peerId, filters);
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
|
|
if(this.loadMutex) {
|
|
await this.loadMutex;
|
|
|
|
if(!middleware()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
let firstMediaTab: SearchSuperMediaTab;
|
|
let count = 0;
|
|
mediaTabs.forEach(mediaTab => {
|
|
const counter = counters.find(c => c.filter._ === mediaTab.inputFilter);
|
|
|
|
mediaTab.menuTab.classList.toggle('hide', !counter.count);
|
|
mediaTab.menuTab.classList.remove('active');
|
|
//mediaTab.contentTab.classList.toggle('hide', !counter.count);
|
|
|
|
if(counter.count && firstMediaTab === undefined) {
|
|
firstMediaTab = mediaTab;
|
|
}
|
|
|
|
if(counter.count) ++count;
|
|
});
|
|
|
|
const membersTab = this.mediaTabsMap.get('members');
|
|
const canViewMembers = this.canViewMembers();
|
|
membersTab.menuTab.classList.toggle('hide', !canViewMembers);
|
|
|
|
if(canViewMembers) {
|
|
firstMediaTab = membersTab;
|
|
}
|
|
|
|
this.container.classList.toggle('hide', !firstMediaTab);
|
|
this.container.parentElement.classList.toggle('search-empty', !firstMediaTab);
|
|
if(firstMediaTab) {
|
|
this.skipScroll = true;
|
|
this.selectTab(this.mediaTabs.indexOf(firstMediaTab), false);
|
|
firstMediaTab.menuTab.classList.add('active');
|
|
|
|
this.navScrollableContainer.classList.toggle('hide', count <= 1);
|
|
}
|
|
}
|
|
|
|
this.firstLoad = false;
|
|
}
|
|
|
|
let toLoad = single ? [this.mediaTab] : this.mediaTabs.filter(t => t !== this.mediaTab);
|
|
toLoad = toLoad.filter(mediaTab => {
|
|
const inputFilter = mediaTab.inputFilter;
|
|
return !this.loaded[inputFilter] || (this.historyStorage[inputFilter] && this.usedFromHistory[inputFilter] < this.historyStorage[inputFilter].length);
|
|
});
|
|
|
|
if(peerId.isUser()) {
|
|
toLoad.findAndSplice(mediaTab => mediaTab.type === 'members');
|
|
}
|
|
|
|
if(!toLoad.length) {
|
|
return;
|
|
}
|
|
|
|
const loadCount = justLoad ? 50 : Math.round((windowSize.height / 130 | 0) * 3 * 1.25); // that's good for all types
|
|
|
|
const promises: Promise<any>[] = toLoad.map(mediaTab => {
|
|
return this.loadType(mediaTab, justLoad, loadCount, middleware)
|
|
});
|
|
|
|
return Promise.all(promises).catch(err => {
|
|
this.log.error('Load error all promises:', err);
|
|
});
|
|
}
|
|
|
|
public getMonthContainerByTimestamp(timestamp: number, type: SearchSuperType) {
|
|
const date = new Date(timestamp * 1000);
|
|
date.setHours(0, 0, 0);
|
|
date.setDate(1);
|
|
const dateTimestamp = date.getTime();
|
|
const containers = this.monthContainers[type] ?? (this.monthContainers[type] = {});
|
|
if(!(dateTimestamp in containers)) {
|
|
const container = document.createElement('div');
|
|
container.className = 'search-super-month';
|
|
|
|
const name = document.createElement('div');
|
|
name.classList.add('search-super-month-name');
|
|
|
|
const options: Intl.DateTimeFormatOptions = {
|
|
month: 'long'
|
|
};
|
|
|
|
if(date.getFullYear() !== new Date().getFullYear()) {
|
|
options.year = 'numeric';
|
|
}
|
|
|
|
const dateElement = new I18n.IntlDateElement({
|
|
date,
|
|
options
|
|
}).element;
|
|
name.append(dateElement);
|
|
|
|
container.append(name);
|
|
|
|
const items = document.createElement('div');
|
|
items.classList.add('search-super-month-items');
|
|
|
|
container.append(name, items);
|
|
|
|
const haveTimestamps = getObjectKeysAndSort(containers, 'desc');
|
|
let i = 0;
|
|
for(; i < haveTimestamps.length; ++i) {
|
|
const t = haveTimestamps[i];
|
|
if(dateTimestamp > t) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
containers[dateTimestamp] = {container, items};
|
|
positionElementByIndex(container, this.tabs[type], i);
|
|
}
|
|
|
|
return containers[dateTimestamp];
|
|
}
|
|
|
|
public canViewMembers() {
|
|
return this.searchContext.peerId.isAnyChat() && !appChatsManager.isBroadcast(this.searchContext.peerId.toChatId()) && appChatsManager.hasRights(this.searchContext.peerId.toChatId(), 'view_participants');
|
|
}
|
|
|
|
public cleanup() {
|
|
this.loadPromises = {};
|
|
this.loaded = {};
|
|
this.loadedChats = false;
|
|
this.nextRates = {};
|
|
this.firstLoad = true;
|
|
|
|
this.lazyLoadQueue.clear();
|
|
|
|
this.mediaTabs.forEach(mediaTab => {
|
|
this.usedFromHistory[mediaTab.inputFilter] = -1;
|
|
});
|
|
|
|
if(this.selection.isSelecting) {
|
|
this.selection.cancelSelection();
|
|
}
|
|
|
|
// * must go to first tab (это костыль)
|
|
/* const membersTab = this.mediaTabsMap.get('members');
|
|
if(membersTab) {
|
|
const tab = this.canViewMembers() ? membersTab : this.mediaTabs[this.mediaTabs.indexOf(membersTab) + 1];
|
|
this.mediaTab = tab;
|
|
} */
|
|
|
|
this.middleware.clean();
|
|
this.cleanScrollPositions();
|
|
this.membersList = undefined;
|
|
}
|
|
|
|
public cleanScrollPositions() {
|
|
this.mediaTabs.forEach(mediaTab => {
|
|
mediaTab.scroll = undefined;
|
|
});
|
|
}
|
|
|
|
public cleanupHTML(goFirst = false) {
|
|
if(this.urlsToRevoke.length) {
|
|
this.urlsToRevoke.forEach(url => {
|
|
URL.revokeObjectURL(url);
|
|
});
|
|
this.urlsToRevoke.length = 0;
|
|
}
|
|
|
|
this.mediaTabs.forEach((tab) => {
|
|
tab.contentTab.innerHTML = '';
|
|
|
|
if(this.hideEmptyTabs) {
|
|
//tab.menuTab.classList.add('hide');
|
|
this.container.classList.add('hide');
|
|
this.container.parentElement.classList.add('search-empty');
|
|
}
|
|
|
|
if(tab.type === 'chats') {
|
|
return;
|
|
}
|
|
|
|
if(!this.historyStorage[tab.inputFilter]) {
|
|
const parent = tab.contentTab.parentElement;
|
|
//if(!testScroll) {
|
|
if(!parent.querySelector('.preloader')) {
|
|
putPreloader(parent, true);
|
|
}
|
|
//}
|
|
|
|
const empty = parent.querySelector('.content-empty');
|
|
if(empty) {
|
|
empty.remove();
|
|
}
|
|
}
|
|
});
|
|
|
|
/* if(goFirst) {
|
|
const membersTab = this.mediaTabsMap.get('members');
|
|
if(membersTab) {
|
|
let idx = this.canViewMembers() ? 0 : 1;
|
|
membersTab.menuTab.classList.toggle('hide', idx !== 0);
|
|
|
|
this.selectTab(idx, false);
|
|
} else {
|
|
this.selectTab(0, false);
|
|
}
|
|
} */
|
|
|
|
this.monthContainers = {};
|
|
this.searchGroupMedia.clear();
|
|
this.scrollable.scrollTop = 0;
|
|
|
|
/* if(testScroll) {
|
|
for(let i = 0; i < 1500; ++i) {
|
|
let div = document.createElement('div');
|
|
div.insertAdjacentHTML('beforeend', `<img class="media-image" src="assets/img/camomile.jpg">`);
|
|
div.classList.add('grid-item');
|
|
div.dataset.id = '' + (i / 3 | 0);
|
|
//div.innerText = '' + (i / 3 | 0);
|
|
this.tabs.inputMessagesFilterPhotoVideo.append(div);
|
|
}
|
|
} */
|
|
}
|
|
|
|
private copySearchContext(newInputFilter: MyInputMessagesFilter) {
|
|
const context = copy(this.searchContext);
|
|
context.inputFilter = {_: newInputFilter};
|
|
context.nextRate = this.nextRates[newInputFilter];
|
|
return context;
|
|
}
|
|
|
|
public setQuery({peerId, query, threadId, historyStorage, folderId, minDate, maxDate}: {
|
|
peerId: PeerId,
|
|
query?: string,
|
|
threadId?: number,
|
|
historyStorage?: AppSearchSuper['historyStorage'],
|
|
folderId?: number,
|
|
minDate?: number,
|
|
maxDate?: number
|
|
}) {
|
|
this.searchContext = {
|
|
peerId,
|
|
query: query || '',
|
|
inputFilter: {_: this.mediaTab.inputFilter},
|
|
threadId,
|
|
folderId,
|
|
minDate,
|
|
maxDate
|
|
};
|
|
|
|
this.historyStorage = historyStorage ?? {};
|
|
|
|
this.cleanup();
|
|
}
|
|
}
|