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.

90 lines (87 loc) 3.22 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useTooltipRootContext } from '../root/TooltipRootContext.js'; import { useTooltipPositionerContext } from '../positioner/TooltipPositionerContext.js'; import { useForkRef } from '../../utils/useForkRef.js'; import { popupStateMapping as baseMapping } from '../../utils/popupStateMapping.js'; import { mergeReactProps } from '../../utils/mergeReactProps.js'; import { transitionStatusMapping } from '../../utils/styleHookMapping.js'; const customStyleHookMapping = { ...baseMapping, ...transitionStatusMapping }; /** * A container for the tooltip contents. * Renders a `<div>` element. * * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip) */ const TooltipPopup = /*#__PURE__*/React.forwardRef(function TooltipPopup(props, forwardedRef) { const { className, render, ...otherProps } = props; const { open, instantType, transitionStatus, getRootPopupProps, popupRef } = useTooltipRootContext(); const { side, align } = useTooltipPositionerContext(); const state = React.useMemo(() => ({ open, side, align, instant: instantType, transitionStatus }), [open, side, align, instantType, transitionStatus]); const mergedRef = useForkRef(popupRef, forwardedRef); // The content element needs to be a child of a wrapper floating element in order to avoid // conflicts with CSS transitions and the positioning transform. const { renderElement } = useComponentRenderer({ propGetter: getRootPopupProps, render: render ?? 'div', className, state, ref: mergedRef, extraProps: transitionStatus === 'starting' ? mergeReactProps(otherProps, { style: { transition: 'none' } }) : otherProps, customStyleHookMapping }); return renderElement(); }); process.env.NODE_ENV !== "production" ? TooltipPopup.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]), /** * 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 { TooltipPopup };