open-consul/ui/packages/consul-ui/app/templates/dc/services/instance/healthchecks.hbs

91 lines
2.9 KiB
Handlebars
Raw Normal View History

2022-10-13 21:48:18 +00:00
<Route @name={{routeName}} as |route|>
{{#let
2022-10-13 21:48:18 +00:00
(filter (action 'syntheticNodeSearchPropertyFilter' route.model.item) searchProperties)
as |filteredSearchProperties|
}}
{{#let
2022-10-13 21:48:18 +00:00
(hash value=(or sortBy 'Status:asc') change=(action (mut sortBy) value='target.selected'))
(hash
status=(hash
value=(if status (split status ',') undefined)
2022-10-13 21:48:18 +00:00
change=(action (mut status) value='target.selectedItems')
)
check=(hash
value=(if check (split check ',') undefined)
2022-10-13 21:48:18 +00:00
change=(action (mut check) value='target.selectedItems')
)
searchproperty=(hash
2022-10-13 21:48:18 +00:00
value=(if
(not-eq searchproperty undefined) (split searchproperty ',') filteredSearchProperties
)
2022-10-13 21:48:18 +00:00
change=(action (mut searchproperty) value='target.selectedItems')
default=filteredSearchProperties
)
)
2022-10-13 21:48:18 +00:00
(filter
(action 'syntheticNodeHealthCheckFilter' route.model.item)
2022-10-13 21:48:18 +00:00
(merge-checks
(array route.model.item.Checks route.model.proxy.Checks)
route.model.proxy.ServiceProxy.Expose.Checks
)
)
2022-10-13 21:48:18 +00:00
as |sort filters items|
}}
<div class='tab-section'>
2022-10-13 21:48:18 +00:00
{{#if (gt items.length 0)}}
<input type='checkbox' id='toolbar-toggle' />
<Consul::HealthCheck::SearchBar
@search={{search}}
2022-10-13 21:48:18 +00:00
@onsearch={{action (mut search) value='target.value'}}
@sort={{sort}}
@filter={{filters}}
/>
{{/if}}
2022-10-13 21:48:18 +00:00
{{#let (find-by 'Type' 'serf' items) as |serf|}}
{{#if (and serf (eq serf.Status 'critical'))}}
<Notice data-test-critical-serf-notice @type='warning' as |notice|>
<notice.Header>
<h2>
2022-10-13 21:48:18 +00:00
{{t 'routes.dc.services.instance.healthchecks.critical-serf-notice.header'}}
</h2>
</notice.Header>
<notice.Body>
{{t
2022-10-13 21:48:18 +00:00
'routes.dc.services.instance.healthchecks.critical-serf-notice.body'
htmlSafe=true
}}
</notice.Body>
</Notice>
{{/if}}
{{/let}}
<DataCollection
2022-10-13 21:48:18 +00:00
@type='health-check'
@sort={{sort.value}}
@filters={{filters}}
@search={{search}}
@items={{items}}
2022-10-13 21:48:18 +00:00
as |collection|
>
<collection.Collection>
2022-10-13 21:48:18 +00:00
<Consul::HealthCheck::List @items={{collection.items}} />
</collection.Collection>
<collection.Empty>
<EmptyState>
2022-10-13 21:48:18 +00:00
<BlockSlot @name='body'>
{{t
'routes.dc.services.instance.healthchecks.empty'
items=items.length
htmlSafe=true
}}
</BlockSlot>
</EmptyState>
2022-10-13 21:48:18 +00:00
</collection.Empty>
</DataCollection>
2022-10-13 21:48:18 +00:00
</div>
{{/let}}
{{/let}}
</Route>