50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
import { collect } from '@ember/object/computed';
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
|
import { watchRecord, watchRelationship } from 'nomad-ui/utils/properties/watch';
|
|
|
|
export default Route.extend(WithWatchers, {
|
|
store: service(),
|
|
token: service(),
|
|
|
|
serialize(model) {
|
|
return { job_name: model.get('plainId') };
|
|
},
|
|
|
|
model(params, transition) {
|
|
const namespace = transition.to.queryParams.namespace || this.get('system.activeNamespace.id');
|
|
const name = params.job_name;
|
|
const fullId = JSON.stringify([name, namespace || 'default']);
|
|
|
|
const jobPromise = this.store
|
|
.findRecord('job', fullId)
|
|
.then(job => {
|
|
return job.get('allocations').then(() => job);
|
|
})
|
|
.catch(notifyError(this));
|
|
|
|
const xtermImport = import('xterm').then(module => module.Terminal);
|
|
|
|
return Promise.all([jobPromise, xtermImport]);
|
|
},
|
|
|
|
setupController(controller, [job, Terminal]) {
|
|
this._super(controller, job);
|
|
controller.setUpTerminal(Terminal);
|
|
},
|
|
|
|
startWatchers(controller, model) {
|
|
if (model) {
|
|
controller.set('watcher', this.watch.perform(model));
|
|
controller.set('watchAllocations', this.watchAllocations.perform(model));
|
|
}
|
|
},
|
|
|
|
watch: watchRecord('job'),
|
|
watchAllocations: watchRelationship('allocations'),
|
|
|
|
watchers: collect('watch', 'watchAllocations'),
|
|
});
|