40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
import { alias } from '@ember/object/computed';
|
|
import Controller from '@ember/controller';
|
|
import { computed } from '@ember/object';
|
|
import Sortable from 'nomad-ui/mixins/sortable';
|
|
import Searchable from 'nomad-ui/mixins/searchable';
|
|
import WithNamespaceResetting from 'nomad-ui/mixins/with-namespace-resetting';
|
|
|
|
export default Controller.extend(Sortable, Searchable, WithNamespaceResetting, {
|
|
queryParams: {
|
|
currentPage: 'page',
|
|
searchTerm: 'search',
|
|
sortProperty: 'sort',
|
|
sortDescending: 'desc',
|
|
},
|
|
|
|
currentPage: 1,
|
|
pageSize: 25,
|
|
|
|
sortProperty: 'modifyIndex',
|
|
sortDescending: true,
|
|
|
|
job: alias('model'),
|
|
|
|
searchProps: computed(() => ['shortId', 'name', 'taskGroupName']),
|
|
|
|
allocations: computed('model.allocations.[]', function() {
|
|
return this.get('model.allocations') || [];
|
|
}),
|
|
|
|
listToSort: alias('allocations'),
|
|
listToSearch: alias('listSorted'),
|
|
sortedAllocations: alias('listSearched'),
|
|
|
|
actions: {
|
|
gotoAllocation(allocation) {
|
|
this.transitionToRoute('allocations.allocation', allocation);
|
|
},
|
|
},
|
|
});
|