Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

285 lines
9.6 KiB

3 years ago
/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import { SliderSuperTab } from "../../slider";
import AppSelectPeers from "../../appSelectPeers";
import appDialogsManager from "../../../lib/appManagers/appDialogsManager";
import { MyDialogFilter as DialogFilter } from "../../../lib/storages/filters";
import ButtonIcon from "../../buttonIcon";
import CheckboxField from "../../checkboxField";
import Button from "../../button";
import AppEditFolderTab from "./editFolder";
import I18n, { i18n, LangPackKey, _i18n, join } from "../../../lib/langPack";
import { SettingSection } from "..";
import { toast } from "../../toast";
import copy from "../../../helpers/object/copy";
import forEachReverse from "../../../helpers/array/forEachReverse";
import setInnerHTML from "../../../helpers/dom/setInnerHTML";
2 years ago
import wrapEmojiText from "../../../lib/richTextProcessor/wrapEmojiText";
3 years ago
export default class AppIncludedChatsTab extends SliderSuperTab {
private editFolderTab: AppEditFolderTab;
private confirmBtn: HTMLElement;
private selector: AppSelectPeers;
private type: 'included' | 'excluded';
private filter: DialogFilter;
private originalFilter: DialogFilter;
3 years ago
private dialogsByFilters: Map<DialogFilter, Set<PeerId>>;
3 years ago
protected init() {
this.content.remove();
this.container.classList.add('included-chatlist-container');
this.confirmBtn = ButtonIcon('check btn-confirm blue', {noRipple: true});
this.confirmBtn.style.display = 'none';
this.header.append(this.confirmBtn);
this.confirmBtn.addEventListener('click', () => {
const selected = this.selector.getSelected();
//this.filter.pFlags = {};
if(this.type === 'included') {
for(const key in this.filter.pFlags) {
if(key.indexOf('exclude_') === 0) {
continue;
}
// @ts-ignore
delete this.filter.pFlags[key];
}
} else {
for(const key in this.filter.pFlags) {
if(key.indexOf('exclude_') !== 0) {
continue;
}
// @ts-ignore
delete this.filter.pFlags[key];
}
}
3 years ago
const peerIds: PeerId[] = [];
3 years ago
for(const key of selected) {
3 years ago
if(key.isPeerId()) {
peerIds.push(key.toPeerId());
3 years ago
} else {
// @ts-ignore
this.filter.pFlags[key] = true;
}
}
3 years ago
let cmp: (peerId: PeerId) => boolean;
3 years ago
if(this.type === 'included') {
3 years ago
cmp = (peerId) => peerIds.includes(peerId);
3 years ago
} else {
3 years ago
cmp = (peerId) => !peerIds.includes(peerId);
3 years ago
}
3 years ago
forEachReverse(this.filter.pinnedPeerIds, (peerId, idx) => {
if(!cmp(peerId)) {
this.filter.pinnedPeerIds.splice(idx, 1);
this.filter.pinned_peers.splice(idx, 1);
}
});
const other = this.type === 'included' ? 'excludePeerIds' : 'includePeerIds';
const otherLegacy = this.type === 'included' ? 'exclude_peers' : 'include_peers';
forEachReverse(this.filter[other], (peerId, idx) => {
if(peerIds.includes(peerId)) {
this.filter[other].splice(idx, 1);
this.filter[otherLegacy].splice(idx, 1);
}
3 years ago
});
3 years ago
this.filter[this.type === 'included' ? 'includePeerIds' : 'excludePeerIds'] = peerIds;
2 years ago
this.filter[this.type === 'included' ? 'include_peers' : 'exclude_peers'] = peerIds.map(peerId => this.managers.appPeersManager.getInputPeerById(peerId));
3 years ago
//this.filter.pinned_peers = this.filter.pinned_peers.filter(peerId => this.filter.include_peers.includes(peerId));
this.editFolderTab.setFilter(this.filter, false);
this.close();
});
this.dialogsByFilters = new Map();
2 years ago
return this.managers.appMessagesManager.filtersStorage.getDialogFilters().then(filters => {
3 years ago
for(const filter of filters) {
2 years ago
this.dialogsByFilters.set(filter, new Set(this.managers.appMessagesManager.dialogsStorage.getFolderDialogs(filter.id).map(d => d.peerId)));
3 years ago
}
});
}
checkbox(selected?: boolean) {
const checkboxField = new CheckboxField({
round: true
});
if(selected) {
checkboxField.input.checked = selected;
}
return checkboxField.label;
}
3 years ago
renderResults = async(peerIds: PeerId[]) => {
3 years ago
//const other = this.type === 'included' ? this.filter.exclude_peers : this.filter.include_peers;
2 years ago
await this.managers.appUsersManager.getContacts();
3 years ago
peerIds.forEach(peerId => {
//if(other.includes(peerId)) return;
const {dom} = appDialogsManager.addDialogNew({
dialog: peerId,
container: this.selector.scrollable,
drawStatus: false,
rippleEnabled: true,
avatarSize: 46
});
const selected = this.selector.selected.has(peerId);
dom.containerEl.append(this.checkbox(selected));
//if(selected) dom.listEl.classList.add('active');
const foundInFilters: HTMLElement[] = [];
this.dialogsByFilters.forEach((dialogs, filter) => {
if(dialogs.has(peerId)) {
const span = document.createElement('span');
2 years ago
setInnerHTML(span, wrapEmojiText(filter.title));
3 years ago
foundInFilters.push(span);
}
});
const joined = join(foundInFilters, false);
joined.forEach(el => {
dom.lastMessageSpan.append(el);
});
});
};
onOpen() {
if(this.init) {
this.init();
this.init = null;
}
this.confirmBtn.style.display = this.type === 'excluded' ? '' : 'none';
this.setTitle(this.type === 'included' ? 'FilterAlwaysShow' : 'FilterNeverShow');
const filter = this.filter;
const categoriesSection = new SettingSection({
noDelimiter: true,
name: 'FilterChatTypes'
});
categoriesSection.container.classList.add('folder-categories');
let details: {[flag: string]: {ico: string, text: LangPackKey}};
if(this.type === 'excluded') {
details = {
exclude_muted: {ico: 'mute', text: 'ChatList.Filter.MutedChats'},
exclude_archived: {ico: 'archive', text: 'ChatList.Filter.Archive'},
exclude_read: {ico: 'readchats', text: 'ChatList.Filter.ReadChats'}
};
} else {
details = {
contacts: {ico: 'newprivate', text: 'ChatList.Filter.Contacts'},
non_contacts: {ico: 'noncontacts', text: 'ChatList.Filter.NonContacts'},
groups: {ico: 'group', text: 'ChatList.Filter.Groups'},
broadcasts: {ico: 'newchannel', text: 'ChatList.Filter.Channels'},
bots: {ico: 'bots', text: 'ChatList.Filter.Bots'}
};
}
const f = document.createDocumentFragment();
for(const key in details) {
const button = Button('btn-primary btn-transparent folder-category-button', {icon: details[key].ico, text: details[key].text});
button.dataset.peerId = key;
button.append(this.checkbox());
f.append(button);
}
categoriesSection.content.append(f);
/////////////////
3 years ago
const selectedPeers = (this.type === 'included' ? filter.includePeerIds : filter.excludePeerIds).slice();
3 years ago
this.selector = new AppSelectPeers({
appendTo: this.container,
onChange: this.onSelectChange,
peerType: ['dialogs'],
renderResultsFunc: this.renderResults,
placeholder: 'Search',
2 years ago
sectionNameLangPackKey: 'FilterChats',
managers: this.managers
3 years ago
});
this.selector.selected = new Set(selectedPeers);
let addedInitial = false;
const _add = this.selector.add.bind(this.selector);
this.selector.add = (peerId, title, scroll) => {
if(this.selector.selected.size >= 100 && addedInitial && !details[peerId]) {
const el: HTMLInputElement = this.selector.list.querySelector(`[data-peer-id="${peerId}"] [type="checkbox"]`);
if(el) {
setTimeout(() => {
el.checked = false;
}, 0);
}
const str = I18n.format(this.type === 'excluded' ? 'ChatList.Filter.Exclude.LimitReached': 'ChatList.Filter.Include.LimitReached', true);
toast(str);
return;
}
const div = _add(peerId, details[peerId] ? i18n(details[peerId].text) : undefined, scroll);
if(details[peerId]) {
div.querySelector('avatar-element').classList.add('tgico-' + details[peerId].ico);
}
return div;
};
this.selector.scrollable.container.append(categoriesSection.container, this.selector.scrollable.container.lastElementChild);
3 years ago
this.selector.addInitial(selectedPeers);
addedInitial = true;
for(const flag in filter.pFlags) {
// @ts-ignore
if(details.hasOwnProperty(flag) && !!filter.pFlags[flag]) {
(categoriesSection.content.querySelector(`[data-peer-id="${flag}"]`) as HTMLElement).click();
}
}
}
onSelectChange = (length: number) => {
//const changed = !deepEqual(this.filter, this.originalFilter);
if(this.type === 'included') {
this.confirmBtn.style.display = length ? '' : 'none';
}
};
onCloseAfterTimeout() {
if(this.selector) {
this.selector.container.remove();
this.selector = null;
}
return super.onCloseAfterTimeout();
}
/**
* Do not ignore arguments!
*/
public open(filter?: DialogFilter, type?: 'included' | 'excluded', editFolderTab?: AppIncludedChatsTab['editFolderTab']) {
this.originalFilter = filter;
this.filter = copy(this.originalFilter);
this.type = type;
this.editFolderTab = editFolderTab;
return super.open();
}
}