mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
a0ec07f797
closes #5630 - upgrade ember-cli to latest version - upgrade ember to latest 1.13.x release - upgrade ember data to latest 1.13.x release - update custom adapters and serialisers for new internal JSON-API compatible formats [(docs)][1] - update all store queries to use new standardised query methods [(docs)][2] - add ember-data-filter addon ready for store.filter removal in ember-data 2.0 [(docs)][3] - remove use of prototype extensions for computed properties and observers - consolidate pagination into a single route mixin and simplify configuration [1]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_transition-to-the-new-jsonserializer-and-restserializer-apis [2]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_simplified-find-methods [3]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_ds-store-filter-moved-to-an-addon
64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost/mixins/current-user-settings';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
|
titleToken: 'Team - User',
|
|
|
|
classNames: ['team-view-user'],
|
|
|
|
model: function (params) {
|
|
var self = this;
|
|
// TODO: Make custom user adapter that uses /api/users/:slug endpoint
|
|
// return this.store.find('user', { slug: params.slug });
|
|
|
|
// Instead, get all the users and then find by slug
|
|
return this.store.findAll('user', {reload: true}).then(function (result) {
|
|
var user = result.findBy('slug', params.slug);
|
|
|
|
if (!user) {
|
|
return self.transitionTo('error404', 'team/' + params.slug);
|
|
}
|
|
|
|
return user;
|
|
});
|
|
},
|
|
|
|
afterModel: function (user) {
|
|
var self = this;
|
|
return this.get('session.user').then(function (currentUser) {
|
|
var isOwnProfile = user.get('id') === currentUser.get('id'),
|
|
isAuthor = currentUser.get('isAuthor'),
|
|
isEditor = currentUser.get('isEditor');
|
|
if (isAuthor && !isOwnProfile) {
|
|
self.transitionTo('team.user', currentUser);
|
|
} else if (isEditor && !isOwnProfile && !user.get('isAuthor')) {
|
|
self.transitionTo('team');
|
|
}
|
|
});
|
|
},
|
|
|
|
deactivate: function () {
|
|
var model = this.modelFor('team.user');
|
|
|
|
// we want to revert any unsaved changes on exit
|
|
if (model && model.get('hasDirtyAttributes')) {
|
|
model.rollbackAttributes();
|
|
}
|
|
|
|
model.get('errors').clear();
|
|
|
|
this._super();
|
|
},
|
|
|
|
actions: {
|
|
didTransition: function () {
|
|
this.modelFor('team.user').get('errors').clear();
|
|
},
|
|
|
|
save: function () {
|
|
this.get('controller').send('save');
|
|
}
|
|
}
|
|
});
|