7662de315a
* Can see list of roles, templates, and alphabets when you click on corresponding tab inside a transform secrets engine * Cannot click on items in list other than transformations * Can create a new transform role from the empty state or toolbar * Creating a role redirects to the view of that role * Breadcrumb links on transform roles work * Role create form handles error
102 lines
2.7 KiB
Handlebars
102 lines
2.7 KiB
Handlebars
<PageHeader as |p|>
|
|
<p.top>
|
|
{{key-value-header
|
|
baseKey=(hash display=model.id id=model.idForNav)
|
|
path="vault.cluster.secrets.backend.list"
|
|
mode=mode
|
|
root=root
|
|
showCurrent=true
|
|
}}
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3" data-test-secret-header="true">
|
|
{{#if (eq mode "create") }}
|
|
Create Role
|
|
{{else if (eq mode "edit")}}
|
|
Edit Role
|
|
{{else}}
|
|
Role <code>{{model.id}}</code>
|
|
{{/if}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
|
|
{{#if (eq mode "show")}}
|
|
<Toolbar>
|
|
<ToolbarActions>
|
|
{{!-- TODO: Ability to delete and edit role
|
|
{{#if (or capabilities.canUpdate capabilities.canDelete)}}
|
|
<div class="toolbar-separator" />
|
|
{{/if}}
|
|
{{#if capabilities.canDelete}}
|
|
<a
|
|
class="toolbar-link"
|
|
onclick={{action "delete"}}
|
|
data-test-transformation-role-delete
|
|
>
|
|
Delete role
|
|
</a>
|
|
{{/if}}
|
|
{{#if capabilities.canUpdate }}
|
|
<ToolbarSecretLink
|
|
@secret={{model.id}}
|
|
@mode="edit"
|
|
@data-test-edit-link=true
|
|
@replace=true
|
|
>
|
|
Edit role
|
|
</ToolbarSecretLink>
|
|
{{/if}} --}}
|
|
</ToolbarActions>
|
|
</Toolbar>
|
|
{{/if}}
|
|
|
|
{{#if (or (eq mode 'edit') (eq mode 'create'))}}
|
|
<form onsubmit={{action "createOrUpdate" mode}}>
|
|
<div class="box is-sideless is-fullwidth is-marginless">
|
|
{{message-error model=model}}
|
|
<NamespaceReminder @mode={{mode}} @noun="Transform role" />
|
|
{{#each model.attrs as |attr|}}
|
|
<FormField
|
|
data-test-field
|
|
@attr={{attr}}
|
|
@model={{model}}
|
|
/>
|
|
{{/each}}
|
|
</div>
|
|
<div class="field is-grouped-split box is-fullwidth is-bottomless">
|
|
<div class="control">
|
|
<button
|
|
type="submit"
|
|
disabled={{buttonDisabled}}
|
|
class="button is-primary"
|
|
data-test-role-ssh-create=true
|
|
>
|
|
{{#if (eq mode 'create')}}
|
|
Create transformation
|
|
{{else if (eq mode 'edit')}}
|
|
Save
|
|
{{/if}}
|
|
</button>
|
|
{{#secret-link
|
|
mode=(if (eq mode "create") "list" "show")
|
|
class="button"
|
|
secret=model.id
|
|
}}
|
|
Cancel
|
|
{{/secret-link}}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{else}}
|
|
<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
|
|
{{#each model.attrs as |attr|}}
|
|
{{#if (eq attr.type "object")}}
|
|
{{info-table-row label=(capitalize (or attr.options.label (humanize (dasherize attr.name)))) value=(stringify (get model attr.name))}}
|
|
{{else}}
|
|
{{info-table-row label=(capitalize (or attr.options.label (humanize (dasherize attr.name)))) value=(get model attr.name)}}
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|