UNPKG

@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.

114 lines (112 loc) 3.69 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { FloatingFocusManager, useFloatingTree } from '@floating-ui/react'; import { useMenuPopup } from './useMenuPopup.js'; import { useMenuRootContext } from '../root/MenuRootContext.js'; import { useMenuPositionerContext } from '../positioner/MenuPositionerContext.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useForkRef } from '../../utils/useForkRef.js'; import { popupStateMapping as baseMapping } from '../../utils/popupStateMapping.js'; import { mergeReactProps } from '../../utils/mergeReactProps.js'; import { transitionStatusMapping } from '../../utils/styleHookMapping.js'; import { jsx as _jsx } from "react/jsx-runtime"; const customStyleHookMapping = { ...baseMapping, ...transitionStatusMapping }; /** * A container for the menu items. * Renders a `<div>` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ const MenuPopup = /*#__PURE__*/React.forwardRef(function MenuPopup(props, forwardedRef) { const { render, className, ...other } = props; const { open, setOpen, popupRef, transitionStatus, nested, mounted, getPopupProps, modal } = useMenuRootContext(); const { side, align, floatingContext } = useMenuPositionerContext(); const { events: menuEvents } = useFloatingTree(); useMenuPopup({ setOpen, menuEvents }); const mergedRef = useForkRef(forwardedRef, popupRef); const state = React.useMemo(() => ({ transitionStatus, side, align, open, nested }), [transitionStatus, side, align, open, nested]); const { renderElement } = useComponentRenderer({ propGetter: getPopupProps, render: render || 'div', className, state, extraProps: transitionStatus === 'starting' ? mergeReactProps(other, { style: { transition: 'none' } }) : other, customStyleHookMapping, ref: mergedRef }); return /*#__PURE__*/_jsx(FloatingFocusManager, { context: floatingContext, modal: false, initialFocus: nested ? -1 : popupRef, returnFocus: true, disabled: !mounted, visuallyHiddenDismiss: modal ? 'Dismiss popup' : undefined, order: !nested ? ['content', 'reference'] : undefined, children: renderElement() }); }); process.env.NODE_ENV !== "production" ? MenuPopup.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * @ignore */ children: PropTypes.node, /** * CSS class applied to the element, or a function that * returns a class based on the component’s state. */ className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]), /** * @ignore */ id: PropTypes.string, /** * Allows you to replace the component’s HTML element * with a different tag, or compose it with another component. * * Accepts a `ReactElement` or a function that returns the element to render. */ render: PropTypes.oneOfType([PropTypes.element, PropTypes.func]) } : void 0; export { MenuPopup };