a30a7e6bdf
* keyboard-commands helper to add widen and narrow commands * Percy flake fix
100 lines
2.2 KiB
Handlebars
100 lines
2.2 KiB
Handlebars
<Portal @target="log-sidebar-portal">
|
|
<div
|
|
class="sidebar task-context-sidebar has-subnav {{if this.wide "wide"}} {{if @task.events.length "has-events"}} {{if this.isSideBarOpen "open"}}"
|
|
{{on-click-outside
|
|
@fns.closeSidebar
|
|
capture=true
|
|
}}
|
|
>
|
|
{{#if @task}}
|
|
{{keyboard-commands this.keyCommands}}
|
|
<header>
|
|
<h1 class="title">
|
|
{{@task.name}}
|
|
<span class="state {{@task.state}}">
|
|
{{@task.state}}
|
|
</span>
|
|
</h1>
|
|
<LinkTo
|
|
class="link"
|
|
title={{@task.name}}
|
|
@route="allocations.allocation.task"
|
|
@models={{array @task.allocation @task}}
|
|
>
|
|
Go to Task page
|
|
</LinkTo>
|
|
<button
|
|
class="button close is-borderless"
|
|
type="button"
|
|
{{on "click" @fns.closeSidebar}}
|
|
>
|
|
{{x-icon "cancel"}}
|
|
</button>
|
|
</header>
|
|
{{#if @task.events.length}}
|
|
<div class="boxed-section task-events">
|
|
<div class="boxed-section-head">
|
|
Recent Events
|
|
</div>
|
|
<div class="boxed-section-body is-full-bleed">
|
|
<ListTable
|
|
@source={{reverse @task.events}}
|
|
@class="is-striped" as |t|
|
|
>
|
|
<t.head>
|
|
<th class="is-3">
|
|
Time
|
|
</th>
|
|
<th class="is-1">
|
|
Type
|
|
</th>
|
|
<th>
|
|
Description
|
|
</th>
|
|
</t.head>
|
|
<t.body as |row|>
|
|
<tr data-test-task-event>
|
|
<td data-test-task-event-time>
|
|
{{format-ts row.model.time}}
|
|
</td>
|
|
<td data-test-task-event-type>
|
|
{{row.model.type}}
|
|
</td>
|
|
<td data-test-task-event-message>
|
|
{{#if row.model.message}}
|
|
{{row.model.message}}
|
|
{{else}}
|
|
<em>
|
|
No message
|
|
</em>
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
</t.body>
|
|
</ListTable>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<TaskLog
|
|
@allocation={{@task.allocation}}
|
|
@task={{@task.name}}
|
|
@shouldFillHeight={{false}}
|
|
/>
|
|
|
|
|
|
{{/if}}
|
|
<button
|
|
class="button is-borderless widener"
|
|
type="button"
|
|
{{on "click" this.toggleWide}}
|
|
>
|
|
{{#if this.wide}}
|
|
{{keyboard-commands (array this.narrowCommand)}}
|
|
{{else}}
|
|
{{keyboard-commands (array this.widenCommand)}}
|
|
{{/if}}
|
|
{{x-icon (if this.wide "arrow-right" "arrow-left")}}
|
|
</button>
|
|
</div>
|
|
</Portal> |