2014-10-10 13:54:02 +04:00
|
|
|
/* global key */
|
2015-05-13 08:27:59 +03:00
|
|
|
|
|
|
|
import Ember from 'ember';
|
2015-11-04 18:20:11 +03:00
|
|
|
import AuthConfiguration from 'ember-simple-auth/configuration';
|
2015-10-18 21:17:02 +03:00
|
|
|
import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin';
|
2014-06-19 23:44:44 +04:00
|
|
|
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
|
2014-11-26 01:34:55 +03:00
|
|
|
import ctrlOrCmd from 'ghost/utils/ctrl-or-cmd';
|
2015-11-04 18:20:11 +03:00
|
|
|
import windowProxy from 'ghost/utils/window-proxy';
|
2014-06-19 23:44:44 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
const {Route, inject} = Ember;
|
|
|
|
|
|
|
|
function K() {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
let shortcuts = {};
|
2014-11-26 01:34:55 +03:00
|
|
|
|
2015-05-27 17:39:56 +03:00
|
|
|
shortcuts.esc = {action: 'closeMenus', scope: 'all'};
|
2014-11-26 01:34:55 +03:00
|
|
|
shortcuts.enter = {action: 'confirmModal', scope: 'modal'};
|
2015-10-28 14:36:45 +03:00
|
|
|
shortcuts[`${ctrlOrCmd}+s`] = {action: 'save', scope: 'all'};
|
2014-11-26 01:34:55 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
export default Route.extend(ApplicationRouteMixin, ShortcutsRoute, {
|
|
|
|
shortcuts,
|
2014-06-30 16:58:10 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
config: inject.service(),
|
|
|
|
dropdown: inject.service(),
|
|
|
|
notifications: inject.service(),
|
2015-05-26 05:10:50 +03:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
afterModel(model, transition) {
|
2015-10-18 21:17:02 +03:00
|
|
|
if (this.get('session.isAuthenticated')) {
|
2014-08-06 09:01:00 +04:00
|
|
|
transition.send('loadServerNotifications');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
title(tokens) {
|
|
|
|
return `${tokens.join(' - ')} - ${this.get('config.blogTitle')}`;
|
2014-11-25 23:56:08 +03:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
sessionAuthenticated() {
|
|
|
|
let appController = this.controllerFor('application');
|
2015-10-18 21:17:02 +03:00
|
|
|
|
|
|
|
if (appController && appController.get('skipAuthSuccessHandler')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._super(...arguments);
|
2015-10-28 14:36:45 +03:00
|
|
|
this.get('session.user').then((user) => {
|
|
|
|
this.send('signedIn', user);
|
2015-10-18 21:17:02 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
sessionInvalidated() {
|
2015-11-04 18:20:11 +03:00
|
|
|
this.send('authorizationFailed');
|
|
|
|
},
|
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
actions: {
|
2015-10-28 14:36:45 +03:00
|
|
|
openMobileMenu() {
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.set('showMobileMenu', true);
|
2014-09-01 20:45:06 +04:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
openSettingsMenu() {
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.set('showSettingsMenu', true);
|
2014-09-15 04:40:24 +04:00
|
|
|
},
|
2014-07-31 23:15:55 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
closeMenus() {
|
2014-09-28 19:39:25 +04:00
|
|
|
this.get('dropdown').closeDropdowns();
|
2014-06-24 06:52:38 +04:00
|
|
|
this.send('closeModal');
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.setProperties({
|
|
|
|
showSettingsMenu: false,
|
|
|
|
showMobileMenu: false
|
|
|
|
});
|
2014-06-19 23:44:44 +04:00
|
|
|
},
|
2014-06-24 06:52:38 +04:00
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
didTransition() {
|
2015-08-20 17:44:52 +03:00
|
|
|
this.send('closeMenus');
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
signedIn() {
|
2015-10-07 17:44:23 +03:00
|
|
|
this.get('notifications').clearAll();
|
2014-06-30 01:45:03 +04:00
|
|
|
this.send('loadServerNotifications', true);
|
2014-05-15 03:36:13 +04:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
invalidateSession() {
|
|
|
|
this.get('session').invalidate().catch((error) => {
|
2015-10-18 21:17:02 +03:00
|
|
|
this.get('notifications').showAlert(error.message, {type: 'error', key: 'session.invalidate.failed'});
|
2014-07-30 00:49:26 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
authorizationFailed() {
|
2015-11-04 18:20:11 +03:00
|
|
|
windowProxy.replaceLocation(AuthConfiguration.baseURL);
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
openModal(modalName, model, type) {
|
2014-09-28 19:39:25 +04:00
|
|
|
this.get('dropdown').closeDropdowns();
|
2014-10-10 13:54:02 +04:00
|
|
|
key.setScope('modal');
|
2015-10-28 14:36:45 +03:00
|
|
|
modalName = `modals/${modalName}`;
|
2014-10-10 13:54:02 +04:00
|
|
|
this.set('modalName', modalName);
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
// 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);
|
2014-06-19 22:31:56 +04:00
|
|
|
|
|
|
|
if (type) {
|
|
|
|
this.controllerFor(modalName).set('imageType', type);
|
|
|
|
this.controllerFor(modalName).set('src', model.get(type));
|
|
|
|
}
|
2014-03-31 08:07:05 +04:00
|
|
|
}
|
2014-10-10 13:54:02 +04:00
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
return this.render(modalName, {
|
|
|
|
into: 'application',
|
|
|
|
outlet: 'modal'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
confirmModal() {
|
2015-10-18 21:17:02 +03:00
|
|
|
let modalName = this.get('modalName');
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2014-10-10 13:54:02 +04:00
|
|
|
this.send('closeModal');
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2014-10-10 13:54:02 +04:00
|
|
|
if (this.controllerFor(modalName, true)) {
|
|
|
|
this.controllerFor(modalName).send('confirmAccept');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
closeModal() {
|
2014-09-04 17:56:07 +04:00
|
|
|
this.disconnectOutlet({
|
2014-03-31 08:07:05 +04:00
|
|
|
outlet: 'modal',
|
|
|
|
parentView: 'application'
|
|
|
|
});
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2014-10-10 13:54:02 +04:00
|
|
|
key.setScope('default');
|
2014-03-22 16:08:15 +04:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
loadServerNotifications(isDelayed) {
|
2015-10-18 21:17:02 +03:00
|
|
|
if (this.get('session.isAuthenticated')) {
|
2015-10-28 14:36:45 +03:00
|
|
|
this.get('session.user').then((user) => {
|
2015-04-14 18:04:16 +03:00
|
|
|
if (!user.get('isAuthor') && !user.get('isEditor')) {
|
2015-10-28 14:36:45 +03:00
|
|
|
this.store.findAll('notification', {reload: true}).then((serverNotifications) => {
|
|
|
|
serverNotifications.forEach((notification) => {
|
|
|
|
this.get('notifications').handleNotification(notification, isDelayed);
|
2015-04-14 18:04:16 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2014-06-30 01:45:03 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-11-26 01:34:55 +03:00
|
|
|
// noop default for unhandled save (used from shortcuts)
|
2015-10-28 14:36:45 +03:00
|
|
|
save: K
|
2014-03-31 08:07:05 +04:00
|
|
|
}
|
|
|
|
});
|