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

44 lines
1.2 KiB
JavaScript
Raw Normal View History

import { inject as service } from '@ember/service';
import Route from '@ember/routing/route';
import RSVP from 'rsvp';
2017-09-28 17:06:13 +00:00
import notifyError from 'nomad-ui/utils/notify-error';
import { jobCrumbs } from 'nomad-ui/utils/breadcrumb-utils';
import classic from 'ember-classic-decorator';
2017-09-19 14:47:10 +00:00
@classic
export default class JobRoute extends Route {
@service can;
@service store;
@service token;
2017-09-19 14:47:10 +00:00
breadcrumbs = jobCrumbs;
2018-06-27 18:29:04 +00:00
2017-10-23 17:27:22 +00:00
serialize(model) {
return { job_name: model.get('plainId') };
}
2017-10-23 17:27:22 +00:00
model(params, transition) {
const namespace = transition.to.queryParams.namespace || 'default';
2017-10-23 17:27:22 +00:00
const name = params.job_name;
const fullId = JSON.stringify([name, namespace]);
2019-03-26 07:46:44 +00:00
return this.store
2017-10-23 17:27:22 +00:00
.findRecord('job', fullId, { reload: true })
.then(job => {
const relatedModelsQueries = [
job.get('allocations'),
job.get('evaluations'),
this.store.query('job', { namespace }),
this.store.findAll('namespace'),
];
if (this.can.can('accept recommendation')) {
relatedModelsQueries.push(job.get('recommendationSummaries'));
}
return RSVP.all(relatedModelsQueries).then(() => job);
2017-10-23 17:27:22 +00:00
})
2017-09-28 17:06:13 +00:00
.catch(notifyError(this));
}
}