mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +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
88 lines
2.4 KiB
JavaScript
88 lines
2.4 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
// a custom sort function is needed in order to sort the posts list the same way the server would:
|
|
// status: ASC
|
|
// published_at: DESC
|
|
// updated_at: DESC
|
|
// id: DESC
|
|
function comparator(item1, item2) {
|
|
var updated1 = item1.get('updated_at'),
|
|
updated2 = item2.get('updated_at'),
|
|
idResult,
|
|
statusResult,
|
|
updatedAtResult,
|
|
publishedAtResult;
|
|
|
|
// when `updated_at` is undefined, the model is still
|
|
// being written to with the results from the server
|
|
if (item1.get('isNew') || !updated1) {
|
|
return -1;
|
|
}
|
|
|
|
if (item2.get('isNew') || !updated2) {
|
|
return 1;
|
|
}
|
|
|
|
idResult = Ember.compare(parseInt(item1.get('id')), parseInt(item2.get('id')));
|
|
statusResult = Ember.compare(item1.get('status'), item2.get('status'));
|
|
updatedAtResult = Ember.compare(updated1.valueOf(), updated2.valueOf());
|
|
publishedAtResult = publishedAtCompare(item1, item2);
|
|
|
|
if (statusResult === 0) {
|
|
if (publishedAtResult === 0) {
|
|
if (updatedAtResult === 0) {
|
|
// This should be DESC
|
|
return idResult * -1;
|
|
}
|
|
// This should be DESC
|
|
return updatedAtResult * -1;
|
|
}
|
|
// This should be DESC
|
|
return publishedAtResult * -1;
|
|
}
|
|
|
|
return statusResult;
|
|
}
|
|
|
|
function publishedAtCompare(item1, item2) {
|
|
var published1 = item1.get('published_at'),
|
|
published2 = item2.get('published_at');
|
|
|
|
if (!published1 && !published2) {
|
|
return 0;
|
|
}
|
|
|
|
if (!published1 && published2) {
|
|
return -1;
|
|
}
|
|
|
|
if (!published2 && published1) {
|
|
return 1;
|
|
}
|
|
|
|
return Ember.compare(published1.valueOf(), published2.valueOf());
|
|
}
|
|
|
|
export default Ember.Controller.extend({
|
|
|
|
// See PostsRoute's shortcuts
|
|
postListFocused: Ember.computed.equal('keyboardFocus', 'postList'),
|
|
postContentFocused: Ember.computed.equal('keyboardFocus', 'postContent'),
|
|
|
|
sortedPosts: Ember.computed('model.@each.status', 'model.@each.published_at', 'model.@each.isNew', 'model.@each.updated_at', function () {
|
|
var postsArray = this.get('model').toArray();
|
|
|
|
return postsArray.sort(comparator);
|
|
}),
|
|
|
|
actions: {
|
|
showPostContent: function (post) {
|
|
if (!post) {
|
|
return;
|
|
}
|
|
|
|
this.transitionToRoute('posts.post', post);
|
|
}
|
|
}
|
|
});
|