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

29 lines
884 B
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';
2017-09-19 14:47:10 +00:00
export default class JobRoute extends Route {
@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) {
2019-10-08 18:44:19 +00:00
const namespace = transition.to.queryParams.namespace || this.get('system.activeNamespace.id');
2017-10-23 17:27:22 +00:00
const name = params.job_name;
const fullId = JSON.stringify([name, namespace || 'default']);
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 => {
return RSVP.all([job.get('allocations'), job.get('evaluations')]).then(() => job);
2017-10-23 17:27:22 +00:00
})
2017-09-28 17:06:13 +00:00
.catch(notifyError(this));
}
}