89136cbf6a
Manual interventions: • decorators on the same line for service and controller injections and most computed property macros • preserving import order when possible, both per-line and intra-line • moving new imports to the bottom • removal of classic decorator for trivial cases • conversion of init to constructor when appropriate
28 lines
694 B
JavaScript
28 lines
694 B
JavaScript
import Component from '@ember/component';
|
|
import { action } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import generateExecUrl from 'nomad-ui/utils/generate-exec-url';
|
|
import openExecUrl from 'nomad-ui/utils/open-exec-url';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class OpenButton extends Component {
|
|
@service router;
|
|
|
|
@action
|
|
open() {
|
|
openExecUrl(this.generateUrl());
|
|
}
|
|
|
|
generateUrl() {
|
|
return generateExecUrl(this.router, {
|
|
job: this.job,
|
|
taskGroup: this.taskGroup,
|
|
task: this.task,
|
|
allocation: this.task,
|
|
});
|
|
}
|
|
}
|