mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
d159a5cced
Implement Shortcuts in Ember
77 lines
2.6 KiB
JavaScript
77 lines
2.6 KiB
JavaScript
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
|
|
|
|
var ApplicationRoute = Ember.Route.extend(ShortcutsRoute, {
|
|
shortcuts: {
|
|
'esc': 'closePopups'
|
|
},
|
|
actions: {
|
|
closePopups: function () {
|
|
this.get('popover').closePopovers();
|
|
this.get('notifications').closeAll();
|
|
// @todo close modals
|
|
},
|
|
signedIn: function (user) {
|
|
// Update the user on all routes and controllers
|
|
this.container.unregister('user:current');
|
|
this.container.register('user:current', user, { instantiate: false });
|
|
|
|
this.container.injection('route', 'user', 'user:current');
|
|
this.container.injection('controller', 'user', 'user:current');
|
|
|
|
this.set('user', user);
|
|
this.set('controller.user', user);
|
|
},
|
|
|
|
signedOut: function () {
|
|
// Nullify the user on all routes and controllers
|
|
this.container.unregister('user:current');
|
|
this.container.register('user:current', null, { instantiate: false });
|
|
|
|
this.container.injection('route', 'user', 'user:current');
|
|
this.container.injection('controller', 'user', 'user:current');
|
|
|
|
this.set('user', null);
|
|
this.set('controller.user', null);
|
|
},
|
|
|
|
openModal: function (modalName, model, type) {
|
|
modalName = 'modals/' + modalName;
|
|
// We don't always require a modal to have a controller
|
|
// so we're skipping asserting if one exists
|
|
if (this.controllerFor(modalName, true)) {
|
|
this.controllerFor(modalName).set('model', model);
|
|
|
|
if (type) {
|
|
this.controllerFor(modalName).set('imageType', type);
|
|
this.controllerFor(modalName).set('src', model.get(type));
|
|
}
|
|
}
|
|
return this.render(modalName, {
|
|
into: 'application',
|
|
outlet: 'modal'
|
|
});
|
|
},
|
|
|
|
closeModal: function () {
|
|
return this.disconnectOutlet({
|
|
outlet: 'modal',
|
|
parentView: 'application'
|
|
});
|
|
},
|
|
|
|
handleErrors: function (errors) {
|
|
var self = this;
|
|
this.notifications.clear();
|
|
errors.forEach(function (errorObj) {
|
|
self.notifications.showError(errorObj.message || errorObj);
|
|
|
|
if (errorObj.hasOwnProperty('el')) {
|
|
errorObj.el.addClass('input-error');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
export default ApplicationRoute;
|