mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
97 lines
2 KiB
JavaScript
97 lines
2 KiB
JavaScript
import { Scope } from 'Common/Enums';
|
|
import { i18n } from 'Common/Translator';
|
|
import { isFunction } from 'Common/Utils';
|
|
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
class AskPopupView extends AbstractViewPopup {
|
|
constructor() {
|
|
super('Ask');
|
|
|
|
this.addObservables({
|
|
askDesc: '',
|
|
yesButton: '',
|
|
noButton: ''
|
|
});
|
|
|
|
this.fYesAction = null;
|
|
this.fNoAction = null;
|
|
|
|
this.bFocusYesOnShow = true;
|
|
this.bDisabeCloseOnEsc = true;
|
|
}
|
|
|
|
clearPopup() {
|
|
this.askDesc('');
|
|
this.yesButton(i18n('POPUPS_ASK/BUTTON_YES'));
|
|
this.noButton(i18n('POPUPS_ASK/BUTTON_NO'));
|
|
|
|
this.fYesAction = null;
|
|
this.fNoAction = null;
|
|
}
|
|
|
|
yesClick() {
|
|
this.cancelCommand();
|
|
|
|
isFunction(this.fYesAction) && this.fYesAction.call(null);
|
|
}
|
|
|
|
noClick() {
|
|
this.cancelCommand();
|
|
|
|
isFunction(this.fNoAction) && this.fNoAction.call(null);
|
|
}
|
|
|
|
/**
|
|
* @param {string} sAskDesc
|
|
* @param {Function=} fYesFunc
|
|
* @param {Function=} fNoFunc
|
|
* @param {string=} sYesButton
|
|
* @param {string=} sNoButton
|
|
* @param {boolean=} bFocusYesOnShow = true
|
|
* @returns {void}
|
|
*/
|
|
onShow(askDesc, fYesFunc = null, fNoFunc = null, yesButton = '', noButton = '', isFocusYesOnShow = true) {
|
|
this.clearPopup();
|
|
|
|
this.fYesAction = fYesFunc || null;
|
|
this.fNoAction = fNoFunc || null;
|
|
|
|
this.askDesc(askDesc || '');
|
|
|
|
if (yesButton) {
|
|
this.yesButton(yesButton);
|
|
}
|
|
|
|
if (noButton) {
|
|
this.noButton(noButton);
|
|
}
|
|
|
|
this.bFocusYesOnShow = !!isFocusYesOnShow;
|
|
}
|
|
|
|
onShowWithDelay() {
|
|
if (this.bFocusYesOnShow) {
|
|
this.querySelector('.buttonYes').focus();
|
|
}
|
|
}
|
|
|
|
onBuild() {
|
|
// shortcuts.add('tab', 'shift', Scope.Ask, () => {
|
|
shortcuts.add('tab,arrowright,arrowleft', '', Scope.Ask, () => {
|
|
let btn = this.querySelector('.buttonYes');
|
|
if (btn.matches(':focus')) {
|
|
btn = this.querySelector('.buttonNo');
|
|
}
|
|
btn.focus();
|
|
return false;
|
|
});
|
|
|
|
shortcuts.add('escape', '', Scope.Ask, () => {
|
|
this.noClick();
|
|
return false;
|
|
});
|
|
}
|
|
}
|
|
|
|
export { AskPopupView, AskPopupView as default };
|