97 lines
2.5 KiB
Handlebars
97 lines
2.5 KiB
Handlebars
<Route
|
|
@name={{routeName}}
|
|
as |route|>
|
|
<DataLoader @src={{
|
|
uri '/${partition}/${nspace}/${dc}/gateways/for-service/${name}'
|
|
(hash
|
|
partition=route.params.partition
|
|
nspace=route.params.nspace
|
|
dc=route.params.dc
|
|
name=route.params.name
|
|
)
|
|
}} as |loader|>
|
|
|
|
<BlockSlot @name="error">
|
|
<AppError
|
|
@error={{loader.error}}
|
|
@login={{route.model.app.login.open}}
|
|
/>
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="loaded">
|
|
<div class="tab-section">
|
|
{{#let
|
|
|
|
(hash
|
|
value=(or sortBy "Status:asc")
|
|
change=(action (mut sortBy) value="target.selected")
|
|
)
|
|
|
|
(hash
|
|
instance=(hash
|
|
value=(if instance (split instance ',') undefined)
|
|
change=(action (mut instance) value="target.selectedItems")
|
|
)
|
|
searchproperty=(hash
|
|
value=(if (not-eq searchproperty undefined)
|
|
(split searchproperty ',')
|
|
searchProperties
|
|
)
|
|
change=(action (mut searchproperty) value="target.selectedItems")
|
|
default=searchProperties
|
|
)
|
|
)
|
|
|
|
(or route.params.partition route.model.user.token.Partition 'default')
|
|
(or route.params.nspace route.model.user.token.Namespace 'default')
|
|
route.params.dc
|
|
loader.data
|
|
|
|
as |sort filters partition nspace dc items|}}
|
|
{{#if (gt items.length 0)}}
|
|
<input type="checkbox" id="toolbar-toggle" />
|
|
<Consul::Upstream::SearchBar
|
|
@search={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
|
|
@sort={{sort}}
|
|
|
|
@filter={{filters}}
|
|
/>
|
|
{{/if}}
|
|
{{t
|
|
"routes.dc.services.show.upstreams.intro"
|
|
htmlSafe=true
|
|
}}
|
|
<DataCollection
|
|
@type="service"
|
|
@sort={{sort.value}}
|
|
@filters={{filters}}
|
|
@search={{search}}
|
|
@items={{items}}
|
|
as |collection|>
|
|
<collection.Collection>
|
|
<Consul::Upstream::List
|
|
@items={{collection.items}}
|
|
@dc={{dc}}
|
|
@nspace={{nspace}}
|
|
@partition={{partition}}
|
|
>
|
|
</Consul::Upstream::List>
|
|
</collection.Collection>
|
|
<collection.Empty>
|
|
<EmptyState>
|
|
<BlockSlot @name="body">
|
|
<p>
|
|
There are no upstreams{{#if (gt items.length 0)}} matching that search{{/if}}.
|
|
</p>
|
|
</BlockSlot>
|
|
</EmptyState>
|
|
</collection.Empty>
|
|
</DataCollection>
|
|
{{/let}}
|
|
</div>
|
|
</BlockSlot>
|
|
</DataLoader>
|
|
</Route>
|