2021-12-17 03:44:29 +00:00
|
|
|
<HeaderScope />
|
|
|
|
<Toolbar>
|
|
|
|
{{#if this.model.meta.total}}
|
|
|
|
<ToolbarFilters>
|
|
|
|
<NavigateInput
|
|
|
|
@filterFocusDidChange={{action "setFilterFocus"}}
|
|
|
|
@filterDidChange={{action "setFilter"}}
|
|
|
|
@filter={{this.filter}}
|
|
|
|
@filterMatchesKey={{this.filterMatchesKey}}
|
|
|
|
@firstPartialMatch={{this.firstPartialMatch}}
|
|
|
|
@placeholder="Filter scopes by name"
|
|
|
|
@urls={{hash
|
|
|
|
create="vault.cluster.secrets.backend.kmip.scopes.create"
|
|
|
|
list="vault.cluster.secrets.backend.kmip.scopes.index"
|
|
|
|
show="vault.cluster.secrets.backend.kmip.scope.roles"
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
{{#if this.filterFocused}}
|
|
|
|
{{#if this.filterMatchesKey}}
|
|
|
|
<p class="input-hint">
|
|
|
|
<kbd>ENTER</kbd>
|
|
|
|
to go to
|
|
|
|
<code>{{this.filter}}</code>
|
|
|
|
</p>
|
2019-06-21 21:05:45 +00:00
|
|
|
{{/if}}
|
2021-12-17 03:44:29 +00:00
|
|
|
{{#if this.firstPartialMatch}}
|
|
|
|
<p class="input-hint">
|
|
|
|
<kbd>TAB</kbd>
|
|
|
|
to complete
|
|
|
|
<code>{{this.firstPartialMatch.id}}</code>
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</ToolbarFilters>
|
|
|
|
{{/if}}
|
|
|
|
<ToolbarActions>
|
2022-10-18 15:46:02 +00:00
|
|
|
<ToolbarLink @route="scopes.create" @type="add" data-test-scope-create>
|
2021-12-17 03:44:29 +00:00
|
|
|
Create scope
|
|
|
|
</ToolbarLink>
|
|
|
|
</ToolbarActions>
|
|
|
|
</Toolbar>
|
|
|
|
<ListView @items={{this.model}} @itemNoun="scope" @paginationRouteName="scopes.index" as |list|>
|
|
|
|
{{#if list.empty}}
|
|
|
|
<list.empty
|
|
|
|
@title="KMIP Secrets Engine"
|
|
|
|
@message="First, let's create a scope that our roles and credentials will belong to. A client can only access objects within their role's scope."
|
|
|
|
>
|
|
|
|
<LinkTo @route="scopes.create">
|
|
|
|
Create a scope
|
|
|
|
</LinkTo>
|
|
|
|
</list.empty>
|
|
|
|
{{else if list.item}}
|
2019-06-21 21:05:45 +00:00
|
|
|
<ListItem @linkPrefix={{this.mountPoint}} @linkParams={{array "scope.roles" list.item.id}} as |Item|>
|
2021-12-17 03:44:29 +00:00
|
|
|
<Item.content>
|
|
|
|
<Icon @name="folder" class="has-text-grey-light" />{{list.item.id}}
|
|
|
|
</Item.content>
|
|
|
|
<Item.menu as |m|>
|
|
|
|
<li class="action">
|
|
|
|
<LinkTo @route="scope" @model={{list.item.id}} class="is-block">
|
|
|
|
View scope
|
|
|
|
</LinkTo>
|
|
|
|
</li>
|
|
|
|
{{#if list.item.updatePath.canDelete}}
|
|
|
|
<MenuLoader @loadingParam={{list.item.updatePath.isPending}}>
|
|
|
|
<m.Message
|
|
|
|
@id={{list.item.id}}
|
|
|
|
@triggerText="Delete scope"
|
|
|
|
@title={{concat "Delete scope " list.item.id "?"}}
|
|
|
|
@message="This will permanently delete this scope and all roles and credentials contained within"
|
|
|
|
@cancelButtonText="Cancel"
|
|
|
|
@onConfirm={{action
|
|
|
|
(perform
|
|
|
|
Item.callMethod
|
|
|
|
"destroyRecord"
|
|
|
|
list.item
|
|
|
|
(concat "Successfully deleted scope " list.item.id)
|
|
|
|
(concat "There was an error deleting the scope " list.item.id)
|
|
|
|
(action "refresh")
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
data-test-scope-delete="true"
|
|
|
|
/>
|
|
|
|
</MenuLoader>
|
|
|
|
{{/if}}
|
|
|
|
</Item.menu>
|
|
|
|
</ListItem>
|
|
|
|
{{else}}
|
|
|
|
<ListItem as |Item|>
|
|
|
|
<Item.content>
|
|
|
|
There are no scopes that match
|
|
|
|
{{this.filter}}, press
|
|
|
|
<kbd>ENTER</kbd>
|
|
|
|
to add one.
|
|
|
|
</Item.content>
|
|
|
|
</ListItem>
|
|
|
|
{{/if}}
|
|
|
|
</ListView>
|