mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
6a3cfc2ca8
requires https://github.com/TryGhost/Ghost/pull/9426 - fixed default token component display in {{gh-token-input}} - if no `tokenComponent` is passed to `{{gh-token-input}}` then it should default to the ember-drag-drop `draggable-object` component but instead it didn't output anything - put `draggable-object` in quotes because `{{component}}` needs a component name rather than an object - rename `option` attribute to `content` to match the default `{{draggable-object}}` interface - add embedded `authors` attr to the Post model - ensure authors is populated when starting new post - add validation for empty authors list - swap author dropdown for a token input in PSM - show all post authors in posts list - update tests for `authors` - always provide through an authors array - fix mirage serialisation for paginated responses (embedded records were not being serialised) - unify tags and author inputs design - remove highlight of primary tags - highlight internal tags - remove unnecessary/redundant title attributes on tags - use SVG icon for "remove option" button in token inputs
33 lines
813 B
JavaScript
33 lines
813 B
JavaScript
import Component from '@ember/component';
|
|
import {computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
|
|
store: service(),
|
|
|
|
// public attrs
|
|
selectedAuthors: null,
|
|
tagName: '',
|
|
triggerId: '',
|
|
|
|
// closure actions
|
|
updateAuthors() {},
|
|
|
|
// live-query of all users for author input autocomplete
|
|
availableAuthors: computed(function () {
|
|
return this.get('store').filter('user', {limit: 'all'}, () => true);
|
|
}),
|
|
|
|
availableAuthorNames: computed('availableAuthors.@each.name', function () {
|
|
return this.get('availableAuthors').map(author => author.get('name').toLowerCase());
|
|
}),
|
|
|
|
actions: {
|
|
updateAuthors(newAuthors) {
|
|
this.updateAuthors(newAuthors);
|
|
}
|
|
}
|
|
|
|
});
|