73 lines
2.6 KiB
Handlebars
73 lines
2.6 KiB
Handlebars
{{#app-view class="service show"}}
|
|
{{#block-slot 'breadcrumbs'}}
|
|
<ol>
|
|
<li><a data-test-back href={{href-to 'dc.services'}}>All Services</a></li>
|
|
</ol>
|
|
{{/block-slot}}
|
|
{{#block-slot 'header'}}
|
|
<h1>
|
|
{{ item.Service.Service }}
|
|
{{#with (service/external-source item.Service) as |externalSource| }}
|
|
{{#with (css-var (concat '--' externalSource '-color-svg') 'none') as |bg| }}
|
|
{{#if (not-eq bg 'none') }}
|
|
<span data-test-external-source="{{externalSource}}" style={{{ concat 'background-image:' bg }}} data-tooltip="Registered via {{externalSource}}">Registered via {{externalSource}}</span>
|
|
{{/if}}
|
|
{{/with}}
|
|
{{/with}}
|
|
</h1>
|
|
{{/block-slot}}
|
|
{{#block-slot 'toolbar'}}
|
|
{{#if (gt items.length 0) }}
|
|
{{catalog-filter filters=healthFilters search=filters.s status=filters.status onchange=(action 'filter')}}
|
|
{{/if}}
|
|
{{/block-slot}}
|
|
{{#block-slot 'content'}}
|
|
{{#if (gt item.Tags.length 0)}}
|
|
<dl>
|
|
<dt>Tags</dt>
|
|
<dd data-test-tags>
|
|
{{#each item.Tags as |item|}}
|
|
<span>{{item}}</span>
|
|
{{/each}}
|
|
</dd>
|
|
</dl>
|
|
{{/if}}
|
|
{{#if (gt unhealthy.length 0) }}
|
|
<div data-test-unhealthy class="unhealthy">
|
|
<h2>Unhealthy Nodes</h2>
|
|
<div>
|
|
<ul>
|
|
{{#each unhealthy as |item|}}
|
|
{{healthchecked-resource
|
|
tagName='li'
|
|
data-test-node=item.Node.Node
|
|
href=(href-to 'dc.nodes.show' item.Node.Node)
|
|
name=item.Node.Node
|
|
service=item.Service.ID
|
|
address=(concat (default item.Service.Address item.Node.Address) ':' item.Service.Port)
|
|
checks=item.Checks
|
|
}}
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
{{#if (gt healthy.length 0) }}
|
|
<div data-test-healthy class="healthy">
|
|
<h2>Healthy Nodes</h2>
|
|
{{#list-collection cellHeight=113 items=healthy as |item index|}}
|
|
{{healthchecked-resource
|
|
href=(href-to 'dc.nodes.show' item.Node.Node)
|
|
data-test-node=item.Node.Node
|
|
name=item.Node.Node
|
|
service=item.Service.ID
|
|
address=(concat (default item.Service.Address item.Node.Address) ':' item.Service.Port)
|
|
checks=item.Checks
|
|
status=item.Checks.[0].Status
|
|
}}
|
|
{{/list-collection}}
|
|
</div>
|
|
{{/if}}
|
|
{{/block-slot}}
|
|
{{/app-view}}
|