2014-10-10 13:54:02 +04:00
|
|
|
/* global key */
|
2015-05-13 08:27:59 +03:00
|
|
|
|
|
|
|
import Ember from 'ember';
|
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';
|
2014-06-19 23:44:44 +04:00
|
|
|
|
2015-10-18 21:17:02 +03:00
|
|
|
const 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'};
|
|
|
|
shortcuts[ctrlOrCmd + '+s'] = {action: 'save', scope: 'all'};
|
|
|
|
|
2015-05-26 05:10:50 +03:00
|
|
|
export default Ember.Route.extend(ApplicationRouteMixin, ShortcutsRoute, {
|
2014-11-26 01:34:55 +03:00
|
|
|
shortcuts: shortcuts,
|
2014-06-30 16:58:10 +04:00
|
|
|
|
2015-05-26 05:10:50 +03:00
|
|
|
config: Ember.inject.service(),
|
|
|
|
dropdown: Ember.inject.service(),
|
|
|
|
notifications: Ember.inject.service(),
|
|
|
|
|
2014-08-06 09:01:00 +04:00
|
|
|
afterModel: function (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');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-11-25 23:56:08 +03:00
|
|
|
title: function (tokens) {
|
|
|
|
return tokens.join(' - ') + ' - ' + this.get('config.blogTitle');
|
|
|
|
},
|
|
|
|
|
2015-10-18 21:17:02 +03:00
|
|
|
sessionAuthenticated: function () {
|
|
|
|
const appController = this.controllerFor('application'),
|
|
|
|
self = this;
|
|
|
|
|
|
|
|
if (appController && appController.get('skipAuthSuccessHandler')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._super(...arguments);
|
|
|
|
this.get('session.user').then(function (user) {
|
|
|
|
self.send('signedIn', user);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
actions: {
|
2015-06-13 17:34:09 +03:00
|
|
|
openMobileMenu: function () {
|
2015-05-27 17:39:56 +03:00
|
|
|
this.controller.set('showMobileMenu', true);
|
2014-09-01 20:45:06 +04:00
|
|
|
},
|
|
|
|
|
2014-11-20 03:27:45 +03:00
|
|
|
openSettingsMenu: function () {
|
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-06-13 17:34:09 +03:00
|
|
|
closeMenus: function () {
|
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-08-20 17:44:52 +03:00
|
|
|
didTransition: function () {
|
|
|
|
this.send('closeMenus');
|
|
|
|
},
|
|
|
|
|
2014-07-01 19:58:26 +04:00
|
|
|
signedIn: function () {
|
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-05-13 08:27:59 +03:00
|
|
|
invalidateSession: function () {
|
2015-10-18 21:17:02 +03:00
|
|
|
this.get('session').invalidate().catch(function (error) {
|
|
|
|
this.get('notifications').showAlert(error.message, {type: 'error', key: 'session.invalidate.failed'});
|
2014-07-30 00:49:26 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-06-06 18:44:09 +04:00
|
|
|
openModal: function (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');
|
2014-03-31 08:07:05 +04: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'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-10-25 01:09:50 +04:00
|
|
|
confirmModal: function () {
|
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');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
closeModal: function () {
|
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
|
|
|
},
|
|
|
|
|
2014-06-30 01:45:03 +04:00
|
|
|
loadServerNotifications: function (isDelayed) {
|
2015-10-18 21:17:02 +03:00
|
|
|
let self = this;
|
2014-10-25 01:09:50 +04:00
|
|
|
|
2015-10-18 21:17:02 +03:00
|
|
|
if (this.get('session.isAuthenticated')) {
|
2015-04-14 18:04:16 +03:00
|
|
|
this.get('session.user').then(function (user) {
|
|
|
|
if (!user.get('isAuthor') && !user.get('isEditor')) {
|
2015-09-03 14:06:50 +03:00
|
|
|
self.store.findAll('notification', {reload: true}).then(function (serverNotifications) {
|
2015-04-14 18:04:16 +03:00
|
|
|
serverNotifications.forEach(function (notification) {
|
2015-05-26 05:10:50 +03:00
|
|
|
self.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)
|
|
|
|
save: Ember.K
|
2014-03-31 08:07:05 +04:00
|
|
|
}
|
|
|
|
});
|