1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/controllers/posts.js
Kevin Ansfield 079c8ccc2c
Migrate to latest ember, ember-mocha and modern ember testing (#1044)
no issue
- upgrade to latest `ember-source` and related dependencies including `ember-cli`
- upgrade to latest `ember-mocha` and modern ember testing setup
    - https://github.com/emberjs/rfcs/blob/master/text/0268-acceptance-testing-refactor.md
    - switch from using global acceptance test helpers and `native-dom-helpers` to using the new `ember-test-helpers` methods
    - use [`chai-dom`](https://github.com/nathanboktae/chai-dom) assertions where in some places (still a lot of places in the tests that could use these)
- pin `ember-in-viewport` to 3.0.x to work around incompatibilities between different versions used in `ember-light-table`, `ember-infinity`, and `ember-sticky-element`
    - incompatibilities manifested as "Invalid value used as weak map key" errors thrown when using `ember-light-table` (subscribers screen)
- pin `ember-power-datepicker` to unreleased version that contains a move from global acceptance test helpers to modern test helpers
2019-01-02 09:58:55 +00:00

143 lines
3.4 KiB
JavaScript

import Controller from '@ember/controller';
import {alias} from '@ember/object/computed';
import {computed} from '@ember/object';
import {get} from '@ember/object';
import {inject as service} from '@ember/service';
const TYPES = [{
name: 'All posts',
value: null
}, {
name: 'Draft posts',
value: 'draft'
}, {
name: 'Published posts',
value: 'published'
}, {
name: 'Scheduled posts',
value: 'scheduled'
}, {
name: 'Featured posts',
value: 'featured'
}, {
name: 'Pages',
value: 'page'
}];
const ORDERS = [{
name: 'Newest',
value: null
}, {
name: 'Oldest',
value: 'published_at asc'
}, {
name: 'Recently updated',
value: 'updated_at desc'
}];
export default Controller.extend({
session: service(),
store: service(),
queryParams: ['type', 'author', 'tag', 'order'],
type: null,
author: null,
tag: null,
order: null,
_hasLoadedTags: false,
_hasLoadedAuthors: false,
availableTypes: null,
availableOrders: null,
init() {
this._super(...arguments);
this.availableTypes = TYPES;
this.availableOrders = ORDERS;
},
postsInfinityModel: alias('model'),
showingAll: computed('type', 'author', 'tag', function () {
let {type, author, tag} = this.getProperties(['type', 'author', 'tag']);
return !type && !author && !tag;
}),
selectedType: computed('type', function () {
let types = this.get('availableTypes');
return types.findBy('value', this.get('type'));
}),
selectedOrder: computed('order', function () {
let orders = this.get('availableOrders');
return orders.findBy('value', this.get('order'));
}),
_availableTags: computed(function () {
return this.get('store').peekAll('tag');
}),
availableTags: computed('_availableTags.[]', function () {
let tags = this.get('_availableTags')
.filter(tag => tag.get('id') !== null)
.sort((tagA, tagB) => tagA.name.localeCompare(tagB.name, undefined, {ignorePunctuation: true}));
let options = tags.toArray();
options.unshiftObject({name: 'All tags', slug: null});
return options;
}),
selectedTag: computed('tag', '_availableTags.[]', function () {
let tag = this.get('tag');
let tags = this.get('availableTags');
return tags.findBy('slug', tag);
}),
_availableAuthors: computed(function () {
return this.get('store').peekAll('user');
}),
availableAuthors: computed('_availableAuthors.[]', function () {
let authors = this.get('_availableAuthors');
let options = authors.toArray();
options.unshiftObject({name: 'All authors', slug: null});
return options;
}),
selectedAuthor: computed('author', 'availableAuthors.[]', function () {
let author = this.get('author');
let authors = this.get('availableAuthors');
return authors.findBy('slug', author);
}),
actions: {
changeType(type) {
this.set('type', get(type, 'value'));
},
changeAuthor(author) {
this.set('author', get(author, 'slug'));
},
changeTag(tag) {
this.set('tag', get(tag, 'slug'));
},
changeOrder(order) {
this.set('order', get(order, 'value'));
},
openEditor(post) {
this.transitionToRoute('editor.edit', post.get('id'));
}
}
});