refact: add conditional table logic (#15330)

This commit is contained in:
Jai 2022-11-22 09:19:16 -05:00 committed by GitHub
parent bebbf340e2
commit 9e6025f25b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 40 additions and 23 deletions

View File

@ -2,28 +2,45 @@
<div class="boxed-section-head">
Allocations
</div>
<div class="boxed-section-body is-full-bleed">
<ListTable @source={{@deployment.allocations}} @class="allocations" as |t|>
<t.head>
<th class="is-narrow"></th>
<th>ID</th>
<th>Task Group</th>
<th>Created</th>
<th>Modified</th>
<th>Status</th>
<th>Version</th>
<th>Node</th>
<th>Volume</th>
<th>CPU</th>
<th>Memory</th>
</t.head>
<t.body as |row|>
<AllocationRow
data-test-deployment-allocation
@allocation={{row.model}}
@context="job"
/>
</t.body>
</ListTable>
<div class="boxed-section-body {{if this.job.allocations.length "is-full-bleed"}}">
{{#if @deployment.allocations.length}}
<ListTable @source={{@deployment.allocations}} @class="allocations" as |t|>
<t.head>
<th class="is-narrow"></th>
<th>ID</th>
<th>Task Group</th>
<th>Created</th>
<th>Modified</th>
<th>Status</th>
<th>Version</th>
<th>Node</th>
<th>Volume</th>
<th>CPU</th>
<th>Memory</th>
</t.head>
<t.body as |row|>
<AllocationRow
data-test-deployment-allocation
@allocation={{row.model}}
@context="job"
/>
</t.body>
</ListTable>
{{else}}
<div class="empty-message" data-test-empty-recent-allocations>
<h3
class="empty-message-headline"
data-test-empty-recent-allocations-headline
>
No Allocations
</h3>
<p
class="empty-message-body"
data-test-empty-recent-allocations-message
>
No allocations have been placed.
</p>
</div>
{{/if}}
</div>
</div>