43 lines
995 B
JavaScript
43 lines
995 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from 'consul-ui/routing/route';
|
|
import { hash } from 'rsvp';
|
|
|
|
import WithPolicyActions from 'consul-ui/mixins/policy/with-actions';
|
|
|
|
export default class IndexRoute extends Route.extend(WithPolicyActions) {
|
|
@service('repository/policy') repo;
|
|
|
|
queryParams = {
|
|
sortBy: 'sort',
|
|
datacenter: {
|
|
as: 'dc',
|
|
},
|
|
kind: 'kind',
|
|
searchproperty: {
|
|
as: 'searchproperty',
|
|
empty: [['Name', 'Description']],
|
|
},
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
};
|
|
|
|
model(params) {
|
|
return hash({
|
|
...this.repo.status({
|
|
items: this.repo.findAllByDatacenter({
|
|
ns: this.optionalParams().nspace,
|
|
dc: this.modelFor('dc').dc.Name,
|
|
}),
|
|
}),
|
|
searchProperties: this.queryParams.searchproperty.empty[0],
|
|
});
|
|
}
|
|
|
|
setupController(controller, model) {
|
|
super.setupController(...arguments);
|
|
controller.setProperties(model);
|
|
}
|
|
}
|