2016-06-30 13:21:47 +03:00
|
|
|
import Mixin from 'ember-metal/mixin';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ShortcutsMixin from 'ghost-admin/mixins/shortcuts';
|
2015-10-28 14:36:45 +03:00
|
|
|
|
2014-06-19 23:44:44 +04:00
|
|
|
/**
|
|
|
|
* Only routes can implement shortcuts.
|
|
|
|
* If you need to trigger actions on the controller,
|
|
|
|
* simply call them with `this.get('controller').send('action')`.
|
|
|
|
*
|
|
|
|
* To implement shortcuts, add this mixin to your `extend()`,
|
|
|
|
* and implement a `shortcuts` hash.
|
2014-06-21 22:58:06 +04:00
|
|
|
* In this hash, keys are shortcut combinations and values are route action names.
|
|
|
|
* (see [keymaster docs](https://github.com/madrobby/keymaster/blob/master/README.markdown)),
|
2014-10-17 16:13:47 +04:00
|
|
|
*
|
2014-06-19 23:44:44 +04:00
|
|
|
* ```javascript
|
|
|
|
* shortcuts: {
|
|
|
|
* 'ctrl+s, command+s': 'save',
|
2014-06-21 22:58:06 +04:00
|
|
|
* 'ctrl+alt+z': 'toggleZenMode'
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* For more complex actions, shortcuts can instead have their value
|
|
|
|
* be an object like {action, options}
|
|
|
|
* ```javascript
|
|
|
|
* shortcuts: {
|
|
|
|
* 'ctrl+k': {action: 'markdownShortcut', options: 'createLink'}
|
2014-06-19 23:44:44 +04:00
|
|
|
* }
|
|
|
|
* ```
|
2014-10-10 13:54:02 +04:00
|
|
|
* You can set the scope of your shortcut by passing a scope property.
|
|
|
|
* ```javascript
|
|
|
|
* shortcuts : {
|
|
|
|
* 'enter': {action : 'confirmModal', scope: 'modal'}
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* If you don't specify a scope, we use a default scope called "default".
|
|
|
|
* To have all your shortcut work in all scopes, give it the scope "all".
|
|
|
|
* Find out more at the keymaster docs
|
2014-06-19 23:44:44 +04:00
|
|
|
*/
|
2015-12-14 15:52:53 +03:00
|
|
|
export default Mixin.create(ShortcutsMixin, {
|
2015-10-28 14:36:45 +03:00
|
|
|
activate() {
|
2015-11-15 14:06:49 +03:00
|
|
|
this._super(...arguments);
|
2014-06-19 23:44:44 +04:00
|
|
|
this.registerShortcuts();
|
|
|
|
},
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
deactivate() {
|
2015-11-15 14:06:49 +03:00
|
|
|
this._super(...arguments);
|
2014-06-19 23:44:44 +04:00
|
|
|
this.removeShortcuts();
|
|
|
|
}
|
|
|
|
});
|