35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import Route from '@ember/routing/route';
|
|
import { collect } from '@ember/object/computed';
|
|
import { watchRecord, watchRelationship, watchAll } from 'nomad-ui/utils/properties/watch';
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
|
|
|
export default Route.extend(WithWatchers, {
|
|
startWatchers(controller, model) {
|
|
if (!model) {
|
|
return;
|
|
}
|
|
controller.set('watchers', {
|
|
model: this.get('watch').perform(model),
|
|
summary: this.get('watchSummary').perform(model.get('summary')),
|
|
evaluations: this.get('watchEvaluations').perform(model),
|
|
latestDeployment:
|
|
model.get('supportsDeployments') && this.get('watchLatestDeployment').perform(model),
|
|
list: model.get('hasChildren') && this.get('watchAll').perform(),
|
|
});
|
|
},
|
|
|
|
watch: watchRecord('job'),
|
|
watchAll: watchAll('job'),
|
|
watchSummary: watchRecord('job-summary'),
|
|
watchEvaluations: watchRelationship('evaluations'),
|
|
watchLatestDeployment: watchRelationship('latestDeployment'),
|
|
|
|
watchers: collect(
|
|
'watch',
|
|
'watchAll',
|
|
'watchSummary',
|
|
'watchEvaluations',
|
|
'watchLatestDeployment'
|
|
),
|
|
});
|