UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

383 lines (380 loc) 16 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose")); var React = _interopRequireWildcard(require("react")); var _utils = require("@mui/utils"); var _core = require("@popperjs/core"); var _propTypes = _interopRequireDefault(require("prop-types")); var _composeClasses = _interopRequireDefault(require("../composeClasses")); var _Portal = _interopRequireDefault(require("../Portal")); var _popperClasses = require("./popperClasses"); var _utils2 = require("../utils"); var _ClassNameConfigurator = require("../utils/ClassNameConfigurator"); var _jsxRuntime = require("react/jsx-runtime"); const _excluded = ["anchorEl", "children", "direction", "disablePortal", "modifiers", "open", "placement", "popperOptions", "popperRef", "slotProps", "slots", "TransitionProps", "ownerState"], _excluded2 = ["anchorEl", "children", "container", "direction", "disablePortal", "keepMounted", "modifiers", "open", "placement", "popperOptions", "popperRef", "style", "transition", "slotProps", "slots"]; function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } function flipPlacement(placement, direction) { if (direction === 'ltr') { return placement; } switch (placement) { case 'bottom-end': return 'bottom-start'; case 'bottom-start': return 'bottom-end'; case 'top-end': return 'top-start'; case 'top-start': return 'top-end'; default: return placement; } } function resolveAnchorEl(anchorEl) { return typeof anchorEl === 'function' ? anchorEl() : anchorEl; } function isHTMLElement(element) { return element.nodeType !== undefined; } function isVirtualElement(element) { return !isHTMLElement(element); } const useUtilityClasses = () => { const slots = { root: ['root'] }; return (0, _composeClasses.default)(slots, (0, _ClassNameConfigurator.useClassNamesOverride)(_popperClasses.getPopperUtilityClass)); }; const defaultPopperOptions = {}; const PopperTooltip = /*#__PURE__*/React.forwardRef(function PopperTooltip(props, forwardedRef) { var _slots$root; const { anchorEl, children, direction, disablePortal, modifiers, open, placement: initialPlacement, popperOptions, popperRef: popperRefProp, slotProps = {}, slots = {}, TransitionProps // @ts-ignore internal logic // prevent from spreading to DOM, it can come from the parent component e.g. Select. } = props, other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded); const tooltipRef = React.useRef(null); const ownRef = (0, _utils.unstable_useForkRef)(tooltipRef, forwardedRef); const popperRef = React.useRef(null); const handlePopperRef = (0, _utils.unstable_useForkRef)(popperRef, popperRefProp); const handlePopperRefRef = React.useRef(handlePopperRef); (0, _utils.unstable_useEnhancedEffect)(() => { handlePopperRefRef.current = handlePopperRef; }, [handlePopperRef]); React.useImperativeHandle(popperRefProp, () => popperRef.current, []); const rtlPlacement = flipPlacement(initialPlacement, direction); /** * placement initialized from prop but can change during lifetime if modifiers.flip. * modifiers.flip is essentially a flip for controlled/uncontrolled behavior */ const [placement, setPlacement] = React.useState(rtlPlacement); const [resolvedAnchorElement, setResolvedAnchorElement] = React.useState(resolveAnchorEl(anchorEl)); React.useEffect(() => { if (popperRef.current) { popperRef.current.forceUpdate(); } }); React.useEffect(() => { if (anchorEl) { setResolvedAnchorElement(resolveAnchorEl(anchorEl)); } }, [anchorEl]); (0, _utils.unstable_useEnhancedEffect)(() => { if (!resolvedAnchorElement || !open) { return undefined; } const handlePopperUpdate = data => { setPlacement(data.placement); }; if (process.env.NODE_ENV !== 'production') { if (resolvedAnchorElement && isHTMLElement(resolvedAnchorElement) && resolvedAnchorElement.nodeType === 1) { const box = resolvedAnchorElement.getBoundingClientRect(); if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) { console.warn(['MUI: The `anchorEl` prop provided to the component is invalid.', 'The anchor element should be part of the document layout.', "Make sure the element is present in the document or that it's not display none."].join('\n')); } } } let popperModifiers = [{ name: 'preventOverflow', options: { altBoundary: disablePortal } }, { name: 'flip', options: { altBoundary: disablePortal } }, { name: 'onUpdate', enabled: true, phase: 'afterWrite', fn: ({ state }) => { handlePopperUpdate(state); } }]; if (modifiers != null) { popperModifiers = popperModifiers.concat(modifiers); } if (popperOptions && popperOptions.modifiers != null) { popperModifiers = popperModifiers.concat(popperOptions.modifiers); } const popper = (0, _core.createPopper)(resolvedAnchorElement, tooltipRef.current, (0, _extends2.default)({ placement: rtlPlacement }, popperOptions, { modifiers: popperModifiers })); handlePopperRefRef.current(popper); return () => { popper.destroy(); handlePopperRefRef.current(null); }; }, [resolvedAnchorElement, disablePortal, modifiers, open, popperOptions, rtlPlacement]); const childProps = { placement: placement }; if (TransitionProps !== null) { childProps.TransitionProps = TransitionProps; } const classes = useUtilityClasses(); const Root = (_slots$root = slots.root) != null ? _slots$root : 'div'; const rootProps = (0, _utils2.useSlotProps)({ elementType: Root, externalSlotProps: slotProps.root, externalForwardedProps: other, additionalProps: { role: 'tooltip', ref: ownRef }, ownerState: props, className: classes.root }); return /*#__PURE__*/(0, _jsxRuntime.jsx)(Root, (0, _extends2.default)({}, rootProps, { children: typeof children === 'function' ? children(childProps) : children })); }); /** * Poppers rely on the 3rd party library [Popper.js](https://popper.js.org/docs/v2/) for positioning. * * Demos: * * - [Popper](https://mui.com/base/react-popper/) * * API: * * - [Popper API](https://mui.com/base/react-popper/components-api/#popper) */ const Popper = /*#__PURE__*/React.forwardRef(function Popper(props, forwardedRef) { const { anchorEl, children, container: containerProp, direction = 'ltr', disablePortal = false, keepMounted = false, modifiers, open, placement = 'bottom', popperOptions = defaultPopperOptions, popperRef, style, transition = false, slotProps = {}, slots = {} } = props, other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded2); const [exited, setExited] = React.useState(true); const handleEnter = () => { setExited(false); }; const handleExited = () => { setExited(true); }; if (!keepMounted && !open && (!transition || exited)) { return null; } // If the container prop is provided, use that // If the anchorEl prop is provided, use its parent body element as the container // If neither are provided let the Modal take care of choosing the container let container; if (containerProp) { container = containerProp; } else if (anchorEl) { const resolvedAnchorEl = resolveAnchorEl(anchorEl); container = resolvedAnchorEl && isHTMLElement(resolvedAnchorEl) ? (0, _utils.unstable_ownerDocument)(resolvedAnchorEl).body : (0, _utils.unstable_ownerDocument)(null).body; } const display = !open && keepMounted && (!transition || exited) ? 'none' : undefined; const transitionProps = transition ? { in: open, onEnter: handleEnter, onExited: handleExited } : undefined; return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Portal.default, { disablePortal: disablePortal, container: container, children: /*#__PURE__*/(0, _jsxRuntime.jsx)(PopperTooltip, (0, _extends2.default)({ anchorEl: anchorEl, direction: direction, disablePortal: disablePortal, modifiers: modifiers, ref: forwardedRef, open: transition ? !exited : open, placement: placement, popperOptions: popperOptions, popperRef: popperRef, slotProps: slotProps, slots: slots }, other, { style: (0, _extends2.default)({ // Prevents scroll issue, waiting for Popper.js to add this style once initiated. position: 'fixed', // Fix Popper.js display issue top: 0, left: 0, display }, style), TransitionProps: transitionProps, children: children })) }); }); process.env.NODE_ENV !== "production" ? Popper.propTypes /* remove-proptypes */ = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * An HTML element, [virtualElement](https://popper.js.org/docs/v2/virtual-elements/), * or a function that returns either. * It's used to set the position of the popper. * The return value will passed as the reference object of the Popper instance. */ anchorEl: (0, _utils.chainPropTypes)(_propTypes.default.oneOfType([_utils.HTMLElementType, _propTypes.default.object, _propTypes.default.func]), props => { if (props.open) { const resolvedAnchorEl = resolveAnchorEl(props.anchorEl); if (resolvedAnchorEl && isHTMLElement(resolvedAnchorEl) && resolvedAnchorEl.nodeType === 1) { const box = resolvedAnchorEl.getBoundingClientRect(); if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) { return new Error(['MUI: The `anchorEl` prop provided to the component is invalid.', 'The anchor element should be part of the document layout.', "Make sure the element is present in the document or that it's not display none."].join('\n')); } } else if (!resolvedAnchorEl || typeof resolvedAnchorEl.getBoundingClientRect !== 'function' || isVirtualElement(resolvedAnchorEl) && resolvedAnchorEl.contextElement != null && resolvedAnchorEl.contextElement.nodeType !== 1) { return new Error(['MUI: The `anchorEl` prop provided to the component is invalid.', 'It should be an HTML element instance or a virtualElement ', '(https://popper.js.org/docs/v2/virtual-elements/).'].join('\n')); } } return null; }), /** * Popper render function or node. */ children: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.node, _propTypes.default.func]), /** * An HTML element or function that returns one. * The `container` will have the portal children appended to it. * * By default, it uses the body of the top-level document object, * so it's simply `document.body` most of the time. */ container: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_utils.HTMLElementType, _propTypes.default.func]), /** * Direction of the text. * @default 'ltr' */ direction: _propTypes.default.oneOf(['ltr', 'rtl']), /** * The `children` will be under the DOM hierarchy of the parent component. * @default false */ disablePortal: _propTypes.default.bool, /** * Always keep the children in the DOM. * This prop can be useful in SEO situation or * when you want to maximize the responsiveness of the Popper. * @default false */ keepMounted: _propTypes.default.bool, /** * Popper.js is based on a "plugin-like" architecture, * most of its features are fully encapsulated "modifiers". * * A modifier is a function that is called each time Popper.js needs to * compute the position of the popper. * For this reason, modifiers should be very performant to avoid bottlenecks. * To learn how to create a modifier, [read the modifiers documentation](https://popper.js.org/docs/v2/modifiers/). */ modifiers: _propTypes.default.arrayOf(_propTypes.default.shape({ data: _propTypes.default.object, effect: _propTypes.default.func, enabled: _propTypes.default.bool, fn: _propTypes.default.func, name: _propTypes.default.any, options: _propTypes.default.object, phase: _propTypes.default.oneOf(['afterMain', 'afterRead', 'afterWrite', 'beforeMain', 'beforeRead', 'beforeWrite', 'main', 'read', 'write']), requires: _propTypes.default.arrayOf(_propTypes.default.string), requiresIfExists: _propTypes.default.arrayOf(_propTypes.default.string) })), /** * If `true`, the component is shown. */ open: _propTypes.default.bool.isRequired, /** * Popper placement. * @default 'bottom' */ placement: _propTypes.default.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']), /** * Options provided to the [`Popper.js`](https://popper.js.org/docs/v2/constructors/#options) instance. * @default {} */ popperOptions: _propTypes.default.shape({ modifiers: _propTypes.default.array, onFirstUpdate: _propTypes.default.func, placement: _propTypes.default.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']), strategy: _propTypes.default.oneOf(['absolute', 'fixed']) }), /** * A ref that points to the used popper instance. */ popperRef: _utils.refType, /** * The props used for each slot inside the Popper. * @default {} */ slotProps: _propTypes.default.shape({ root: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]) }), /** * The components used for each slot inside the Popper. * Either a string to use a HTML element or a component. * @default {} */ slots: _propTypes.default.shape({ root: _propTypes.default.elementType }), /** * Help supporting a react-transition-group/Transition component. * @default false */ transition: _propTypes.default.bool } : void 0; var _default = Popper; exports.default = _default;