5301934368
* Fix info-table-row not rendering if alwaysRender=false and only block content present * use defaultFields for form and nonOperationFields for adapter * WIP: Move info table row template to addon component dir * Refactor InfoTableRow to glimmer component * Add changelog * passthrough attributes, change @data-test-x to data-test-x on InfoTableRow invocations
49 lines
2 KiB
Handlebars
49 lines
2 KiB
Handlebars
<PageHeader as |p|>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3">License</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
|
|
<section class="box is-sideless is-marginless is-shadowless is-fullwidth">
|
|
<span class="title is-5">Details</span>
|
|
<div class="field box is-fullwidth is-shadowless is-paddingless is-marginless">
|
|
<InfoTableRow @label="License ID" @value={{@licenseId}} data-test-detail-row />
|
|
<InfoTableRow @label="Valid from" @value={{@startTime}} data-test-detail-row>
|
|
{{date-format @startTime "MMM dd, yyyy hh:mm:ss a"}}
|
|
to
|
|
{{date-format @expirationTime "MMM dd, yyyy hh:mm:ss a"}}
|
|
</InfoTableRow>
|
|
<InfoTableRow @label="License state" @value={{if @autoloaded "Autoloaded" "Stored"}} data-test-detail-row>
|
|
{{#if @autoloaded}}
|
|
Autoloaded
|
|
{{else}}
|
|
Stored
|
|
<Icon @name="alert-triangle-fill" class="has-text-highlight" />
|
|
<span class="is-size-8">
|
|
Stored licenses will be deprecated in a future version of Vault. We recommend autoloading your license. Read more
|
|
<a href="https://www.vaultproject.io/docs/enterprise/license" rel="noreferrer noopener" target="_blank">here</a>.
|
|
</span>
|
|
{{/if}}
|
|
</InfoTableRow>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="box is-sideless is-marginless is-shadowless is-fullwidth">
|
|
<span class="title is-5">Features</span>
|
|
<div class="field box is-fullwidth is-shadowless is-paddingless is-marginless">
|
|
{{#each this.featuresInfo as |info|}}
|
|
<InfoTableRow @label={{info.name}} @value={{if info.active "Active" "Not Active"}} data-test-feature-row>
|
|
{{#if info.active}}
|
|
<Icon @name="check-circle" class="icon-true" />
|
|
<span data-test-feature-status>
|
|
Active
|
|
{{#if info.count}}— {{info.count}} standby nodes allotted{{/if}}
|
|
</span>
|
|
{{else}}
|
|
<Icon @name="x-circle" class="icon-false" />
|
|
<span data-test-feature-status>Not Active</span>
|
|
{{/if}}
|
|
</InfoTableRow>
|
|
{{/each}}
|
|
</div>
|
|
</section> |