82 lines
2.5 KiB
Handlebars
82 lines
2.5 KiB
Handlebars
{{#if isAuthorized }}
|
|
{{title 'Roles'}}
|
|
{{else}}
|
|
{{title 'Access Controls'}}
|
|
{{/if}}
|
|
|
|
{{#let (or sortBy "Name:asc") as |sort|}}
|
|
<AppView
|
|
@authorized={{isAuthorized}}
|
|
@enabled={{isEnabled}}
|
|
>
|
|
<BlockSlot @name="notification" as |status type|>
|
|
{{partial 'dc/acls/roles/notifications'}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="header">
|
|
<h1>
|
|
Access Controls
|
|
</h1>
|
|
</BlockSlot>
|
|
<BlockSlot @name="nav">
|
|
{{#if isAuthorized }}
|
|
{{partial 'dc/acls/nav'}}
|
|
{{/if}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="actions">
|
|
<a data-test-create href="{{href-to 'dc.acls.roles.create'}}" class="type-create">Create</a>
|
|
</BlockSlot>
|
|
<BlockSlot @name="toolbar">
|
|
{{#if (gt items.length 0) }}
|
|
<Consul::Role::SearchBar
|
|
@search={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
|
|
@sort={{sort}}
|
|
@onsort={{action (mut sortBy) value="target.selected"}}
|
|
/>
|
|
{{/if}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
{{#let (sort-by (comparator 'role' sort) items) as |sorted|}}
|
|
<ChangeableSet @dispatcher={{searchable 'role' sorted}} @terms={{search}}>
|
|
<BlockSlot @name="set" as |filtered|>
|
|
<Consul::Role::List
|
|
@items={{filtered}}
|
|
@ondelete={{action send 'delete'}}
|
|
/>
|
|
</BlockSlot>
|
|
<BlockSlot @name="empty">
|
|
<EmptyState @allowLogin={{true}}>
|
|
<BlockSlot @name="header">
|
|
<h2>
|
|
{{#if (gt items.length 0)}}
|
|
No roles found
|
|
{{else}}
|
|
Welcome to Roles
|
|
{{/if}}
|
|
</h2>
|
|
</BlockSlot>
|
|
<BlockSlot @name="body">
|
|
<p>
|
|
{{#if (gt items.length 0)}}
|
|
No roles where found matching that search, or you may not have access to view the roles you are searching for.
|
|
{{else}}
|
|
There don't seem to be any roles, or you may not have access to view roles yet.
|
|
{{/if}}
|
|
</p>
|
|
</BlockSlot>
|
|
<BlockSlot @name="actions">
|
|
<li class="docs-link">
|
|
<a href="{{env 'CONSUL_DOCS_URL'}}/commands/acl/role" rel="noopener noreferrer" target="_blank">Documentation on roles</a>
|
|
</li>
|
|
<li class="learn-link">
|
|
<a href="{{env 'CONSUL_DOCS_API_URL'}}/acl/roles.html" rel="noopener noreferrer" target="_blank">Read the guide</a>
|
|
</li>
|
|
</BlockSlot>
|
|
</EmptyState>
|
|
</BlockSlot>
|
|
</ChangeableSet>
|
|
{{/let}}
|
|
</BlockSlot>
|
|
</AppView>
|
|
{{/let}} |