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.

84 lines (83 loc) 2.86 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useMenuTrigger } from './useMenuTrigger.js'; import { useMenuRootContext } from '../root/MenuRootContext.js'; import { pressableTriggerOpenStateMapping } from '../../utils/popupStateMapping.js'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; /** * A button that opens the menu. * Renders a `<button>` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ const MenuTrigger = /*#__PURE__*/React.forwardRef(function MenuTrigger(props, forwardedRef) { const { render, className, disabled = false, ...other } = props; const { getTriggerProps: getRootTriggerProps, disabled: menuDisabled, setTriggerElement, open, setOpen, allowMouseUpTriggerRef, positionerRef } = useMenuRootContext(); const { getTriggerProps } = useMenuTrigger({ disabled: disabled || menuDisabled, rootRef: forwardedRef, setTriggerElement, open, setOpen, allowMouseUpTriggerRef, positionerRef }); const state = React.useMemo(() => ({ open }), [open]); const { renderElement } = useComponentRenderer({ render: render || 'button', className, state, propGetter: externalProps => getRootTriggerProps(getTriggerProps(externalProps)), customStyleHookMapping: pressableTriggerOpenStateMapping, extraProps: other }); return renderElement(); }); process.env.NODE_ENV !== "production" ? MenuTrigger.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]), /** * Whether the component should ignore user interaction. * @default false */ disabled: PropTypes.bool, /** * 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]) } : void 0; export { MenuTrigger };