0f8610a6e9
no issue - posts and pages (and their corresponding `-loading` counterparts) templates were all duplicating a lengthy section of handlebars - extracted the duplicated handlebars into a template for easier design changes or upgrading of `ember-power-select` - moved generation of the "selected" CSS classes into the template to clean up code in the controller
33 lines
648 B
JavaScript
33 lines
648 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'
|
|
}];
|
|
|
|
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
export default PostsController.extend({
|
|
init() {
|
|
this._super(...arguments);
|
|
this.availableTypes = TYPES;
|
|
},
|
|
|
|
actions: {
|
|
openEditor(page) {
|
|
this.transitionToRoute('editor.edit', 'page', page.get('id'));
|
|
}
|
|
}
|
|
});
|