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

46 lines
1.4 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 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
2017-10-23 17:27:22 +00:00
serialize(model) {
2022-01-14 15:11:22 +00:00
return { job_name: JSON.parse(model.get('id')).join('@') };
}
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 })
2021-12-28 14:45:20 +00:00
.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'));
}
// Optimizing future node look ups by preemptively loading everything
if (job.get('hasClientStatus') && this.can.can('read client')) {
relatedModelsQueries.push(this.store.findAll('node'));
}
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));
}
}