2020-05-13 15:28:11 +00:00
<div id="upstreams" class="tab-section">
<div role="tabpanel">
2020-09-01 18:13:11 +00:00
{{ # let ( hash
instances=(if instance (split instance ',') undefined)
) as |filters|}}
{{ # let ( or sortBy "Name:asc" ) as | sort | }}
{{ # if ( gt gatewayServices .length 0 ) }}
<input type="checkbox" id="toolbar-toggle" />
<ConsulUpstreamSearchBar
@search= {{ search }}
@onsearch= {{ action ( mut search ) value = "target.value" }}
@sort= {{ sort }}
@onsort= {{ action ( mut sortBy ) value = "target.selected" }}
@filter= {{ filters }}
@onfilter= {{ hash
instance=(action (mut instance) value="target.selectedItems")
}}
/>
{{ / if }}
2020-05-13 15:28:11 +00:00
<p>
2020-07-06 16:06:57 +00:00
Upstreams are services that may receive traffic from this gateway. Learn more about configuring gateways in our <a href=" {{ env 'CONSUL_DOCS_URL' }} /connect/ingress-gateway" target="_blank" rel="noopener noreferrer">documentation</a>.
2020-05-13 15:28:11 +00:00
</p>
2020-09-01 18:13:11 +00:00
{{ # let ( filter ( filter-predicate 'service' filters ) gatewayServices ) as | filtered | }}
{{ # let ( sort-by ( comparator 'service' sort ) filtered ) as | sorted | }}
<ChangeableSet @dispatcher= {{ searchable 'service' sorted }} @terms= {{ search }} >
<BlockSlot @name="set" as |searched|>
<ConsulServiceList
@items= {{ searched }}
@nspace= {{ nspace }}
/>
</BlockSlot>
<BlockSlot @name="empty">
<EmptyState>
<BlockSlot @name="body">
<p>
There are no upstreams.
</p>
</BlockSlot>
</EmptyState>
</BlockSlot>
</ChangeableSet>
{{ / let }}
{{ / let }}
{{ / let }}
{{ / let }}
2020-05-13 15:28:11 +00:00
</div>
</div>