open-nomad/ui/app/templates/components/exec/task-group-parent.hbs
Buck Doyle 244157786a
Add explicit this to templates (#8388)
This is the result of running the no-implicit-this-codemod, some manual fixes,
and the addition of a linting rule to prevent future ambiguity.
2020-07-09 15:19:07 -05:00

25 lines
1.2 KiB
Handlebars

<button {{action "toggleOpen"}} class="toggle-button {{if this.hasPendingAllocations "is-loading"}}" data-test-task-group-name type="button">
{{x-icon (if this.isOpen "chevron-down" "chevron-right")}}
{{this.taskGroup.name}}
</button>
{{#if this.isOpen}}
<ul class="task-list">
{{#each this.sortedTasks as |task|}}
{{#if this.shouldOpenInNewWindow}}
<a {{on "click" (action "openInNewWindow" this.taskGroup.job this.taskGroup task)}} href="#" class="task-item" data-test-task>
<Exec::TaskContents
@task={{task}}
@active={{and this.currentRouteIsThisTaskGroup (eq task.name this.activeTaskName)}}
@shouldOpenInNewWindow={{this.shouldOpenInNewWindow}} />
</a>
{{else}}
<LinkTo @route="exec.task-group.task" @models={{array this.taskGroup.job.plainId this.taskGroup.name task.name}} class="task-item" data-test-task={{true}}>
<Exec::TaskContents
@task={{task}}
@active={{and this.currentRouteIsThisTaskGroup (eq task.name this.activeTaskName)}}
@shouldOpenInNewWindow={{this.shouldOpenInNewWindow}} />
</LinkTo>
{{/if}}
{{/each}}
</ul>
{{/if}}