open-consul/ui/packages/consul-ui/app/components/providers/search/index.js

39 lines
921 B
JavaScript
Raw Normal View History

2022-10-08 11:33:55 +00:00
import Component from '@glimmer/component';
export default class SearchProvider extends Component {
// custom base route / router abstraction is doing weird things
get _search() {
return this.args.search || '';
}
2022-10-08 11:33:55 +00:00
get items() {
const { items, searchProperties } = this.args;
const { _search: search } = this;
2022-10-08 11:33:55 +00:00
if (search.length > 0) {
const regex = new RegExp(`${search}`, 'ig');
2022-10-08 11:33:55 +00:00
return items.filter((item) => {
const matchesInSearchProperties = searchProperties.reduce((acc, searchProperty) => {
const match = item[searchProperty].match(regex);
if (match) {
return [...acc, match];
} else {
return acc;
}
}, []);
return matchesInSearchProperties.length > 0;
});
} else {
return items;
}
2022-10-08 11:33:55 +00:00
}
get data() {
const { items } = this;
return {
items,
};
}
}