fc7de8b153
This closes #7454. It makes use of the existing watchable tools to allow the exec popup sidebar to be live-updating. It also adds alphabetic sorting of task groups and tasks.
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
import { collect } from '@ember/object/computed';
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
|
import { watchRecord, watchRelationship } from 'nomad-ui/utils/properties/watch';
|
|
|
|
export default Route.extend(WithWatchers, {
|
|
store: service(),
|
|
token: service(),
|
|
|
|
serialize(model) {
|
|
return { job_name: model.get('plainId') };
|
|
},
|
|
|
|
model(params, transition) {
|
|
const namespace = transition.to.queryParams.namespace || this.get('system.activeNamespace.id');
|
|
const name = params.job_name;
|
|
const fullId = JSON.stringify([name, namespace || 'default']);
|
|
return this.store
|
|
.findRecord('job', fullId)
|
|
.then(job => {
|
|
return job.get('allocations').then(() => job);
|
|
})
|
|
.catch(notifyError(this));
|
|
},
|
|
|
|
startWatchers(controller, model) {
|
|
if (model) {
|
|
controller.set('watcher', this.watch.perform(model));
|
|
controller.set('watchAllocations', this.watchAllocations.perform(model));
|
|
}
|
|
},
|
|
|
|
watch: watchRecord('job'),
|
|
watchAllocations: watchRelationship('allocations'),
|
|
|
|
watchers: collect('watch', 'watchAllocations'),
|
|
});
|