f2552b708b
* Update cluster status partial to component * Added changelog * Close menu when link is clicked * Upgraded to glimmer components * Fixed indentations Added back activeCluster Updated changelog
134 lines
5.9 KiB
Handlebars
134 lines
5.9 KiB
Handlebars
<div class="popup-menu-content">
|
|
<div class="box">
|
|
{{#unless this.version.isOSS}}
|
|
{{#if (and this.activeCluster.unsealed this.auth.currentToken)}}
|
|
{{#unless @cluster.dr.isSecondary}}
|
|
{{#if (has-permission 'status' routeParams='replication')}}
|
|
<nav class="menu">
|
|
<p class="menu-label">Replication</p>
|
|
<ul>
|
|
{{#if @cluster.anyReplicationEnabled}}
|
|
<li>
|
|
<LinkTo @route="vault.cluster.replication.mode.index" @model="dr" @disabled={{not this.auth.currentToken}} @invokeAction={{@onLinkClick}}>
|
|
<ReplicationModeSummary @mode="dr" @display="menu" @cluster={{@cluster}} />
|
|
</LinkTo>
|
|
</li>
|
|
<li>
|
|
{{#if (has-feature "Performance Replication")}}
|
|
<LinkTo @route="vault.cluster.replication.mode.index" @model="performance" @disabled={{not this.auth.currentToken}} @invokeAction={{@onLinkClick}}>
|
|
<ReplicationModeSummary @mode="performance" @display="menu" @cluster={{@cluster}} @tagName="span" />
|
|
</LinkTo>
|
|
{{else}}
|
|
<ReplicationModeSummary @mode="performance" @display="menu" @cluster={{@cluster}} @class="menu-item" />
|
|
{{/if}}
|
|
</li>
|
|
{{else}}
|
|
<li>
|
|
<LinkTo @route="vault.cluster.replication" @invokeAction={{@onLinkClick}}>
|
|
<div class="level is-mobile">
|
|
<span class="level-left">Enable</span>
|
|
<Icon @glyph="plus-circle-outline" @class="has-text-grey-light level-right" />
|
|
</div>
|
|
</LinkTo>
|
|
</li>
|
|
{{/if}}
|
|
</ul>
|
|
</nav>
|
|
<hr/>
|
|
{{/if}}
|
|
{{else}}
|
|
{{#if (has-permission 'status' routeParams='replication')}}
|
|
<nav class="menu">
|
|
<p class="menu-label">Replication</p>
|
|
<ul>
|
|
{{#if @cluster.anyReplicationEnabled}}
|
|
<li>
|
|
<LinkTo @route="vault.cluster.replication-dr-promote.details" @disabled={{not this.auth.currentToken}} @invokeAction={{@onLinkClick}}>
|
|
<ReplicationModeSummary @mode="dr" @display="menu" @cluster={{@cluster}} />
|
|
</LinkTo>
|
|
</li>
|
|
{{/if}}
|
|
</ul>
|
|
</nav>
|
|
<hr/>
|
|
{{/if}}
|
|
{{/unless}}
|
|
{{/if}}
|
|
{{/unless}}
|
|
<nav class="menu">
|
|
<div class="menu-label">
|
|
Server
|
|
</div>
|
|
<ul class="menu-list">
|
|
<li class="action">
|
|
{{#if this.activeCluster.unsealed}}
|
|
{{#if (and (has-permission 'status' routeParams='seal') (not @cluster.dr.isSecondary))}}
|
|
<LinkTo @route="vault.cluster.settings.seal" @model={{@cluster.name}} @invokeAction={{@onLinkClick}}>
|
|
<div class="level is-mobile">
|
|
<span class="level-left">Unsealed</span>
|
|
<Icon @glyph="check-circle-outline" class="has-text-success level-right" />
|
|
</div>
|
|
</LinkTo>
|
|
{{else}}
|
|
<span class="menu-item">
|
|
<div class="level is-mobile">
|
|
<span class="level-left">Unsealed</span>
|
|
<Icon @glyph="check-circle-outline" class="has-text-success level-right" />
|
|
</div>
|
|
</span>
|
|
{{/if}}
|
|
{{else}}
|
|
<span class="menu-item">
|
|
<div class="level is-mobile">
|
|
<span class="level-left has-text-danger">Sealed</span>
|
|
<Icon @glyph="cancel-circle-outline" class="has-text-danger level-right" />
|
|
</div>
|
|
</span>
|
|
{{/if}}
|
|
</li>
|
|
</ul>
|
|
{{#if (and (or
|
|
(and this.version.features (has-permission 'status' routeParams='license'))
|
|
(and @cluster.usingRaft (has-permission 'status' routeParams='raft'))
|
|
)
|
|
(not @cluster.dr.isSecondary))
|
|
}}
|
|
<ul class="menu-list">
|
|
{{#if (and this.version.features (has-permission 'status' routeParams='license') (not @cluster.dr.isSecondary))}}
|
|
<li class="action">
|
|
<LinkTo @route="vault.cluster.license" @model={{this.activeCluster.name}} @invokeAction={{@onLinkClick}}>
|
|
<div class="level is-mobile">
|
|
<span class="level-left">License</span>
|
|
<Chevron class="has-text-grey-light level-right" />
|
|
</div>
|
|
</LinkTo>
|
|
</li>
|
|
{{/if}}
|
|
{{#if (and @cluster.usingRaft (has-permission 'status' routeParams='raft'))}}
|
|
<li class="action">
|
|
<LinkTo @route="vault.cluster.storage" @model={{this.activeCluster.name}} @invokeAction={{@onLinkClick}}>
|
|
<div class="level is-mobile">
|
|
<span class="level-left">Raft Storage</span>
|
|
<Chevron class="has-text-grey-light level-right" />
|
|
</div>
|
|
</LinkTo>
|
|
</li>
|
|
{{/if}}
|
|
</ul>
|
|
{{/if}}
|
|
{{#if ( and (has-permission 'metrics' routeParams='activity') (not @cluster.dr.isSecondary) this.auth.currentToken)}}
|
|
<ul class="menu-list">
|
|
<li class="action">
|
|
<LinkTo @route="vault.cluster.metrics" @invokeAction={{@onLinkClick}}>
|
|
<div class="level is-mobile">
|
|
<span class="level-left">Metrics</span>
|
|
<Chevron class="has-text-grey-light level-right" />
|
|
</div>
|
|
</LinkTo>
|
|
</li>
|
|
</ul>
|
|
{{/if}}
|
|
</nav>
|
|
</div>
|
|
</div>
|