tweb/src/components/dialogsContextMenu.ts
Eduard Kuzmenko 6a3a923310 Some fixes
2022-09-25 21:49:33 +04:00

307 lines
11 KiB
TypeScript

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import appDialogsManager, {DIALOG_LIST_ELEMENT_TAG} from '../lib/appManagers/appDialogsManager';
import type {Dialog} from '../lib/appManagers/appMessagesManager';
import rootScope from '../lib/rootScope';
import ButtonMenu, {ButtonMenuItemOptions} from './buttonMenu';
import PopupDeleteDialog from './popups/deleteDialog';
import {i18n, LangPackKey, _i18n} from '../lib/langPack';
import findUpTag from '../helpers/dom/findUpTag';
import PopupPeer, {PopupPeerButton} from './popups/peer';
import AppChatFoldersTab from './sidebarLeft/tabs/chatFolders';
import appSidebarLeft from './sidebarLeft';
import {toastNew} from './toast';
import PopupMute from './popups/mute';
import {AppManagers} from '../lib/appManagers/managers';
import positionMenu from '../helpers/positionMenu';
import contextMenuController from '../helpers/contextMenuController';
import type {ApiLimitType} from '../lib/mtproto/api_methods';
export default class DialogsContextMenu {
private element: HTMLElement;
private buttons: (ButtonMenuItemOptions & {verify: () => boolean | Promise<boolean>})[];
private selectedId: PeerId;
private filterId: number;
private dialog: Dialog;
constructor(private managers: AppManagers) {
}
private init() {
this.buttons = [{
icon: 'unread',
text: 'MarkAsUnread',
onClick: this.onUnreadClick,
verify: async() => !(await this.managers.appMessagesManager.isDialogUnread(this.dialog))
}, {
icon: 'readchats',
text: 'MarkAsRead',
onClick: this.onUnreadClick,
verify: () => this.managers.appMessagesManager.isDialogUnread(this.dialog)
}, {
icon: 'pin',
text: 'ChatList.Context.Pin',
onClick: this.onPinClick,
verify: async() => {
const isPinned = this.filterId > 1 ?
(await this.managers.appMessagesManager.getFilter(this.filterId)).pinnedPeerIds.includes(this.dialog.peerId) :
!!this.dialog.pFlags?.pinned;
return !isPinned;
}
}, {
icon: 'unpin',
text: 'ChatList.Context.Unpin',
onClick: this.onPinClick,
verify: async() => {
const isPinned = this.filterId > 1 ?
(await this.managers.appMessagesManager.getFilter(this.filterId)).pinnedPeerIds.includes(this.dialog.peerId) :
!!this.dialog.pFlags?.pinned;
return isPinned;
}
}, {
icon: 'mute',
text: 'ChatList.Context.Mute',
onClick: this.onMuteClick,
verify: async() => {
return this.selectedId !== rootScope.myId && !(await this.managers.appNotificationsManager.isPeerLocalMuted(this.dialog.peerId));
}
}, {
icon: 'unmute',
text: 'ChatList.Context.Unmute',
onClick: this.onUnmuteClick,
verify: async() => {
return this.selectedId !== rootScope.myId && (await this.managers.appNotificationsManager.isPeerLocalMuted(this.dialog.peerId));
}
}, {
icon: 'archive',
text: 'Archive',
onClick: this.onArchiveClick,
verify: () => this.filterId === 0 && this.selectedId !== rootScope.myId
}, {
icon: 'unarchive',
text: 'Unarchive',
onClick: this.onArchiveClick,
verify: () => this.filterId === 1 && this.selectedId !== rootScope.myId
}, {
icon: 'delete danger',
text: 'Delete',
onClick: this.onDeleteClick,
verify: () => true
}];
this.element = ButtonMenu(this.buttons);
this.element.id = 'dialogs-contextmenu';
this.element.classList.add('contextmenu');
document.getElementById('page-chats').append(this.element);
}
private onArchiveClick = async() => {
const dialog = await this.managers.appMessagesManager.getDialogOnly(this.selectedId);
if(dialog) {
this.managers.appMessagesManager.editPeerFolders([dialog.peerId], +!dialog.folder_id);
}
};
private onPinClick = () => {
this.managers.appMessagesManager.toggleDialogPin(this.selectedId, this.filterId).catch(async(err: ApiError) => {
if(err.type === 'PINNED_DIALOGS_TOO_MUCH') {
if(this.filterId >= 1) {
toastNew({langPackKey: 'PinFolderLimitReached'});
} else {
// const a: {[type in ApiLimitType]?: {
// title: LangPackKey,
// description: LangPackKey,
// descriptionPremium: LangPackKey,
// descriptionLocked: LangPackKey,
// icon: string
// }} = {
// pin: {
// title: 'LimitReached',
// description: 'LimitReachedPinDialogs',
// descriptionPremium: 'LimitReachedPinDialogsPremium',
// descriptionLocked: 'LimitReachedPinDialogsLocked',
// icon: 'limit_pin'
// }
// };
// class P extends PopupPeer {
// constructor(options: {
// isPremium: boolean,
// limit: number,
// limitPremium: number
// }, _a: typeof a[keyof typeof a]) {
// super('popup-limit', {
// buttons: options.isPremium === undefined ? [{
// langKey: 'LimitReached.Ok',
// isCancel: true
// }] : (options.isPremium ? [{
// langKey: 'OK',
// isCancel: true
// }] : [{
// langKey: 'IncreaseLimit',
// callback: () => {
// }
// }, {
// langKey: 'Cancel',
// isCancel: true
// }]),
// descriptionLangKey: options.isPremium === undefined ? _a.descriptionLocked : (options.isPremium ? _a.descriptionPremium : _a.description),
// descriptionLangArgs: options.isPremium ? [options.limitPremium] : [options.limit, options.limitPremium],
// titleLangKey: _a.title
// });
// const isLocked = options.isPremium === undefined;
// if(isLocked) {
// this.element.classList.add('is-locked');
// }
// const limitContainer = document.createElement('div');
// limitContainer.classList.add('popup-limit-line');
// const hint = document.createElement('div');
// hint.classList.add('popup-limit-hint');
// const i = document.createElement('span');
// i.classList.add('popup-limit-hint-icon', 'tgico-' + _a.icon);
// hint.append(i, '' + (options.isPremium ? options.limitPremium : options.limit));
// limitContainer.append(hint);
// if(!isLocked) {
// const limit = document.createElement('div');
// limit.classList.add('limit-line');
// const free = document.createElement('div');
// free.classList.add('limit-line-free');
// const premium = document.createElement('div');
// premium.classList.add('limit-line-premium');
// limit.append(free, premium);
// _i18n(free, 'LimitFree');
// premium.append(i18n('LimitPremium'), '' + options.limitPremium);
// limitContainer.append(limit);
// }
// this.container.insertBefore(limitContainer, this.description);
// if(options.isPremium === false) {
// this.buttons.pop().element.remove();
// }
// }
// }
// async function showLimitPopup(type: keyof typeof a) {
// const _a = a[type];
// const [appConfig, limit, limitPremium] = await Promise.all([
// rootScope.managers.apiManager.getAppConfig(),
// ...[false, true].map((v) => rootScope.managers.apiManager.getLimit(type, v))
// ]);
// const isLocked = appConfig.premium_purchase_blocked;
// new P({
// isPremium: isLocked ? undefined : rootScope.premium,
// limit,
// limitPremium
// }, _a).show();
// }
// showLimitPopup('pin');
const config = await this.managers.apiManager.getConfig();
new PopupPeer('pinned-dialogs-too-much', {
buttons: [{
langKey: 'OK',
isCancel: true
}, {
langKey: 'FiltersSetupPinAlert',
callback: () => {
appSidebarLeft.createTab(AppChatFoldersTab).open();
}
}],
descriptionLangKey: 'PinToTopLimitReached2',
descriptionLangArgs: [i18n('Chats', [config.pinned_dialogs_count_max])]
}).show();
}
}
});
};
private onUnmuteClick = () => {
this.managers.appMessagesManager.togglePeerMute(this.selectedId, false);
};
private onMuteClick = () => {
new PopupMute(this.selectedId);
};
private onUnreadClick = async() => {
const selectedId = this.selectedId;
const dialog = await this.managers.appMessagesManager.getDialogOnly(selectedId);
if(!dialog) return;
if(dialog.unread_count) {
this.managers.appMessagesManager.readHistory(selectedId, dialog.top_message);
this.managers.appMessagesManager.markDialogUnread(selectedId, true);
} else {
this.managers.appMessagesManager.markDialogUnread(selectedId);
}
};
private onDeleteClick = () => {
new PopupDeleteDialog(this.selectedId/* , 'delete' */);
};
onContextMenu = (e: MouseEvent | Touch) => {
if(this.init) {
this.init();
this.init = null;
}
let li: HTMLElement = null;
try {
li = findUpTag(e.target, DIALOG_LIST_ELEMENT_TAG);
} catch(e) {}
if(!li) return;
if(e instanceof MouseEvent) e.preventDefault();
if(this.element.classList.contains('active')) {
return false;
}
if(e instanceof MouseEvent) e.cancelBubble = true;
const r = async() => {
this.filterId = appDialogsManager.filterId;
this.selectedId = li.dataset.peerId.toPeerId();
this.dialog = await this.managers.appMessagesManager.getDialogOnly(this.selectedId);
await Promise.all(this.buttons.map(async(button) => {
const good = await button.verify();
button.element.classList.toggle('hide', !good);
}));
// delete button
this.buttons[this.buttons.length - 1].element.lastChild.replaceWith(i18n(await this.managers.appPeersManager.getDeleteButtonText(this.selectedId)));
li.classList.add('menu-open');
positionMenu(e, this.element);
contextMenuController.openBtnMenu(this.element, () => {
li.classList.remove('menu-open');
this.selectedId = this.dialog = this.filterId = undefined;
});
};
r();
};
}