mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
* First batch of x-icon to hds::icons * Bunch more icons and a note for jobrow * Fixes for tests that depended on specific action names * Icon-bumped-down specified to solo-icons in table cells * Class-basing the icon bump and deferring icon svg load in env * Exec window sidebar icons were looking a little off
108 lines
2.9 KiB
Handlebars
108 lines
2.9 KiB
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<tr class="task-sub-row {{if @active "is-active"}}"
|
|
{{keyboard-shortcut
|
|
enumerated=true
|
|
action=(action "gotoTask" this.task.allocation this.task)
|
|
}}
|
|
>
|
|
<td colspan={{@namespan}}>
|
|
<div class="name-grid">
|
|
<LinkTo title={{this.task.name}} class="task-name" @route="allocations.allocation.task" @models={{array this.task.allocation this.task}}>{{this.task.name}}</LinkTo>
|
|
<button type="button" class="logs-sidebar-trigger button is-borderless is-inline is-compact" onclick={{action "handleTaskLogsClick" this.task}}>
|
|
<Hds::Icon @name="logs" @isInline={{true}} />View Logs
|
|
</button>
|
|
</div>
|
|
</td>
|
|
<td data-test-cpu class="is-1 has-text-centered">
|
|
{{#if this.task.isRunning}}
|
|
{{#if (and (not this.cpu) this.fetchStats.isRunning)}}
|
|
...
|
|
{{else if this.statsError}}
|
|
<span
|
|
class="tooltip text-center"
|
|
role="tooltip"
|
|
aria-label="Couldn't collect stats"
|
|
>
|
|
<Hds::Icon @name="alert-triangle" @color="warning" />
|
|
</span>
|
|
{{else}}
|
|
<div
|
|
class="inline-chart is-small tooltip"
|
|
role="tooltip"
|
|
aria-label="{{format-hertz this.cpu.used}}
|
|
/
|
|
{{format-hertz this.taskStats.reservedCPU}}"
|
|
>
|
|
<progress
|
|
class="progress is-info is-small"
|
|
value="{{this.cpu.percent}}"
|
|
max="1"
|
|
>
|
|
{{this.cpu.percent}}
|
|
</progress>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
</td>
|
|
<td data-test-mem class="is-1 has-text-centered">
|
|
{{#if this.task.isRunning}}
|
|
{{#if (and (not this.memory) this.fetchStats.isRunning)}}
|
|
...
|
|
{{else if this.statsError}}
|
|
<span
|
|
class="tooltip is-small text-center"
|
|
role="tooltip"
|
|
aria-label="Couldn't collect stats"
|
|
>
|
|
<Hds::Icon @name="alert-triangle" @color="warning" />
|
|
</span>
|
|
{{else}}
|
|
<div
|
|
class="inline-chart tooltip"
|
|
role="tooltip"
|
|
aria-label="{{format-bytes this.memory.used}}
|
|
/
|
|
{{format-bytes this.taskStats.reservedMemory start="MiB"}}"
|
|
>
|
|
<progress
|
|
class="progress is-danger is-small"
|
|
value="{{this.memory.percent}}"
|
|
max="1"
|
|
>
|
|
{{this.memory.percent}}
|
|
</progress>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
</td>
|
|
{{#if @jobHasActions}}
|
|
<td data-test-actions>
|
|
{{#if (can "exec allocation" namespace=this.namespace)}}
|
|
{{#if this.task.task.actions.length}}
|
|
<Hds::Dropdown class="actions-dropdown" as |dd|>
|
|
<dd.ToggleIcon @size="small" @icon="more-horizontal" @text="Actions" @hasChevron={{false}} />
|
|
{{#each this.task.task.actions as |action|}}
|
|
<dd.Interactive {{on "click" (perform this.runAction action this.task.allocation.id)}} @text="{{action.name}}" />
|
|
{{/each}}
|
|
</Hds::Dropdown>
|
|
{{/if}}
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
</tr>
|
|
|
|
{{yield}}
|
|
|
|
{{#if this.shouldShowLogs}}
|
|
<TaskContextSidebar
|
|
@task={{this.task}}
|
|
@fns={{hash
|
|
closeSidebar=this.closeSidebar
|
|
}}
|
|
/>
|
|
{{/if}}
|