@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.
53 lines (52 loc) • 1.61 kB
JavaScript
'use client';
import * as React from 'react';
import { useId } from '@base-ui-components/utils/useId';
import { ContextMenuRootContext } from "./ContextMenuRootContext.js";
import { Menu } from "../../menu/index.js";
import { MenuRootContext } from "../../menu/root/MenuRootContext.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* A component that creates a context menu activated by right clicking or long pressing.
* Doesn’t render its own HTML element.
*
* Documentation: [Base UI Context Menu](https://base-ui.com/react/components/context-menu)
*/
export function ContextMenuRoot(props) {
const [anchor, setAnchor] = React.useState({
getBoundingClientRect() {
return DOMRect.fromRect({
width: 0,
height: 0,
x: 0,
y: 0
});
}
});
const backdropRef = React.useRef(null);
const internalBackdropRef = React.useRef(null);
const actionsRef = React.useRef(null);
const positionerRef = React.useRef(null);
const allowMouseUpTriggerRef = React.useRef(true);
const initialCursorPointRef = React.useRef(null);
const id = useId();
const contextValue = React.useMemo(() => ({
anchor,
setAnchor,
actionsRef,
backdropRef,
internalBackdropRef,
positionerRef,
allowMouseUpTriggerRef,
initialCursorPointRef,
rootId: id
}), [anchor, id]);
return /*#__PURE__*/_jsx(ContextMenuRootContext.Provider, {
value: contextValue,
children: /*#__PURE__*/_jsx(MenuRootContext.Provider, {
value: undefined,
children: /*#__PURE__*/_jsx(Menu.Root, {
...props
})
})
});
}