Ghost/ghost/admin/app/controllers/pages.js
Sanne de Vries 08da18e324 Fixed breadcrumbs responsive issues
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)
2022-10-06 16:25:57 +07:00

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'));
}
}