Ghost/ghost/admin/app/components/modal-base.js

63 lines
1.4 KiB
JavaScript
Raw Normal View History

/* global key */
import Component from '@ember/component';
import {run} from '@ember/runloop';
export default Component.extend({
tagName: 'section',
classNames: 'modal-content',
_previousKeymasterScope: null,
closeOnEnter: true,
// Allowed Actions
closeModal: () => {},
didInsertElement() {
this._super(...arguments);
this._setupShortcuts();
},
willDestroyElement() {
this._super(...arguments);
this._removeShortcuts();
},
actions: {
confirm() {
throw new Error('You must override the "confirm" action in your modal component');
},
closeModal() {
this.closeModal();
}
},
2016-01-19 19:00:44 +03:00
_setupShortcuts() {
run(function () {
document.activeElement.blur();
});
this._previousKeymasterScope = key.getScope();
if (this.closeOnEnter) {
key('enter', 'modal', () => {
this.send('confirm');
});
}
key('escape', 'modal', (event) => {
if (!event.target.dataset.preventEscapeCloseModal) {
this.send('closeModal');
}
});
key.setScope('modal');
2016-01-19 19:00:44 +03:00
},
2016-01-19 19:00:44 +03:00
_removeShortcuts() {
key.unbind('enter', 'modal');
key.unbind('escape', 'modal');
key.setScope(this._previousKeymasterScope);
}
});