snappymail/dev/View/Popup/ViewOpenPgpKey.js
2016-09-30 16:42:38 +03:00

55 lines
943 B
JavaScript

import ko from 'ko';
import key from 'key';
import {KeyState} from 'Common/Enums';
import {selectElement} from 'Common/Utils';
import {popup} from 'Knoin/Knoin';
import {AbstractViewNext} from 'Knoin/AbstractViewNext';
@popup({
name: 'View/Popup/ViewOpenPgpKey',
templateID: 'PopupsViewOpenPgpKey'
})
class ViewOpenPgpKeyPopupView extends AbstractViewNext
{
constructor() {
super();
this.key = ko.observable('');
this.keyDom = ko.observable(null);
this.sDefaultKeyScope = KeyState.PopupViewOpenPGP;
}
clearPopup() {
this.key('');
}
selectKey() {
const el = this.keyDom();
if (el)
{
selectElement(el);
}
}
onShow(openPgpKey) {
this.clearPopup();
if (openPgpKey)
{
this.key(openPgpKey.armor);
}
}
onBuild() {
key('ctrl+a, command+a', KeyState.PopupViewOpenPGP, () => {
this.selectKey();
return false;
});
}
}
export {ViewOpenPgpKeyPopupView, ViewOpenPgpKeyPopupView as default};