mirror of
https://github.com/bitwarden/browser
synced 2025-12-31 23:53:37 +00:00
136 lines
4.3 KiB
TypeScript
136 lines
4.3 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { hasModifierKey } from "@angular/cdk/keycodes";
|
|
import { Overlay, OverlayConfig, OverlayRef } from "@angular/cdk/overlay";
|
|
import { TemplatePortal } from "@angular/cdk/portal";
|
|
import {
|
|
Directive,
|
|
ElementRef,
|
|
HostBinding,
|
|
HostListener,
|
|
OnDestroy,
|
|
ViewContainerRef,
|
|
input,
|
|
} from "@angular/core";
|
|
import { Observable, Subscription } from "rxjs";
|
|
import { filter, mergeWith } from "rxjs/operators";
|
|
|
|
import { MenuComponent } from "./menu.component";
|
|
|
|
@Directive({
|
|
selector: "[bitMenuTriggerFor]",
|
|
exportAs: "menuTrigger",
|
|
standalone: true,
|
|
host: { "[attr.role]": "this.role()" },
|
|
})
|
|
export class MenuTriggerForDirective implements OnDestroy {
|
|
@HostBinding("attr.aria-expanded") isOpen = false;
|
|
@HostBinding("attr.aria-haspopup") get hasPopup(): "menu" | "dialog" {
|
|
return this.menu()?.ariaRole() || "menu";
|
|
}
|
|
|
|
readonly role = input("button");
|
|
|
|
readonly menu = input<MenuComponent>(undefined, { alias: "bitMenuTriggerFor" });
|
|
|
|
private overlayRef: OverlayRef;
|
|
private defaultMenuConfig: OverlayConfig = {
|
|
panelClass: "bit-menu-panel",
|
|
hasBackdrop: true,
|
|
backdropClass: ["cdk-overlay-transparent-backdrop", "bit-menu-panel-backdrop"],
|
|
scrollStrategy: this.overlay.scrollStrategies.reposition(),
|
|
positionStrategy: this.overlay
|
|
.position()
|
|
.flexibleConnectedTo(this.elementRef)
|
|
.withPositions([
|
|
{ originX: "start", originY: "bottom", overlayX: "start", overlayY: "top" },
|
|
{ originX: "end", originY: "bottom", overlayX: "end", overlayY: "top" },
|
|
{ originX: "start", originY: "top", overlayX: "start", overlayY: "bottom" },
|
|
{ originX: "end", originY: "top", overlayX: "end", overlayY: "bottom" },
|
|
])
|
|
.withLockedPosition(true)
|
|
.withFlexibleDimensions(false)
|
|
.withPush(true),
|
|
};
|
|
private closedEventsSub: Subscription;
|
|
private keyDownEventsSub: Subscription;
|
|
|
|
constructor(
|
|
private elementRef: ElementRef<HTMLElement>,
|
|
private viewContainerRef: ViewContainerRef,
|
|
private overlay: Overlay,
|
|
) {}
|
|
|
|
@HostListener("click") toggleMenu() {
|
|
this.isOpen ? this.destroyMenu() : this.openMenu();
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.disposeAll();
|
|
}
|
|
|
|
private openMenu() {
|
|
const menu = this.menu();
|
|
if (menu == null) {
|
|
throw new Error("Cannot find bit-menu element");
|
|
}
|
|
|
|
this.isOpen = true;
|
|
this.overlayRef = this.overlay.create(this.defaultMenuConfig);
|
|
|
|
const templatePortal = new TemplatePortal(menu.templateRef, this.viewContainerRef);
|
|
this.overlayRef.attach(templatePortal);
|
|
|
|
this.closedEventsSub = this.getClosedEvents().subscribe((event: KeyboardEvent | undefined) => {
|
|
// Closing the menu is handled in this.destroyMenu, so we want to prevent the escape key
|
|
// from doing its normal default action, which would otherwise cause a parent component
|
|
// (like a dialog) or extension window to close
|
|
if (event?.key === "Escape" && !hasModifierKey(event)) {
|
|
event.preventDefault();
|
|
}
|
|
|
|
if (["Tab", "Escape"].includes(event?.key)) {
|
|
// Required to ensure tab order resumes correctly
|
|
this.elementRef.nativeElement.focus();
|
|
}
|
|
this.destroyMenu();
|
|
});
|
|
if (menu.keyManager) {
|
|
menu.keyManager.setFirstItemActive();
|
|
this.keyDownEventsSub = this.overlayRef
|
|
.keydownEvents()
|
|
.subscribe((event: KeyboardEvent) => this.menu().keyManager.onKeydown(event));
|
|
}
|
|
}
|
|
|
|
private destroyMenu() {
|
|
if (this.overlayRef == null || !this.isOpen) {
|
|
return;
|
|
}
|
|
|
|
this.isOpen = false;
|
|
this.disposeAll();
|
|
this.menu().closed.emit();
|
|
}
|
|
|
|
private getClosedEvents(): Observable<any> {
|
|
const detachments = this.overlayRef.detachments();
|
|
const escKey = this.overlayRef.keydownEvents().pipe(
|
|
filter((event: KeyboardEvent) => {
|
|
const keys = this.menu().ariaRole() === "menu" ? ["Escape", "Tab"] : ["Escape"];
|
|
return keys.includes(event.key);
|
|
}),
|
|
);
|
|
const backdrop = this.overlayRef.backdropClick();
|
|
const menuClosed = this.menu().closed;
|
|
|
|
return detachments.pipe(mergeWith(escKey, backdrop, menuClosed));
|
|
}
|
|
|
|
private disposeAll() {
|
|
this.closedEventsSub?.unsubscribe();
|
|
this.overlayRef?.dispose();
|
|
this.keyDownEventsSub?.unsubscribe();
|
|
}
|
|
}
|