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.

103 lines (101 loc) 3.6 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import { MenuRadioGroupContext } from './MenuRadioGroupContext.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useControlled } from '../../utils/useControlled.js'; import { useEventCallback } from '../../utils/useEventCallback.js'; import { jsx as _jsx } from "react/jsx-runtime"; const EMPTY_OBJECT = {}; const NOOP = () => {}; /** * Groups related radio items. * Renders a `<div>` element. */ const MenuRadioGroup = /*#__PURE__*/React.forwardRef(function MenuRadioGroup(props, forwardedRef) { const { render, className, value: valueProp, defaultValue, onValueChange: onValueChangeProp = NOOP, ...other } = props; const [value, setValueUnwrapped] = useControlled({ controlled: valueProp, default: defaultValue, name: 'MenuRadioGroup' }); const onValueChange = useEventCallback(onValueChangeProp); const setValue = React.useCallback((newValue, event) => { setValueUnwrapped(newValue); onValueChange?.(newValue, event); }, [onValueChange, setValueUnwrapped]); const { renderElement } = useComponentRenderer({ render: render || 'div', className, state: EMPTY_OBJECT, extraProps: { role: 'group', ...other }, ref: forwardedRef }); const context = React.useMemo(() => ({ value, setValue }), [value, setValue]); return /*#__PURE__*/_jsx(MenuRadioGroupContext.Provider, { value: context, children: renderElement() }); }); process.env.NODE_ENV !== "production" ? MenuRadioGroup.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * The content of the component. */ 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]), /** * The uncontrolled value of the radio item that should be initially selected. * * To render a controlled radio group, use the `value` prop instead. */ defaultValue: PropTypes.any, /** * Function called when the selected value changes. * * @default () => {} */ onValueChange: PropTypes.func, /** * 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]), /** * The controlled value of the radio item that should be currently selected. * * To render an uncontrolled radio group, use the `defaultValue` prop instead. */ value: PropTypes.any } : void 0; const MemoizedMenuRadioGroup = /*#__PURE__*/React.memo(MenuRadioGroup); /** * Groups related radio items. * Renders a `<div>` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ export { MemoizedMenuRadioGroup as MenuRadioGroup };