snappymail/dev/View/Popup/Ask.js

98 lines
2 KiB
JavaScript
Raw Normal View History

import { Scope } from 'Common/Enums';
2019-07-05 03:19:24 +08:00
import { i18n } from 'Common/Translator';
2021-03-24 21:22:25 +08:00
import { isFunction } from 'Common/Utils';
import { AbstractViewPopup } from 'Knoin/AbstractViews';
class AskPopupView extends AbstractViewPopup {
constructor() {
super('Ask');
2014-08-25 15:10:51 +08:00
this.addObservables({
askDesc: '',
yesButton: '',
noButton: ''
});
2014-08-21 23:08:34 +08:00
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();
2021-03-24 21:22:25 +08:00
isFunction(this.fYesAction) && this.fYesAction.call(null);
2016-06-30 08:02:45 +08:00
}
noClick() {
this.cancelCommand();
2021-03-24 21:22:25 +08:00
isFunction(this.fNoAction) && this.fNoAction.call(null);
2016-06-30 08:02:45 +08:00
}
/**
* @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 || '');
2019-07-05 03:19:24 +08:00
if (yesButton) {
this.yesButton(yesButton);
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (noButton) {
this.noButton(noButton);
}
this.bFocusYesOnShow = !!isFocusYesOnShow;
}
onShowWithDelay() {
2019-07-05 03:19:24 +08:00
if (this.bFocusYesOnShow) {
this.querySelector('.buttonYes').focus();
2014-12-28 03:48:55 +08:00
}
}
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;
});
}
}
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
export { AskPopupView, AskPopupView as default };