mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-19 02:49:18 -05:00
* 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>
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { reads } from '@ember/object/computed';
|
|
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
|
|
/**
|
|
* @module ReplicationTableRows
|
|
* The `ReplicationTableRows` component is table component. It displays cluster mode details specific to the cluster of the Dashboard it is used on.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <ReplicationTableRows
|
|
@replicationDetails={{replicationDetails}}
|
|
@clusterMode="primary"
|
|
/>
|
|
* ```
|
|
* @param {Object} replicationDetails=null - An Ember data object pulled from the Ember Model. It contains details specific to the whether the replication is dr or performance.
|
|
* @param {String} clusterMode=null - The cluster mode (e.g. primary or secondary) passed through to a table component.
|
|
*/
|
|
|
|
export default Component.extend({
|
|
classNames: ['replication-table-rows'],
|
|
replicationDetails: null,
|
|
clusterMode: null,
|
|
secondaryId: reads('replicationDetails.secondaryId'),
|
|
|
|
primaryClusterAddr: computed('replicationDetails.primaryClusterAddr', function () {
|
|
return this.replicationDetails.primaryClusterAddr || 'None set';
|
|
}),
|
|
|
|
merkleRoot: computed('replicationDetails.merkleRoot', function () {
|
|
return this.replicationDetails.merkleRoot || 'unknown';
|
|
}),
|
|
|
|
clusterId: computed('replicationDetails.clusterId', function () {
|
|
return this.replicationDetails.clusterId || 'unknown';
|
|
}),
|
|
});
|