mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
439ba03053
closes https://github.com/TryGhost/Ghost/issues/12420 - adds "Open rate" to the available ordering options in the posts list order dropdown - amends pages controller to have it's own order list because pages can't be ordered by open rate
45 lines
865 B
JavaScript
45 lines
865 B
JavaScript
import PostsController from './posts';
|
|
|
|
const TYPES = [{
|
|
name: 'All pages',
|
|
value: null
|
|
}, {
|
|
name: 'Draft pages',
|
|
value: 'draft'
|
|
}, {
|
|
name: 'Published pages',
|
|
value: 'published'
|
|
}, {
|
|
name: 'Scheduled pages',
|
|
value: 'scheduled'
|
|
}, {
|
|
name: 'Featured pages',
|
|
value: 'featured'
|
|
}];
|
|
|
|
const ORDERS = [{
|
|
name: 'Newest',
|
|
value: null
|
|
}, {
|
|
name: 'Oldest',
|
|
value: 'published_at asc'
|
|
}, {
|
|
name: 'Recently updated',
|
|
value: 'updated_at desc'
|
|
}];
|
|
|
|
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
export default PostsController.extend({
|
|
init() {
|
|
this._super(...arguments);
|
|
this.availableTypes = TYPES;
|
|
this.availableOrders = ORDERS;
|
|
},
|
|
|
|
actions: {
|
|
openEditor(page) {
|
|
this.transitionToRoute('editor.edit', 'page', page.get('id'));
|
|
}
|
|
}
|
|
});
|