25 lines
634 B
JavaScript
25 lines
634 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
import { alias } from '@ember/object/computed';
|
|
import Sortable from 'nomad-ui/mixins/sortable';
|
|
|
|
export default Component.extend(Sortable, {
|
|
job: null,
|
|
|
|
classNames: ['boxed-section'],
|
|
|
|
// Provide a value that is bound to a query param
|
|
sortProperty: null,
|
|
sortDescending: null,
|
|
|
|
// Provide an action with access to the router
|
|
gotoTaskGroup() {},
|
|
|
|
taskGroups: computed('job.taskGroups.[]', function() {
|
|
return this.get('job.taskGroups') || [];
|
|
}),
|
|
|
|
listToSort: alias('taskGroups'),
|
|
sortedTaskGroups: alias('listSorted'),
|
|
});
|