mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
5c0b63f300
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
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Controller.extend({
|
|
notifications: Ember.inject.service(),
|
|
|
|
userPostCount: Ember.computed('model.id', function () {
|
|
var promise,
|
|
query = {
|
|
author: this.get('model.slug'),
|
|
status: 'all'
|
|
};
|
|
|
|
promise = this.store.query('post', query).then(function (results) {
|
|
return results.meta.pagination.total;
|
|
});
|
|
|
|
return Ember.Object.extend(Ember.PromiseProxyMixin, {
|
|
count: Ember.computed.alias('content'),
|
|
|
|
inflection: Ember.computed('count', function () {
|
|
return this.get('count') > 1 ? 'posts' : 'post';
|
|
})
|
|
}).create({promise: promise});
|
|
}),
|
|
|
|
actions: {
|
|
confirmAccept: function () {
|
|
var self = this,
|
|
user = this.get('model');
|
|
|
|
user.destroyRecord().then(function () {
|
|
self.store.unloadAll('post');
|
|
self.transitionToRoute('team');
|
|
}, function () {
|
|
self.get('notifications').showAlert('The user could not be deleted. Please try again.', {type: 'error'});
|
|
});
|
|
},
|
|
|
|
confirmReject: function () {
|
|
return false;
|
|
}
|
|
},
|
|
|
|
confirm: {
|
|
accept: {
|
|
text: 'Delete User',
|
|
buttonClass: 'btn btn-red'
|
|
},
|
|
reject: {
|
|
text: 'Cancel',
|
|
buttonClass: 'btn btn-default btn-minor'
|
|
}
|
|
}
|
|
});
|