import { FocusKeyManager } from "@angular/cdk/a11y"; import { Component, Output, TemplateRef, ViewChild, EventEmitter, ContentChildren, QueryList, AfterContentInit, Input, } from "@angular/core"; import { MenuItemDirective } from "./menu-item.directive"; @Component({ selector: "bit-menu", templateUrl: "./menu.component.html", exportAs: "menuComponent", }) export class MenuComponent implements AfterContentInit { @ViewChild(TemplateRef) templateRef: TemplateRef; @Output() closed = new EventEmitter(); @ContentChildren(MenuItemDirective, { descendants: true }) menuItems: QueryList; keyManager?: FocusKeyManager; @Input() ariaRole: "menu" | "dialog" = "menu"; @Input() ariaLabel: string; ngAfterContentInit() { if (this.ariaRole === "menu") { this.keyManager = new FocusKeyManager(this.menuItems).withWrap(); } } }