60 lines
1.8 KiB
Handlebars
60 lines
1.8 KiB
Handlebars
{{#let (hash
|
|
statuses=(if status (split status ',') undefined)
|
|
sources=(if source (split source ',') undefined)
|
|
searchproperties=(if (not-eq searchproperty undefined)
|
|
(split searchproperty ',')
|
|
searchProperties
|
|
)
|
|
) as |filters|}}
|
|
{{#let (or sortBy "Status:asc") as |sort|}}
|
|
{{#let (reject-by 'Service.Kind' 'connect-proxy' item.Services) as |items|}}
|
|
<div class="tab-section">
|
|
{{#if (gt items.length 0) }}
|
|
<input type="checkbox" id="toolbar-toggle" />
|
|
<Consul::ServiceInstance::SearchBar
|
|
@sources={{get (collection items) 'ExternalSources'}}
|
|
@search={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
@searchproperties={{searchProperties}}
|
|
|
|
@sort={{sort}}
|
|
@onsort={{action (mut sortBy) value="target.selected"}}
|
|
|
|
@filter={{filters}}
|
|
@onfilter={{hash
|
|
searchproperty=(action (mut searchproperty) value="target.selectedItems")
|
|
status=(action (mut status) value="target.selectedItems")
|
|
source=(action (mut source) value="target.selectedItems")
|
|
}}
|
|
/>
|
|
{{/if}}
|
|
{{! filter out any sidecar proxies }}
|
|
<DataCollection
|
|
@type="service-instance"
|
|
@sort={{sort}}
|
|
@filters={{filters}}
|
|
@search={{search}}
|
|
@items={{items}}
|
|
as |collection|>
|
|
<collection.Collection>
|
|
<Consul::ServiceInstance::List
|
|
@node={{item}}
|
|
@routeName="dc.services.show"
|
|
@items={{collection.items}}
|
|
@checks={{checks}}
|
|
/>
|
|
</collection.Collection>
|
|
<collection.Empty>
|
|
<EmptyState>
|
|
<BlockSlot @name="body">
|
|
<p>
|
|
This node has no service instances{{#if (gt items.length 0)}} matching that search{{/if}}.
|
|
</p>
|
|
</BlockSlot>
|
|
</EmptyState>
|
|
</collection.Empty>
|
|
</DataCollection>
|
|
</div>
|
|
{{/let}}
|
|
{{/let}}
|
|
{{/let}} |