vault/ui/lib/replication/addon/components/replication-summary.js
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

39 lines
1.2 KiB
JavaScript

/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
import { service } from '@ember/service';
import { computed } from '@ember/object';
import Component from '@ember/component';
import ReplicationActions from 'core/mixins/replication-actions';
/**
* @module ReplicationSummary
* ReplicationSummary component is a component to show the mode-specific summary for replication
*
* @param {ClusterModel} cluster - the cluster ember-data model
* @param {string} initialReplicationMode - mode for replication details we want to see, either "dr" or "performance"
*/
export default Component.extend(ReplicationActions, {
'data-test-replication-summary': true,
attributeBindings: ['data-test-replication-summary'],
replicationMode: 'dr',
mode: 'primary',
version: service(),
rm: service('replication-mode'),
didReceiveAttrs() {
this._super(...arguments);
const initialReplicationMode = this.initialReplicationMode;
if (initialReplicationMode) {
this.set('replicationMode', initialReplicationMode);
}
},
initialReplicationMode: null,
cluster: null,
attrsForCurrentMode: computed('cluster', 'rm.mode', function () {
return this.cluster[this.rm.mode];
}),
});