mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
106 lines
2.2 KiB
JavaScript
106 lines
2.2 KiB
JavaScript
import { i18n } from 'Common/Translator';
|
|
import { isFunction } from 'Common/Utils';
|
|
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
export class AskPopupView extends AbstractViewPopup {
|
|
constructor() {
|
|
super('Ask');
|
|
|
|
this.addObservables({
|
|
askDesc: '',
|
|
yesButton: '',
|
|
noButton: '',
|
|
username: '',
|
|
askUsername: false,
|
|
passphrase: '',
|
|
askPass: false
|
|
});
|
|
|
|
this.fYesAction = null;
|
|
this.fNoAction = null;
|
|
|
|
this.focusOnShow = true;
|
|
}
|
|
|
|
yesClick() {
|
|
this.close();
|
|
|
|
isFunction(this.fYesAction) && this.fYesAction();
|
|
}
|
|
|
|
noClick() {
|
|
this.close();
|
|
|
|
isFunction(this.fNoAction) && this.fNoAction();
|
|
}
|
|
|
|
/**
|
|
* @param {string} sAskDesc
|
|
* @param {Function=} fYesFunc
|
|
* @param {Function=} fNoFunc
|
|
* @param {boolean=} focusOnShow = true
|
|
* @returns {void}
|
|
*/
|
|
onShow(sAskDesc, fYesFunc = null, fNoFunc = null, focusOnShow = true, ask = 0, btnText = '') {
|
|
this.askDesc(sAskDesc || '');
|
|
this.askUsername(ask & 2);
|
|
this.askPass(ask & 1);
|
|
this.username('');
|
|
this.passphrase('');
|
|
this.yesButton(i18n(btnText || 'GLOBAL/YES'));
|
|
this.noButton(i18n(ask ? 'GLOBAL/CANCEL' : 'GLOBAL/NO'));
|
|
this.fYesAction = fYesFunc;
|
|
this.fNoAction = fNoFunc;
|
|
this.focusOnShow = focusOnShow
|
|
? (ask ? 'input[type="'+(ask&2?'text':'password')+'"]' : '.buttonYes')
|
|
: '';
|
|
}
|
|
|
|
afterShow() {
|
|
this.focusOnShow && this.querySelector(this.focusOnShow).focus();
|
|
}
|
|
|
|
onClose() {
|
|
this.noClick();
|
|
return false;
|
|
}
|
|
|
|
onBuild() {
|
|
// shortcuts.add('tab', 'shift', 'Ask', () => {
|
|
shortcuts.add('tab,arrowright,arrowleft', '', 'Ask', () => {
|
|
let btn = this.querySelector('.buttonYes');
|
|
if (btn.matches(':focus')) {
|
|
btn = this.querySelector('.buttonNo');
|
|
}
|
|
btn.focus();
|
|
return false;
|
|
});
|
|
}
|
|
}
|
|
|
|
AskPopupView.password = function(sAskDesc, btnText) {
|
|
return new Promise(resolve => {
|
|
this.showModal([
|
|
sAskDesc,
|
|
() => resolve(this.__vm.passphrase()),
|
|
() => resolve(null),
|
|
true,
|
|
1,
|
|
btnText
|
|
]);
|
|
});
|
|
}
|
|
|
|
AskPopupView.credentials = function(sAskDesc, btnText) {
|
|
return new Promise(resolve => {
|
|
this.showModal([
|
|
sAskDesc,
|
|
() => resolve({username:this.__vm.username(), password:this.__vm.passphrase()}),
|
|
() => resolve(null),
|
|
true,
|
|
3,
|
|
btnText
|
|
]);
|
|
});
|
|
}
|