mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-18 09:11:27 +01:00
* glimmerize status-menu * selectable card start * finish selectable card * test fix * pki-cert-popup glimmerize * cleanup * small fix * nit * one more nit * pr comments
39 lines
1006 B
JavaScript
39 lines
1006 B
JavaScript
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
/**
|
|
* @module StatusMenu
|
|
* StatusMenu component is the drop down menu on the main navigation.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <StatusMenu @label='user' @onLinkClick={{action Nav.closeDrawer}}/>
|
|
* ```
|
|
* @param {string} [ariaLabel] - aria label for the status icon.
|
|
* @param {string} [label] - label for the status menu.
|
|
* @param {string} [type] - determines where the component is being used. e.g. replication, auth, etc.
|
|
* @param {function} [onLinkClick] - function to handle click on the nested links under content.
|
|
*
|
|
*/
|
|
|
|
export default class StatusMenu extends Component {
|
|
@service currentCluster;
|
|
@service auth;
|
|
@service media;
|
|
|
|
get type() {
|
|
return this.args.type || 'cluster';
|
|
}
|
|
|
|
get glyphName() {
|
|
return this.type === 'user' ? 'user' : 'circle-dot';
|
|
}
|
|
|
|
@action
|
|
handleClick(d) {
|
|
this.args.onLinkClick;
|
|
d.actions.close();
|
|
}
|
|
}
|