@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.29 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 { SelectPortalContext } from "./SelectPortalContext.js";
import { useSelectRootContext } from "../root/SelectRootContext.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.
*
* Documentation: [Base UI Select](https://base-ui.com/react/components/select)
*/
import { jsx as _jsx } from "react/jsx-runtime";
export const SelectPortal = /*#__PURE__*/React.forwardRef(function SelectPortal(portalProps, forwardedRef) {
const {
store
} = useSelectRootContext();
const mounted = useStore(store, selectors.mounted);
const forceMount = useStore(store, selectors.forceMount);
const shouldRender = mounted || forceMount;
if (!shouldRender) {
return null;
}
return /*#__PURE__*/_jsx(SelectPortalContext.Provider, {
value: true,
children: /*#__PURE__*/_jsx(FloatingPortal, {
ref: forwardedRef,
...portalProps
})
});
});
if (process.env.NODE_ENV !== "production") SelectPortal.displayName = "SelectPortal";