snappymail/dev/View/Popup/Ask.js

80 lines
1.8 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');
this.viewNoUserSelect = true;
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;
}
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.askDesc(askDesc || '');
2021-11-03 21:58:34 +08:00
this.yesButton(yesButton || i18n('POPUPS_ASK/BUTTON_YES'));
this.noButton(noButton || i18n('POPUPS_ASK/BUTTON_NO'));
this.fYesAction = fYesFunc;
this.fNoAction = fNoFunc;
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 };