100 lines
3.0 KiB
Handlebars
100 lines
3.0 KiB
Handlebars
{{#if isAuthorized }}
|
|
{{title 'Roles'}}
|
|
{{else}}
|
|
{{title 'Access Controls'}}
|
|
{{/if}}
|
|
|
|
{{#let (selectable-key-values
|
|
(array "Name:asc" "A to Z")
|
|
(array "Name:desc" "Z to A")
|
|
(array "CreateIndex:asc" "Newest to oldest")
|
|
(array "CreateIndex:desc" "Oldest to newest")
|
|
selected=sortBy
|
|
)
|
|
as |sort|
|
|
}}
|
|
|
|
<AppView
|
|
@class="role list"
|
|
@loading={{isLoading}}
|
|
@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="disabled">
|
|
{{partial 'dc/acls/disabled'}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="authorization">
|
|
{{partial 'dc/acls/authorization'}}
|
|
</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) }}
|
|
<SearchBar
|
|
@value={{search}}
|
|
@onsearch={{action (mut search) value="target.value"}}
|
|
@secondary="sort"
|
|
@selected={{sort.selected}}
|
|
@options={{sort.items}}
|
|
@onchange={{action (mut sortBy) value='target.selected.key'}}
|
|
/>
|
|
{{/if}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
{{#let (sort-by (comparator 'role' sort.selected.key) items) as |sorted|}}
|
|
<ChangeableSet @dispatcher={{searchable 'role' sorted}} @terms={{search}}>
|
|
<BlockSlot @name="set" as |filtered|>
|
|
<ConsulRoleList
|
|
@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}} |