27 lines
751 B
JavaScript
27 lines
751 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { collect } from '@ember/object/computed';
|
|
import {
|
|
watchRecord,
|
|
watchRelationship,
|
|
} from 'nomad-ui/utils/properties/watch';
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
|
|
|
export default class VersionsRoute extends Route.extend(WithWatchers) {
|
|
model() {
|
|
const job = this.modelFor('jobs.job');
|
|
return job && job.get('versions').then(() => job);
|
|
}
|
|
|
|
startWatchers(controller, model) {
|
|
if (model) {
|
|
controller.set('watcher', this.watch.perform(model));
|
|
controller.set('watchVersions', this.watchVersions.perform(model));
|
|
}
|
|
}
|
|
|
|
@watchRecord('job') watch;
|
|
@watchRelationship('versions') watchVersions;
|
|
|
|
@collect('watch', 'watchVersions') watchers;
|
|
}
|