2014-06-19 23:44:44 +04:00
|
|
|
import ShortcutsRoute from 'ghost/mixins/shortcuts-route';
|
|
|
|
|
2014-07-25 17:38:13 +04:00
|
|
|
var ApplicationRoute = Ember.Route.extend(SimpleAuth.ApplicationRouteMixin, ShortcutsRoute, {
|
2014-06-30 16:58:10 +04:00
|
|
|
|
2014-06-19 23:44:44 +04:00
|
|
|
shortcuts: {
|
|
|
|
'esc': 'closePopups'
|
|
|
|
},
|
2014-06-24 10:19:20 +04:00
|
|
|
|
2014-03-31 08:07:05 +04:00
|
|
|
actions: {
|
2014-06-19 23:44:44 +04:00
|
|
|
closePopups: function () {
|
|
|
|
this.get('popover').closePopovers();
|
|
|
|
this.get('notifications').closeAll();
|
2014-06-24 06:52:38 +04:00
|
|
|
|
|
|
|
this.send('closeModal');
|
2014-06-19 23:44:44 +04:00
|
|
|
},
|
2014-06-24 06:52:38 +04:00
|
|
|
|
2014-07-01 19:58:26 +04:00
|
|
|
signedIn: function () {
|
2014-06-30 01:45:03 +04:00
|
|
|
this.send('loadServerNotifications', true);
|
2014-05-15 03:36:13 +04:00
|
|
|
},
|
|
|
|
|
2014-07-30 00:49:26 +04:00
|
|
|
sessionAuthenticationFailed: function (error) {
|
|
|
|
this.notifications.showError(error.message);
|
|
|
|
},
|
|
|
|
|
|
|
|
sessionAuthenticationSucceeded: function () {
|
|
|
|
var self = this;
|
|
|
|
this.store.find('user', 'me').then(function (user) {
|
|
|
|
self.send('signedIn', user);
|
|
|
|
var attemptedTransition = self.get('session').get('attemptedTransition');
|
|
|
|
if (attemptedTransition) {
|
|
|
|
attemptedTransition.retry();
|
|
|
|
self.get('session').set('attemptedTransition', null);
|
|
|
|
} else {
|
|
|
|
self.transitionTo(SimpleAuth.Configuration.routeAfterAuthentication);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
sessionInvalidationFailed: function (error) {
|
|
|
|
this.notifications.showError(error.message);
|
|
|
|
},
|
|
|
|
|
2014-06-06 18:44:09 +04:00
|
|
|
openModal: function (modalName, model, type) {
|
2014-03-31 08:07:05 +04:00
|
|
|
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);
|
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
|
|
|
}
|
|
|
|
return this.render(modalName, {
|
|
|
|
into: 'application',
|
|
|
|
outlet: 'modal'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
closeModal: function () {
|
|
|
|
return this.disconnectOutlet({
|
|
|
|
outlet: 'modal',
|
|
|
|
parentView: 'application'
|
|
|
|
});
|
2014-03-22 16:08:15 +04:00
|
|
|
},
|
|
|
|
|
2014-06-30 01:45:03 +04:00
|
|
|
loadServerNotifications: function (isDelayed) {
|
|
|
|
var self = this;
|
|
|
|
if (this.session.isAuthenticated) {
|
|
|
|
this.store.findAll('notification').then(function (serverNotifications) {
|
|
|
|
serverNotifications.forEach(function (notification) {
|
|
|
|
self.notifications.handleNotification(notification, isDelayed);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-03-22 16:08:15 +04:00
|
|
|
handleErrors: function (errors) {
|
2014-05-31 22:32:22 +04:00
|
|
|
var self = this;
|
2014-03-22 16:08:15 +04:00
|
|
|
this.notifications.clear();
|
|
|
|
errors.forEach(function (errorObj) {
|
2014-05-31 22:32:22 +04:00
|
|
|
self.notifications.showError(errorObj.message || errorObj);
|
2014-03-22 16:08:15 +04:00
|
|
|
|
|
|
|
if (errorObj.hasOwnProperty('el')) {
|
|
|
|
errorObj.el.addClass('input-error');
|
|
|
|
}
|
|
|
|
});
|
2014-03-31 08:07:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-06-06 18:44:09 +04:00
|
|
|
export default ApplicationRoute;
|