open-nomad/ui/app/components/job-page/parts/title.js
Michael Lange 52a7a48177 Don't use generic ACL error messages
When the error is actually a 403, an ACL error is appropriate, but when
it isn't, fallback on what the API returns.
2021-01-28 12:18:53 -08:00

51 lines
1.2 KiB
JavaScript

import Component from '@ember/component';
import { task } from 'ember-concurrency';
import messageFromAdapterError from 'nomad-ui/utils/message-from-adapter-error';
import { tagName } from '@ember-decorators/component';
import classic from 'ember-classic-decorator';
@classic
@tagName('')
export default class Title extends Component {
job = null;
title = null;
handleError() {}
@task(function*() {
try {
const job = this.job;
yield job.stop();
// Eagerly update the job status to avoid flickering
this.job.set('status', 'dead');
} catch (err) {
this.handleError({
title: 'Could Not Stop Job',
description: messageFromAdapterError(err, 'stop jobs'),
});
}
})
stopJob;
@task(function*() {
const job = this.job;
const definition = yield job.fetchRawDefinition();
delete definition.Stop;
job.set('_newDefinition', JSON.stringify(definition));
try {
yield job.parse();
yield job.update();
// Eagerly update the job status to avoid flickering
job.set('status', 'running');
} catch (err) {
this.handleError({
title: 'Could Not Start Job',
description: messageFromAdapterError(err, 'start jobs'),
});
}
})
startJob;
}