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.

35 lines (33 loc) 1.05 kB
'use client'; import * as React from 'react'; import { FloatingPortal } from "../../floating-ui-react/index.js"; import { useNavigationMenuRootContext } from "../root/NavigationMenuRootContext.js"; import { NavigationMenuPortalContext } from "./NavigationMenuPortalContext.js"; /** * A portal element that moves the popup to a different part of the DOM. * By default, the portal element is appended to `<body>`. * * Documentation: [Base UI Navigation Menu](https://base-ui.com/react/components/navigation-menu) */ import { jsx as _jsx } from "react/jsx-runtime"; export function NavigationMenuPortal(props) { const { children, keepMounted = false, container } = props; const { mounted } = useNavigationMenuRootContext(); const shouldRender = mounted || keepMounted; if (!shouldRender) { return null; } return /*#__PURE__*/_jsx(NavigationMenuPortalContext.Provider, { value: keepMounted, children: /*#__PURE__*/_jsx(FloatingPortal, { root: container, children: children }) }); }