Ghost/ghost/admin/app/routes/application.js

115 lines
3.2 KiB
JavaScript
Raw Normal View History

import Ember from 'ember';
import AuthConfiguration from 'ember-simple-auth/configuration';
import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin';
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
import ctrlOrCmd from 'ghost/utils/ctrl-or-cmd';
import windowProxy from 'ghost/utils/window-proxy';
2016-01-19 16:03:27 +03:00
const {
Route,
inject: {service},
run
2016-01-19 16:03:27 +03:00
} = Ember;
function K() {
return this;
}
let shortcuts = {};
shortcuts.esc = {action: 'closeMenus', scope: 'all'};
shortcuts[`${ctrlOrCmd}+s`] = {action: 'save', scope: 'all'};
export default Route.extend(ApplicationRouteMixin, ShortcutsRoute, {
shortcuts,
2016-01-19 16:03:27 +03:00
config: service(),
dropdown: service(),
notifications: service(),
afterModel(model, transition) {
if (this.get('session.isAuthenticated')) {
transition.send('loadServerNotifications');
}
},
title(tokens) {
return `${tokens.join(' - ')} - ${this.get('config.blogTitle')}`;
},
sessionAuthenticated() {
if (this.get('session.skipAuthSuccessHandler')) {
return;
}
this._super(...arguments);
this.get('session.user').then((user) => {
this.send('signedIn', user);
});
},
sessionInvalidated() {
run.scheduleOnce('routerTransitions', this, function () {
this.send('authorizationFailed');
});
},
2014-03-31 08:07:05 +04:00
actions: {
openMobileMenu() {
this.controller.set('showMobileMenu', true);
},
openSettingsMenu() {
this.controller.set('showSettingsMenu', true);
},
closeMenus() {
2014-09-28 19:39:25 +04:00
this.get('dropdown').closeDropdowns();
this.controller.setProperties({
showSettingsMenu: false,
showMobileMenu: false
});
},
didTransition() {
this.send('closeMenus');
},
signedIn() {
this.get('notifications').clearAll();
this.send('loadServerNotifications', true);
},
invalidateSession() {
this.get('session').invalidate().catch((error) => {
this.get('notifications').showAlert(error.message, {type: 'error', key: 'session.invalidate.failed'});
});
},
authorizationFailed() {
windowProxy.replaceLocation(AuthConfiguration.baseURL);
},
loadServerNotifications(isDelayed) {
if (this.get('session.isAuthenticated')) {
this.get('session.user').then((user) => {
if (!user.get('isAuthor') && !user.get('isEditor')) {
this.store.findAll('notification', {reload: true}).then((serverNotifications) => {
serverNotifications.forEach((notification) => {
this.get('notifications').handleNotification(notification, isDelayed);
});
});
}
});
}
},
toggleMarkdownHelpModal() {
this.get('controller').toggleProperty('showMarkdownHelpModal');
},
// noop default for unhandled save (used from shortcuts)
save: K
2014-03-31 08:07:05 +04:00
}
});