@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
48 lines (43 loc) • 1.49 kB
JavaScript
import _formatErrorMessage from "@base-ui-components/utils/formatErrorMessage";
import { createChangeEventDetails } from "../../utils/createBaseUIEventDetails.js";
import { MenuStore } from "./MenuStore.js";
export class MenuHandle {
/**
* Internal store holding the menu's state.
* @internal
*/
constructor() {
this.store = new MenuStore();
}
/**
* Opens the menu and associates it with the trigger with the given id.
* The trigger must be a Menu.Trigger component with this handle passed as a prop.
*
* @param triggerId ID of the trigger to associate with the menu.
*/
open(triggerId) {
const triggerElement = triggerId ? this.store.context.triggerElements.getById(triggerId) : undefined;
if (triggerId && !triggerElement) {
throw new Error(process.env.NODE_ENV !== "production" ? `Base UI: MenuHandle.open: No trigger found with id "${triggerId}".` : _formatErrorMessage(83, triggerId));
}
this.store.setOpen(true, createChangeEventDetails('imperative-action', undefined, triggerElement));
}
/**
* Closes the menu.
*/
close() {
this.store.setOpen(false, createChangeEventDetails('imperative-action', undefined, undefined));
}
/**
* Indicates whether the menu is currently open.
*/
get isOpen() {
return this.store.state.open;
}
}
/**
* Creates a new handle to connect a Menu.Root with detached Menu.Trigger components.
*/
export function createMenuHandle() {
return new MenuHandle();
}