mirror of
https://github.com/status-im/consul.git
synced 2025-01-28 14:34:59 +00:00
bb95738321
Adds a 'status' for the filtering/searching in the UI, without this its not super clear that you are filtering a recordset due to the menu selections being hidden once closed. You can also use the pills in this status view to delete individual filters.
120 lines
3.7 KiB
Handlebars
120 lines
3.7 KiB
Handlebars
{{page-title 'Intentions'}}
|
|
<DataLoader @src={{concat '/' nspace '/' dc '/intentions'}} as |api|>
|
|
|
|
<BlockSlot @name="error">
|
|
<AppError @error={{api.error}} />
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="loaded">
|
|
{{#let
|
|
|
|
(hash
|
|
value=(or sortBy "Action:asc")
|
|
change=(action (mut sortBy) value="target.selected")
|
|
)
|
|
|
|
(hash
|
|
access=(hash
|
|
value=(if access (split access ',') undefined)
|
|
change=(action (mut access) value="target.selectedItems")
|
|
)
|
|
searchproperty=(hash
|
|
value=(if (not-eq searchproperty undefined)
|
|
(split searchproperty ',')
|
|
searchProperties
|
|
)
|
|
change=(action (mut searchproperty) value="target.selectedItems")
|
|
default=searchProperties
|
|
)
|
|
)
|
|
|
|
api.data
|
|
|
|
as |sort filters items|}}
|
|
|
|
<AppView>
|
|
<BlockSlot @name="header">
|
|
<h1>
|
|
Intentions <em>{{format-number items.length}} total</em>
|
|
</h1>
|
|
<label for="toolbar-toggle"></label>
|
|
</BlockSlot>
|
|
<BlockSlot @name="actions">
|
|
<a data-test-create href="{{href-to 'dc.intentions.create'}}" class="type-create">Create</a>
|
|
</BlockSlot>
|
|
<BlockSlot @name="toolbar">
|
|
|
|
{{#if (gt items.length 0) }}
|
|
<Consul::Intention::SearchBar
|
|
@search={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
|
|
@sort={{sort}}
|
|
|
|
@filter={{filters}}
|
|
/>
|
|
{{/if}}
|
|
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
<DataWriter
|
|
@sink={{concat '/' dc '/' nspace '/intention/'}}
|
|
@type="intention"
|
|
@ondelete={{refresh-route}}
|
|
as |writer|>
|
|
<BlockSlot @name="content">
|
|
<DataCollection
|
|
@type="intention"
|
|
@sort={{sort.value}}
|
|
@filters={{filters}}
|
|
@search={{search}}
|
|
@items={{items}}
|
|
as |collection|>
|
|
<collection.Collection>
|
|
<Consul::Intention::List
|
|
@items={{collection.items}}
|
|
@delete={{writer.delete}}
|
|
as |list|>
|
|
<list.CustomResourceNotice />
|
|
<list.Table />
|
|
</Consul::Intention::List>
|
|
</collection.Collection>
|
|
<collection.Empty>
|
|
<EmptyState @allowLogin={{true}}>
|
|
<BlockSlot @name="header">
|
|
<h2>
|
|
{{#if (gt items.length 0)}}
|
|
No intentions found
|
|
{{else}}
|
|
Welcome to Intentions
|
|
{{/if}}
|
|
</h2>
|
|
</BlockSlot>
|
|
<BlockSlot @name="body">
|
|
<p>
|
|
{{#if (gt items.length 0)}}
|
|
No intentions where found matching that search, or you may not have access to view the intentions you are searching for.
|
|
{{else}}
|
|
There don't seem to be any intentions, or you may not have access to view intentions yet.
|
|
{{/if}}
|
|
</p>
|
|
</BlockSlot>
|
|
<BlockSlot @name="actions">
|
|
<li class="docs-link">
|
|
<a href="{{env 'CONSUL_DOCS_URL'}}/commands/intention" rel="noopener noreferrer" target="_blank">Documentation on intentions</a>
|
|
</li>
|
|
<li class="learn-link">
|
|
<a href="{{env 'CONSUL_DOCS_LEARN_URL'}}/consul/getting-started/connect" rel="noopener noreferrer" target="_blank">Read the guide</a>
|
|
</li>
|
|
</BlockSlot>
|
|
</EmptyState>
|
|
</collection.Empty>
|
|
</DataCollection>
|
|
</BlockSlot>
|
|
</DataWriter>
|
|
</BlockSlot>
|
|
</AppView>
|
|
|
|
{{/let}}
|
|
</BlockSlot>
|
|
</DataLoader> |