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.
 
 
 
 
 

34 lines
1.0 KiB

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import { addCancelButton } from "./popups";
import PopupPeer, { PopupPeerOptions } from "./popups/peer";
// type PopupConfirmationOptions = Pick<PopupPeerOptions, 'titleLangKey'>;
type PopupConfirmationOptions = PopupPeerOptions & {
button: PopupPeerOptions['buttons'][0],
checkbox?: PopupPeerOptions['checkboxes'][0]
};
export default function confirmationPopup(options: PopupConfirmationOptions) {
return new Promise<boolean | void>((resolve, reject) => {
const {button, checkbox} = options;
button.callback = (set) => {
resolve(set ? !!set.size : undefined);
};
const buttons = addCancelButton([button]);
const cancelButton = buttons.find(button => button.isCancel);
cancelButton.callback = () => {
reject();
};
options.buttons = buttons;
options.checkboxes = checkbox && [checkbox];
new PopupPeer('popup-confirmation', options).show();
});
}