@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.
36 lines (34 loc) • 1.3 kB
JavaScript
'use client';
import * as React from 'react';
import { useStore } from '@base-ui-components/utils/store';
import { FloatingPortal } from "../../floating-ui-react/index.js";
import { useComboboxRootContext } from "../root/ComboboxRootContext.js";
import { ComboboxPortalContext } from "./ComboboxPortalContext.js";
import { selectors } from "../store.js";
/**
* A portal element that moves the popup to a different part of the DOM.
* By default, the portal element is appended to `<body>`.
* Renders a `<div>` element.
*/
import { jsx as _jsx } from "react/jsx-runtime";
export const ComboboxPortal = /*#__PURE__*/React.forwardRef(function ComboboxPortal(props, forwardedRef) {
const {
keepMounted = false,
...portalProps
} = props;
const store = useComboboxRootContext();
const mounted = useStore(store, selectors.mounted);
const forceMounted = useStore(store, selectors.forceMounted);
const shouldRender = mounted || keepMounted || forceMounted;
if (!shouldRender) {
return null;
}
return /*#__PURE__*/_jsx(ComboboxPortalContext.Provider, {
value: keepMounted,
children: /*#__PURE__*/_jsx(FloatingPortal, {
ref: forwardedRef,
...portalProps
})
});
});
if (process.env.NODE_ENV !== "production") ComboboxPortal.displayName = "ComboboxPortal";