f3c1366406
fixes PROD-201 The issue was caused because we were searching the 'name' field instead of the 'title' field. This also increases the performance when loading the posts: - Makes sure no relations are loaded - Only return the fields we actually need - Stop using limit=all, and replaced it with network based search
184 lines
5.0 KiB
JavaScript
184 lines
5.0 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {A} from '@ember/array';
|
|
import {action, get} from '@ember/object';
|
|
import {
|
|
defaultMatcher,
|
|
filterOptions
|
|
} from 'ember-power-select/utils/group-utils';
|
|
import {inject as service} from '@ember/service';
|
|
import {task, timeout} from 'ember-concurrency';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
const DEBOUNCE_MS = 200;
|
|
|
|
function mapResource(resource) {
|
|
return {
|
|
id: resource.id,
|
|
title: resource.title
|
|
};
|
|
}
|
|
|
|
export default class GhResourceSelect extends Component {
|
|
@service store;
|
|
|
|
@tracked _options = [];
|
|
|
|
get renderInPlace() {
|
|
return this.args.renderInPlace === undefined ? false : this.args.renderInPlace;
|
|
}
|
|
|
|
get searchField() {
|
|
return this.args.searchField === undefined ? 'title' : this.args.searchField;
|
|
}
|
|
|
|
@action
|
|
searchAndSuggest(term, select) {
|
|
return this.searchAndSuggestTask.perform(term, select);
|
|
}
|
|
|
|
@task
|
|
*searchAndSuggestTask(term) {
|
|
let newOptions = this.flatOptions.toArray();
|
|
|
|
if (term.length === 0) {
|
|
return newOptions;
|
|
}
|
|
|
|
// todo: we can do actual filtering on posts here (allow searching when we have lots and lots of posts)
|
|
yield undefined;
|
|
|
|
newOptions = this._filter(A(newOptions), term);
|
|
|
|
if (newOptions.length === 0) {
|
|
// Do a query lookup
|
|
newOptions = yield this.fetchOptionsForSearchTask.perform(term);
|
|
}
|
|
|
|
return newOptions;
|
|
}
|
|
|
|
get matcher() {
|
|
return this.args.matcher || defaultMatcher;
|
|
}
|
|
|
|
_filter(options, searchText) {
|
|
let matcher;
|
|
if (this.searchField) {
|
|
matcher = (option, text) => this.matcher(get(option, this.searchField), text);
|
|
} else {
|
|
matcher = (option, text) => this.matcher(option, text);
|
|
}
|
|
return filterOptions(options || [], searchText, matcher);
|
|
}
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.fetchOptionsTask.perform();
|
|
}
|
|
|
|
get options() {
|
|
return this._options;
|
|
}
|
|
|
|
get flatOptions() {
|
|
const options = [];
|
|
|
|
function getOptions(option) {
|
|
if (option.options) {
|
|
return option.options.forEach(getOptions);
|
|
}
|
|
|
|
options.push(option);
|
|
}
|
|
|
|
this._options.forEach(getOptions);
|
|
|
|
return options;
|
|
}
|
|
|
|
get selectedOption() {
|
|
if (this.args.resource.title) {
|
|
return this.args.resource;
|
|
}
|
|
const resource = this.args.resource ?? {};
|
|
return this.flatOptions.find(option => resource.id === option.id);
|
|
}
|
|
|
|
@action
|
|
onChange(options) {
|
|
this.args.onChange(options);
|
|
}
|
|
|
|
get placeholderText() {
|
|
if (this.args.type === 'email') {
|
|
return 'Select an email';
|
|
}
|
|
return 'Select a page/post';
|
|
}
|
|
|
|
get searchPlaceholderText() {
|
|
if (this.args.type === 'email') {
|
|
return 'Search emails';
|
|
}
|
|
return 'Search posts/pages';
|
|
}
|
|
|
|
@task
|
|
*fetchOptionsTask() {
|
|
const options = yield [];
|
|
|
|
if (this.args.type === 'email') {
|
|
const posts = yield this.store.query('post', {filter: '(status:published,status:sent)+newsletter_id:-null', limit: '25', fields: 'id,title'});
|
|
options.push(...posts.map(mapResource));
|
|
this._options = options;
|
|
return;
|
|
}
|
|
|
|
const posts = yield this.store.query('post', {filter: 'status:published', limit: '25', fields: 'id,title'});
|
|
const pages = yield this.store.query('page', {filter: 'status:published', limit: '25', fields: 'id,title'});
|
|
|
|
if (posts.length > 0) {
|
|
options.push({
|
|
groupName: 'Posts',
|
|
options: posts.map(mapResource)
|
|
});
|
|
}
|
|
|
|
if (pages.length > 0) {
|
|
options.push({
|
|
groupName: 'Pages',
|
|
options: pages.map(mapResource)
|
|
});
|
|
}
|
|
|
|
this._options = options;
|
|
}
|
|
|
|
@task({restartable: true})
|
|
*fetchOptionsForSearchTask(searchTerm) {
|
|
// Debounce
|
|
yield timeout(DEBOUNCE_MS);
|
|
|
|
const options = yield [];
|
|
|
|
if (this.args.type === 'email') {
|
|
const posts = yield this.store.query('post', {filter: '(status:published,status:sent)+newsletter_id:-null+title:~\'' + searchTerm.replace('\'', '\\\'') + '\'', limit: '10', fields: 'id,title'});
|
|
options.push(...posts.map(mapResource));
|
|
return options;
|
|
}
|
|
|
|
const posts = yield this.store.query('post', {filter: 'status:published+title:~\'' + searchTerm.replace('\'', '\\\'') + '\'', limit: '10', fields: 'id,title'});
|
|
const pages = yield this.store.query('page', {filter: 'status:published+title:~\'' + searchTerm.replace('\'', '\\\'') + '\'', limit: '10', fields: 'id,title'});
|
|
|
|
if (posts.length > 0) {
|
|
options.push(...posts.map(mapResource));
|
|
}
|
|
|
|
if (pages.length > 0) {
|
|
options.push(...pages.map(mapResource));
|
|
}
|
|
|
|
return options;
|
|
}
|
|
}
|