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.

125 lines (122 loc) 4.54 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useForkRef } from '../../utils/useForkRef.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useSelectRootContext } from '../root/SelectRootContext.js'; import { useSelectItemContext } from '../item/SelectItemContext.js'; import { jsx as _jsx } from "react/jsx-runtime"; const InnerSelectItemText = /*#__PURE__*/React.forwardRef(function InnerSelectItemText(props, forwardedRef) { const { className, render, selected, selectedItemTextRef, indexRef, ...otherProps } = props; const mergedRef = useForkRef(forwardedRef); const state = React.useMemo(() => ({}), []); const ref = React.useCallback(node => { if (mergedRef) { mergedRef(node); } // Wait for the DOM indices to be set. queueMicrotask(() => { if (selected || selectedItemTextRef.current === null && indexRef.current === 0) { selectedItemTextRef.current = node; } }); }, [mergedRef, selected, selectedItemTextRef, indexRef]); const { renderElement } = useComponentRenderer({ ref, render: render ?? 'div', className, state, extraProps: otherProps }); return renderElement(); }); process.env.NODE_ENV !== "production" ? InnerSelectItemText.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 */ indexRef: PropTypes.shape({ current: PropTypes.number.isRequired }).isRequired, /** * 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]), /** * @ignore */ selected: PropTypes.bool.isRequired, /** * @ignore */ selectedItemTextRef: PropTypes.shape({ current: (props, propName) => { if (props[propName] == null) { return null; } if (typeof props[propName] !== 'object' || props[propName].nodeType !== 1) { return new Error(`Expected prop '${propName}' to be of type Element`); } return null; } }).isRequired } : void 0; const MemoizedInnerSelectItemText = /*#__PURE__*/React.memo(InnerSelectItemText); /** * A text label of the select item. * Renders a `<div>` element. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ const SelectItemText = /*#__PURE__*/React.forwardRef(function SelectItemText(props, forwardedRef) { const { selected, indexRef } = useSelectItemContext(); const { selectedItemTextRef } = useSelectRootContext(); const mergedRef = useForkRef(forwardedRef); return /*#__PURE__*/_jsx(MemoizedInnerSelectItemText, { ref: mergedRef, selected: selected, selectedItemTextRef: selectedItemTextRef, indexRef: indexRef, ...props }); }); process.env.NODE_ENV !== "production" ? SelectItemText.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 } : void 0; export { SelectItemText };