2021-12-17 03:44:29 +00:00
|
|
|
<BasicDropdown @class="popup-menu" @horizontalPosition="auto-right" @verticalPosition="below" as |D|>
|
|
|
|
<D.Trigger
|
|
|
|
data-test-popup-menu-trigger="version"
|
|
|
|
class={{concat "toolbar-link" (if D.isOpen " is-active")}}
|
|
|
|
@htmlTag="button"
|
|
|
|
>
|
|
|
|
Version
|
|
|
|
{{@version.version}}
|
|
|
|
<Chevron @direction="down" @isButton={{true}} />
|
|
|
|
</D.Trigger>
|
2022-02-15 17:43:37 +00:00
|
|
|
<D.Content @defaultClass="popup-menu-content">
|
2021-12-17 03:44:29 +00:00
|
|
|
<nav class="box menu">
|
|
|
|
<ul class="menu-list">
|
|
|
|
{{#if (has-block)}}
|
|
|
|
{{yield}}
|
|
|
|
{{/if}}
|
|
|
|
{{#each (reverse @model.versions) as |secretVersion|}}
|
|
|
|
<li class="action">
|
|
|
|
{{! invokeAction is provided by ember-link-action addon -- should consider removing in favor of on modifier }}
|
2022-03-29 14:28:28 +00:00
|
|
|
<LinkTo class="link" @query={{hash version=secretVersion.version}} {{on "click" D.actions.close}}>
|
2021-12-17 03:44:29 +00:00
|
|
|
Version
|
|
|
|
{{secretVersion.version}}
|
|
|
|
{{#if
|
|
|
|
(and
|
|
|
|
(eq secretVersion.version @model.currentVersion) (not secretVersion.destroyed) (not secretVersion.deleted)
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
<Icon @name="check-circle" class="has-text-success is-pulled-right" />
|
|
|
|
{{else if secretVersion.destroyed}}
|
|
|
|
<Icon @name="x-square-fill" class="has-text-danger is-pulled-right" />
|
|
|
|
{{else if secretVersion.deleted}}
|
|
|
|
<Icon @name="x-square-fill" class="has-text-grey is-pulled-right" />
|
|
|
|
{{/if}}
|
|
|
|
</LinkTo>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
<li class="action">
|
|
|
|
<SecretLink
|
|
|
|
@data-test-version-history
|
|
|
|
@mode="versions"
|
|
|
|
@secret={{@model.id}}
|
|
|
|
@class="has-text-black has-text-weight-semibold has-bottom-shadow"
|
2022-03-18 15:38:54 +00:00
|
|
|
@onLinkClick={{D.actions.close}}
|
2021-12-17 03:44:29 +00:00
|
|
|
>
|
|
|
|
View version history
|
|
|
|
</SecretLink>
|
|
|
|
</li>
|
|
|
|
{{#if (gt @model.versions.length 1)}}
|
|
|
|
<li class="action">
|
|
|
|
<li>
|
|
|
|
<LinkTo class="link" @route="vault.cluster.secrets.backend.diff" @model={{@model.id}} data-test-view-diff>
|
|
|
|
View diff
|
|
|
|
</LinkTo>
|
2021-05-19 16:43:55 +00:00
|
|
|
</li>
|
2021-12-17 03:44:29 +00:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</D.Content>
|
|
|
|
</BasicDropdown>
|