24 lines
604 B
JavaScript
24 lines
604 B
JavaScript
|
import Controller from '@ember/controller';
|
||
|
import { get, computed } from '@ember/object';
|
||
|
|
||
|
import WithEventSource from 'consul-ui/mixins/with-event-source';
|
||
|
import WithSearching from 'consul-ui/mixins/with-searching';
|
||
|
export default Controller.extend(WithEventSource, WithSearching, {
|
||
|
queryParams: {
|
||
|
s: {
|
||
|
as: 'filter',
|
||
|
},
|
||
|
},
|
||
|
init: function() {
|
||
|
this.searchParams = {
|
||
|
nspace: 's',
|
||
|
};
|
||
|
this._super(...arguments);
|
||
|
},
|
||
|
searchable: computed('items.[]', function() {
|
||
|
return get(this, 'searchables.nspace')
|
||
|
.add(this.items)
|
||
|
.search(this.terms);
|
||
|
}),
|
||
|
});
|