d1cc297cd9
* Handle form validation for open api form - Added required validator for all the default fields * Fixed field group error and adedd comments * Fixed acceptance tests * Added changelog * Fix validation in edit mode - Handle read only inputs during edit mode * Minor improvements * Restrict validation only for userpass
103 lines
3.5 KiB
Handlebars
103 lines
3.5 KiB
Handlebars
<PageHeader as |p|>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3" data-test-mount-form-header="true">
|
|
{{#if showEnable}}
|
|
{{#with (find-by "type" mountModel.type mountTypes) as |typeInfo|}}
|
|
<Icon
|
|
@glyph={{or typeInfo.glyph typeInfo.type}}
|
|
@size="l"
|
|
class="has-text-grey-light"
|
|
/>
|
|
|
|
{{#if (eq mountType "auth")}}
|
|
{{concat "Enable " typeInfo.displayName " Authentication Method"}}
|
|
{{else}}
|
|
{{concat "Enable " typeInfo.displayName " Secrets Engine"}}
|
|
{{/if}}
|
|
{{/with}}
|
|
{{else if (eq mountType "auth")}}
|
|
Enable an Authentication Method
|
|
{{else}}
|
|
Enable a Secrets Engine
|
|
{{/if}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
<form {{action (perform mountBackend) on="submit"}}>
|
|
<div class="box is-sideless is-fullwidth is-marginless">
|
|
<NamespaceReminder
|
|
@mode="enable"
|
|
@noun={{if (eq mountType "auth") "Auth Method" "Secret Engine"}}
|
|
/>
|
|
<MessageError @model={{mountModel}} />
|
|
{{#if showEnable}}
|
|
<FormFieldGroups @model={{mountModel}} @onChange={{action "onTypeChange"}} @renderGroup="default" @validationMessages={{validationMessages}} @onKeyUp={{action "onKeyUp"}} />
|
|
<FormFieldGroups @model={{mountModel}} @onChange={{action "onTypeChange"}} @renderGroup="Method Options" />
|
|
{{else}}
|
|
{{#each (array "generic" "cloud" "infra") as |category|}}
|
|
<h3 class="title box-radio-header">
|
|
{{capitalize category}}
|
|
</h3>
|
|
<div class="box-radio-container">
|
|
{{#each (filter-by "category" category mountTypes) as |type|}}
|
|
<BoxRadio
|
|
@displayName={{type.displayName}}
|
|
@type={{type.type}}
|
|
@glyph={{or type.glyph type.type}}
|
|
@groupValue={{mountModel.type}}
|
|
@groupName="mount-type"
|
|
@onRadioChange={{queue
|
|
(action (mut mountModel.type))
|
|
(action "onTypeChange" "type")
|
|
}}
|
|
@disabled={{if type.requiredFeature (not (has-feature type.requiredFeature)) false}}
|
|
@tooltipMessage={{if (or (eq type.type 'transform') (eq type.type 'kmip'))
|
|
(concat type.displayName " is part of the Advanced Data Protection module, which is not included in your enterprise license.")
|
|
'This secret engine is not included in your license.'
|
|
}}
|
|
/>
|
|
{{/each}}
|
|
</div>
|
|
{{/each}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="field is-grouped box is-fullwidth is-bottomless">
|
|
{{#if showEnable}}
|
|
<div class="control">
|
|
<button
|
|
type="submit"
|
|
data-test-mount-submit="true"
|
|
class="button is-primary {{if mountBackend.isRunning "loading"}}"
|
|
disabled={{or mountBackend.isRunning isFormInvalid}}
|
|
>
|
|
{{#if (eq mountType "auth")}}
|
|
Enable Method
|
|
{{else}}
|
|
Enable Engine
|
|
{{/if}}
|
|
</button>
|
|
</div>
|
|
<div class="control">
|
|
<button
|
|
data-test-mount-back
|
|
type="button"
|
|
class="button"
|
|
onclick={{action "toggleShowEnable" false}}
|
|
>
|
|
Back
|
|
</button>
|
|
</div>
|
|
{{else}}
|
|
<button
|
|
data-test-mount-next
|
|
type="button"
|
|
class="button is-primary"
|
|
onclick={{action "toggleShowEnable" true}}
|
|
disabled={{not mountModel.type}}
|
|
>
|
|
Next
|
|
</button>
|
|
{{/if}}
|
|
</div>
|
|
</form>
|