mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 03:29:43 +00:00
8e9fca9be6
* Add model layer support for filtering intentions by service * Add Route, Controller and template for services.show.intentions tab We are still loading the intentions themselves in the parent Route for the moment * Load the intentions in in the parent route for the moment * Temporarily add support for returning to history -1 Once we have an intention form underneath the service/intention tab this will no longer be needed * Add the new tab and enable blocking queries for it * Add some further acceptance testing around intention listings
29 lines
663 B
JavaScript
29 lines
663 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 = {
|
|
intention: 's',
|
|
};
|
|
this._super(...arguments);
|
|
},
|
|
searchable: computed('intentions', function() {
|
|
return get(this, 'searchables.intention')
|
|
.add(this.intentions)
|
|
.search(get(this, this.searchParams.intention));
|
|
}),
|
|
actions: {
|
|
route: function() {
|
|
this.send(...arguments);
|
|
},
|
|
},
|
|
});
|