mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
08da18e324
Refs https://www.notion.so/ghost/Switch-breadcrumb-style-513a624c0e0d490ca39a2fdb97a6971a - New breadcrumb style broke posts list on smaller screens - Updated copy to reflect the action taken on the page (e.g. Edit tag)
47 lines
969 B
JavaScript
47 lines
969 B
JavaScript
import PostsController from './posts';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action} from '@ember/object';
|
|
|
|
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 first',
|
|
value: null
|
|
}, {
|
|
name: 'Oldest first',
|
|
value: 'published_at asc'
|
|
}, {
|
|
name: 'Recently updated',
|
|
value: 'updated_at desc'
|
|
}];
|
|
|
|
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
@classic
|
|
export default class PagesController extends PostsController {
|
|
init() {
|
|
super.init(...arguments);
|
|
this.availableTypes = TYPES;
|
|
this.availableOrders = ORDERS;
|
|
}
|
|
|
|
@action
|
|
openEditor(page) {
|
|
this.transitionToRoute('editor.edit', 'page', page.get('id'));
|
|
}
|
|
}
|