open-consul/ui-v2/app/controllers/dc/acls/roles/index.js

24 lines
572 B
JavaScript

import Controller from '@ember/controller';
import { get, computed } from '@ember/object';
import WithSearching from 'consul-ui/mixins/with-searching';
export default Controller.extend(WithSearching, {
queryParams: {
s: {
as: 'filter',
replace: true,
},
},
init: function() {
this.searchParams = {
role: 's',
};
this._super(...arguments);
},
searchable: computed('items', function() {
return get(this, 'searchables.role')
.add(this.items)
.search(get(this, this.searchParams.role));
}),
actions: {},
});