382a519756
* add dynamic segement to list-root so that you can sepecify the tab you want to go to * create new info-table-item-array component to handle array items passed into a info-table * do not underline links if they are in an info-table-row confirmed with design * implement the InfoTableItemArray component * amend wildcard helper to take in regular string * setup the logic and more logic * fix routing to roles issue * test for new component * change data-test-mode to count * handle case when wildcardCount is 0
109 lines
3.1 KiB
Handlebars
109 lines
3.1 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>
|
||
{{#if capabilities.canDelete}}
|
||
<ConfirmAction
|
||
@buttonClasses="toolbar-link"
|
||
@onConfirmAction={{action "delete"}}
|
||
@confirmTitle="Are you sure?"
|
||
@confirmMessage="Deleting this role means that you’ll need to recreate it and reassign any existing transformations to use it again."
|
||
@confirmButtonText="Delete"
|
||
data-test-transformation-role-delete
|
||
>
|
||
Delete role
|
||
</ConfirmAction>
|
||
{{/if}}
|
||
{{#if capabilities.canUpdate }}
|
||
<ToolbarSecretLink
|
||
@secret={{concat model.idPrefix 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-transform-create=true
|
||
>
|
||
{{#if (eq mode 'create')}}
|
||
Create role
|
||
{{else if (eq mode 'edit')}}
|
||
Save
|
||
{{/if}}
|
||
</button>
|
||
{{#secret-link
|
||
mode=(if (eq mode "create") "list" "show")
|
||
class="button"
|
||
secret=(concat "role/" 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 if (eq attr.type "array")}}
|
||
{{info-table-row
|
||
label=(capitalize (or attr.options.label (humanize (dasherize attr.name))))
|
||
value=(get model attr.name)
|
||
type=attr.type
|
||
isLink=(eq attr.name 'transformations')
|
||
viewAll="transformations"
|
||
}}
|
||
{{else}}
|
||
{{info-table-row label=(capitalize (or attr.options.label (humanize (dasherize attr.name)))) value=(get model attr.name)}}
|
||
{{/if}}
|
||
{{/each}}
|
||
</div>
|
||
{{/if}}
|