mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
d90ed28940
closes TryGhost/Ghost#6985 - renames all date properties to end with `UTC`: - `publishedAt` in `post` model - `createdAt` in `post`, `role`, `subscriber`, `tag` and `user` model - `updatedAt` in `post`, `role`, `subscriber`, `tag` and `user` model - `unsubscribedAt` in `subscriber` model - `lastLogin` in `user` model - adds `attrs` transforms in matching serializers `post`, `tag` and `user` - new serializers files for `subscribers` and `role` to add `attr` transforms - adds unit tests for all serializers - use two variables in `post-settings-menu` controller to handle blog-timezone adjusted date as well as UTC date
127 lines
3.2 KiB
JavaScript
127 lines
3.2 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
const {
|
|
Controller,
|
|
compare,
|
|
computed,
|
|
inject: {service}
|
|
} = Ember;
|
|
const {equal} = computed;
|
|
|
|
// a custom sort function is needed in order to sort the posts list the same way the server would:
|
|
// status: scheduled, draft, published
|
|
// publishedAtUTC: DESC
|
|
// updatedAtUTC: DESC
|
|
// id: DESC
|
|
function comparator(item1, item2) {
|
|
let updated1 = item1.get('updatedAtUTC');
|
|
let updated2 = item2.get('updatedAtUTC');
|
|
let idResult,
|
|
publishedAtResult,
|
|
statusResult,
|
|
updatedAtResult;
|
|
|
|
// when `updatedAt` 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 = compare(parseInt(item1.get('id')), parseInt(item2.get('id')));
|
|
statusResult = statusCompare(item1, item2);
|
|
updatedAtResult = 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 statusCompare(item1, item2) {
|
|
let status1 = item1.get('status');
|
|
let status2 = item2.get('status');
|
|
|
|
// if any of those is empty
|
|
if (!status1 && !status2) {
|
|
return 0;
|
|
}
|
|
|
|
if (!status1 && status2) {
|
|
return -1;
|
|
}
|
|
|
|
if (!status2 && status1) {
|
|
return 1;
|
|
}
|
|
|
|
// We have to make sure, that scheduled posts will be listed first
|
|
// after that, draft and published will be sorted alphabetically and don't need
|
|
// any manual comparison.
|
|
|
|
if (status1 === 'scheduled' && (status2 === 'draft' || status2 === 'published')) {
|
|
return -1;
|
|
}
|
|
|
|
if (status2 === 'scheduled' && (status1 === 'draft' || status1 === 'published')) {
|
|
return 1;
|
|
}
|
|
|
|
return compare(status1.valueOf(), status2.valueOf());
|
|
}
|
|
|
|
function publishedAtCompare(item1, item2) {
|
|
let published1 = item1.get('publishedAtUTC');
|
|
let published2 = item2.get('publishedAtUTC');
|
|
|
|
if (!published1 && !published2) {
|
|
return 0;
|
|
}
|
|
|
|
if (!published1 && published2) {
|
|
return -1;
|
|
}
|
|
|
|
if (!published2 && published1) {
|
|
return 1;
|
|
}
|
|
|
|
return compare(published1.valueOf(), published2.valueOf());
|
|
}
|
|
|
|
export default Controller.extend({
|
|
feature: service(),
|
|
|
|
showDeletePostModal: false,
|
|
|
|
// See PostsRoute's shortcuts
|
|
postListFocused: equal('keyboardFocus', 'postList'),
|
|
postContentFocused: equal('keyboardFocus', 'postContent'),
|
|
|
|
sortedPosts: computed('model.@each.status', 'model.@each.publishedAtUTC', 'model.@each.isNew', 'model.@each.updatedAtUTC', function () {
|
|
let postsArray = this.get('model').toArray();
|
|
|
|
return postsArray.sort(comparator);
|
|
}),
|
|
|
|
actions: {
|
|
toggleDeletePostModal() {
|
|
this.toggleProperty('showDeletePostModal');
|
|
}
|
|
}
|
|
});
|