mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { CdkTrapFocus } from "@angular/cdk/a11y";
|
|
import { CommonModule } from "@angular/common";
|
|
import { Component, ElementRef, Input, ViewChild } from "@angular/core";
|
|
|
|
import { I18nPipe } from "@bitwarden/ui-common";
|
|
|
|
import { BitIconButtonComponent } from "../icon-button/icon-button.component";
|
|
|
|
import { NavDividerComponent } from "./nav-divider.component";
|
|
import { SideNavService } from "./side-nav.service";
|
|
|
|
export type SideNavVariant = "primary" | "secondary";
|
|
|
|
@Component({
|
|
selector: "bit-side-nav",
|
|
templateUrl: "side-nav.component.html",
|
|
imports: [CommonModule, CdkTrapFocus, NavDividerComponent, BitIconButtonComponent, I18nPipe],
|
|
})
|
|
export class SideNavComponent {
|
|
@Input() variant: SideNavVariant = "primary";
|
|
|
|
@ViewChild("toggleButton", { read: ElementRef, static: true })
|
|
private toggleButton: ElementRef<HTMLButtonElement>;
|
|
|
|
constructor(protected sideNavService: SideNavService) {}
|
|
|
|
protected handleKeyDown = (event: KeyboardEvent) => {
|
|
if (event.key === "Escape") {
|
|
this.sideNavService.setClose();
|
|
this.toggleButton?.nativeElement.focus();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
}
|