2017-12-15 21:39:18 +00:00
|
|
|
import Route from '@ember/routing/route';
|
2018-03-01 00:27:15 +00:00
|
|
|
import { collect } from '@ember/object/computed';
|
2018-02-27 22:57:57 +00:00
|
|
|
import { watchRelationship } from 'nomad-ui/utils/properties/watch';
|
2018-03-01 00:27:15 +00:00
|
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2018-03-01 00:27:15 +00:00
|
|
|
export default Route.extend(WithWatchers, {
|
2017-09-19 14:47:10 +00:00
|
|
|
model() {
|
|
|
|
const job = this.modelFor('jobs.job');
|
2018-11-05 23:42:04 +00:00
|
|
|
return job && job.get('versions').then(() => job);
|
2017-09-19 14:47:10 +00:00
|
|
|
},
|
2018-02-27 22:57:57 +00:00
|
|
|
|
2018-03-06 22:27:01 +00:00
|
|
|
startWatchers(controller, model) {
|
2018-11-05 23:42:04 +00:00
|
|
|
if (model) {
|
|
|
|
controller.set('watcher', this.get('watchVersions').perform(model));
|
|
|
|
}
|
2018-02-27 22:57:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
watchVersions: watchRelationship('versions'),
|
2018-03-01 00:27:15 +00:00
|
|
|
watchers: collect('watchVersions'),
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|