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

21 lines
604 B
JavaScript
Raw Normal View History

import Route from '@ember/routing/route';
import { collect } from '@ember/object/computed';
2018-02-27 22:57:57 +00:00
import { watchRelationship } from 'nomad-ui/utils/properties/watch';
import WithWatchers from 'nomad-ui/mixins/with-watchers';
2017-09-19 14:47:10 +00:00
export default Route.extend(WithWatchers, {
2017-09-19 14:47:10 +00:00
model() {
const job = this.modelFor('jobs.job');
return job && job.get('versions').then(() => job);
2017-09-19 14:47:10 +00:00
},
2018-02-27 22:57:57 +00:00
startWatchers(controller, model) {
if (model) {
2019-03-26 07:46:44 +00:00
controller.set('watcher', this.watchVersions.perform(model));
}
2018-02-27 22:57:57 +00:00
},
watchVersions: watchRelationship('versions'),
watchers: collect('watchVersions'),
2017-09-19 14:47:10 +00:00
});