open-nomad/ui/app/routes/jobs/job/clients.js

31 lines
856 B
JavaScript

import Route from '@ember/routing/route';
import WithWatchers from 'nomad-ui/mixins/with-watchers';
import { watchRecord, watchRelationship, watchAll } from 'nomad-ui/utils/properties/watch';
import { collect } from '@ember/object/computed';
export default class ClientsRoute extends Route.extend(WithWatchers) {
async model() {
await this.store.findAll('node');
return this.modelFor('jobs.job');
}
startWatchers(controller, model) {
if (!model) {
return;
}
controller.set('watchers', {
model: this.watch.perform(model),
allocations: this.watchAllocations.perform(model),
nodes: this.watchNodes.perform(),
});
}
@watchRecord('job') watch;
@watchAll('node') watchNodes;
@watchRelationship('allocations') watchAllocations;
@collect('watch', 'watchNodes', 'watchAllocations')
watchers;
}