vault/ui/app/components/status-menu.js
Angel Garbarino bdc63424e2
Glimmerizing StatusMenu/SelectableCard/PkiCertPopup (#15716)
* glimmerize status-menu

* selectable card start

* finish selectable card

* test fix

* pki-cert-popup glimmerize

* cleanup

* small fix

* nit

* one more nit

* pr comments
2022-06-02 14:40:04 -06:00

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();
}
}