mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
1 line
60 KiB
JSON
1 line
60 KiB
JSON
{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport * as ReactDOM from 'react-dom';\nimport { chainPropTypes, elementTypeAcceptingRef, refType, HTMLElementType } from '@material-ui/utils';\nimport debounce from '../utils/debounce';\nimport clsx from 'clsx';\nimport ownerDocument from '../utils/ownerDocument';\nimport ownerWindow from '../utils/ownerWindow';\nimport createChainedFunction from '../utils/createChainedFunction';\nimport deprecatedPropType from '../utils/deprecatedPropType';\nimport withStyles from '../styles/withStyles';\nimport Modal from '../Modal';\nimport Grow from '../Grow';\nimport Paper from '../Paper';\nexport function getOffsetTop(rect, vertical) {\n var offset = 0;\n\n if (typeof vertical === 'number') {\n offset = vertical;\n } else if (vertical === 'center') {\n offset = rect.height / 2;\n } else if (vertical === 'bottom') {\n offset = rect.height;\n }\n\n return offset;\n}\nexport function getOffsetLeft(rect, horizontal) {\n var offset = 0;\n\n if (typeof horizontal === 'number') {\n offset = horizontal;\n } else if (horizontal === 'center') {\n offset = rect.width / 2;\n } else if (horizontal === 'right') {\n offset = rect.width;\n }\n\n return offset;\n}\n\nfunction getTransformOriginValue(transformOrigin) {\n return [transformOrigin.horizontal, transformOrigin.vertical].map(function (n) {\n return typeof n === 'number' ? \"\".concat(n, \"px\") : n;\n }).join(' ');\n} // Sum the scrollTop between two elements.\n\n\nfunction getScrollParent(parent, child) {\n var element = child;\n var scrollTop = 0;\n\n while (element && element !== parent) {\n element = element.parentElement;\n scrollTop += element.scrollTop;\n }\n\n return scrollTop;\n}\n\nfunction getAnchorEl(anchorEl) {\n return typeof anchorEl === 'function' ? anchorEl() : anchorEl;\n}\n\nexport var styles = {\n /* Styles applied to the root element. */\n root: {},\n\n /* Styles applied to the `Paper` component. */\n paper: {\n position: 'absolute',\n overflowY: 'auto',\n overflowX: 'hidden',\n // So we see the popover when it's empty.\n // It's most likely on issue on userland.\n minWidth: 16,\n minHeight: 16,\n maxWidth: 'calc(100% - 32px)',\n maxHeight: 'calc(100% - 32px)',\n // We disable the focus ring for mouse, touch and keyboard users.\n outline: 0\n }\n};\nvar Popover = /*#__PURE__*/React.forwardRef(function Popover(props, ref) {\n var action = props.action,\n anchorEl = props.anchorEl,\n _props$anchorOrigin = props.anchorOrigin,\n anchorOrigin = _props$anchorOrigin === void 0 ? {\n vertical: 'top',\n horizontal: 'left'\n } : _props$anchorOrigin,\n anchorPosition = props.anchorPosition,\n _props$anchorReferenc = props.anchorReference,\n anchorReference = _props$anchorReferenc === void 0 ? 'anchorEl' : _props$anchorReferenc,\n children = props.children,\n classes = props.classes,\n className = props.className,\n containerProp = props.container,\n _props$elevation = props.elevation,\n elevation = _props$elevation === void 0 ? 8 : _props$elevation,\n getContentAnchorEl = props.getContentAnchorEl,\n _props$marginThreshol = props.marginThreshold,\n marginThreshold = _props$marginThreshol === void 0 ? 16 : _props$marginThreshol,\n onEnter = props.onEnter,\n onEntered = props.onEntered,\n onEntering = props.onEntering,\n onExit = props.onExit,\n onExited = props.onExited,\n onExiting = props.onExiting,\n open = props.open,\n _props$PaperProps = props.PaperProps,\n PaperProps = _props$PaperProps === void 0 ? {} : _props$PaperProps,\n _props$transformOrigi = props.transformOrigin,\n transformOrigin = _props$transformOrigi === void 0 ? {\n vertical: 'top',\n horizontal: 'left'\n } : _props$transformOrigi,\n _props$TransitionComp = props.TransitionComponent,\n TransitionComponent = _props$TransitionComp === void 0 ? Grow : _props$TransitionComp,\n _props$transitionDura = props.transitionDuration,\n transitionDurationProp = _props$transitionDura === void 0 ? 'auto' : _props$transitionDura,\n _props$TransitionProp = props.TransitionProps,\n TransitionProps = _props$TransitionProp === void 0 ? {} : _props$TransitionProp,\n other = _objectWithoutProperties(props, [\"action\", \"anchorEl\", \"anchorOrigin\", \"anchorPosition\", \"anchorReference\", \"children\", \"classes\", \"className\", \"container\", \"elevation\", \"getContentAnchorEl\", \"marginThreshold\", \"onEnter\", \"onEntered\", \"onEntering\", \"onExit\", \"onExited\", \"onExiting\", \"open\", \"PaperProps\", \"transformOrigin\", \"TransitionComponent\", \"transitionDuration\", \"TransitionProps\"]);\n\n var paperRef = React.useRef(); // Returns the top/left offset of the position\n // to attach to on the anchor element (or body if none is provided)\n\n var getAnchorOffset = React.useCallback(function (contentAnchorOffset) {\n if (anchorReference === 'anchorPosition') {\n if (process.env.NODE_ENV !== 'production') {\n if (!anchorPosition) {\n console.error('Material-UI: You need to provide a `anchorPosition` prop when using ' + '<Popover anchorReference=\"anchorPosition\" />.');\n }\n }\n\n return anchorPosition;\n }\n\n var resolvedAnchorEl = getAnchorEl(anchorEl); // If an anchor element wasn't provided, just use the parent body element of this Popover\n\n var anchorElement = resolvedAnchorEl && resolvedAnchorEl.nodeType === 1 ? resolvedAnchorEl : ownerDocument(paperRef.current).body;\n var anchorRect = anchorElement.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'production') {\n var box = anchorElement.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) {\n console.warn(['Material-UI: 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'));\n }\n }\n\n var anchorVertical = contentAnchorOffset === 0 ? anchorOrigin.vertical : 'center';\n return {\n top: anchorRect.top + getOffsetTop(anchorRect, anchorVertical),\n left: anchorRect.left + getOffsetLeft(anchorRect, anchorOrigin.horizontal)\n };\n }, [anchorEl, anchorOrigin.horizontal, anchorOrigin.vertical, anchorPosition, anchorReference]); // Returns the vertical offset of inner content to anchor the transform on if provided\n\n var getContentAnchorOffset = React.useCallback(function (element) {\n var contentAnchorOffset = 0;\n\n if (getContentAnchorEl && anchorReference === 'anchorEl') {\n var contentAnchorEl = getContentAnchorEl(element);\n\n if (contentAnchorEl && element.contains(contentAnchorEl)) {\n var scrollTop = getScrollParent(element, contentAnchorEl);\n contentAnchorOffset = contentAnchorEl.offsetTop + contentAnchorEl.clientHeight / 2 - scrollTop || 0;\n } // != the default value\n\n\n if (process.env.NODE_ENV !== 'production') {\n if (anchorOrigin.vertical !== 'top') {\n console.error(['Material-UI: You can not change the default `anchorOrigin.vertical` value ', 'when also providing the `getContentAnchorEl` prop to the popover component.', 'Only use one of the two props.', 'Set `getContentAnchorEl` to `null | undefined`' + ' or leave `anchorOrigin.vertical` unchanged.'].join('\\n'));\n }\n }\n }\n\n return contentAnchorOffset;\n }, [anchorOrigin.vertical, anchorReference, getContentAnchorEl]); // Return the base transform origin using the element\n // and taking the content anchor offset into account if in use\n\n var getTransformOrigin = React.useCallback(function (elemRect) {\n var contentAnchorOffset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n return {\n vertical: getOffsetTop(elemRect, transformOrigin.vertical) + contentAnchorOffset,\n horizontal: getOffsetLeft(elemRect, transformOrigin.horizontal)\n };\n }, [transformOrigin.horizontal, transformOrigin.vertical]);\n var getPositioningStyle = React.useCallback(function (element) {\n // Check if the parent has requested anchoring on an inner content node\n var contentAnchorOffset = getContentAnchorOffset(element);\n var elemRect = {\n width: element.offsetWidth,\n height: element.offsetHeight\n }; // Get the transform origin point on the element itself\n\n var elemTransformOrigin = getTransformOrigin(elemRect, contentAnchorOffset);\n\n if (anchorReference === 'none') {\n return {\n top: null,\n left: null,\n transformOrigin: getTransformOriginValue(elemTransformOrigin)\n };\n } // Get the offset of of the anchoring element\n\n\n var anchorOffset = getAnchorOffset(contentAnchorOffset); // Calculate element positioning\n\n var top = anchorOffset.top - elemTransformOrigin.vertical;\n var left = anchorOffset.left - elemTransformOrigin.horizontal;\n var bottom = top + elemRect.height;\n var right = left + elemRect.width; // Use the parent window of the anchorEl if provided\n\n var containerWindow = ownerWindow(getAnchorEl(anchorEl)); // Window thresholds taking required margin into account\n\n var heightThreshold = containerWindow.innerHeight - marginThreshold;\n var widthThreshold = containerWindow.innerWidth - marginThreshold; // Check if the vertical axis needs shifting\n\n if (top < marginThreshold) {\n var diff = top - marginThreshold;\n top -= diff;\n elemTransformOrigin.vertical += diff;\n } else if (bottom > heightThreshold) {\n var _diff = bottom - heightThreshold;\n\n top -= _diff;\n elemTransformOrigin.vertical += _diff;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (elemRect.height > heightThreshold && elemRect.height && heightThreshold) {\n console.error(['Material-UI: The popover component is too tall.', \"Some part of it can not be seen on the screen (\".concat(elemRect.height - heightThreshold, \"px).\"), 'Please consider adding a `max-height` to improve the user-experience.'].join('\\n'));\n }\n } // Check if the horizontal axis needs shifting\n\n\n if (left < marginThreshold) {\n var _diff2 = left - marginThreshold;\n\n left -= _diff2;\n elemTransformOrigin.horizontal += _diff2;\n } else if (right > widthThreshold) {\n var _diff3 = right - widthThreshold;\n\n left -= _diff3;\n elemTransformOrigin.horizontal += _diff3;\n }\n\n return {\n top: \"\".concat(Math.round(top), \"px\"),\n left: \"\".concat(Math.round(left), \"px\"),\n transformOrigin: getTransformOriginValue(elemTransformOrigin)\n };\n }, [anchorEl, anchorReference, getAnchorOffset, getContentAnchorOffset, getTransformOrigin, marginThreshold]);\n var setPositioningStyles = React.useCallback(function () {\n var element = paperRef.current;\n\n if (!element) {\n return;\n }\n\n var positioning = getPositioningStyle(element);\n\n if (positioning.top !== null) {\n element.style.top = positioning.top;\n }\n\n if (positioning.left !== null) {\n element.style.left = positioning.left;\n }\n\n element.style.transformOrigin = positioning.transformOrigin;\n }, [getPositioningStyle]);\n\n var handleEntering = function handleEntering(element, isAppearing) {\n if (onEntering) {\n onEntering(element, isAppearing);\n }\n\n setPositioningStyles();\n };\n\n var handlePaperRef = React.useCallback(function (instance) {\n // #StrictMode ready\n paperRef.current = ReactDOM.findDOMNode(instance);\n }, []);\n React.useEffect(function () {\n if (open) {\n setPositioningStyles();\n }\n });\n React.useImperativeHandle(action, function () {\n return open ? {\n updatePosition: function updatePosition() {\n setPositioningStyles();\n }\n } : null;\n }, [open, setPositioningStyles]);\n React.useEffect(function () {\n if (!open) {\n return undefined;\n }\n\n var handleResize = debounce(function () {\n setPositioningStyles();\n });\n window.addEventListener('resize', handleResize);\n return function () {\n handleResize.clear();\n window.removeEventListener('resize', handleResize);\n };\n }, [open, setPositioningStyles]);\n var transitionDuration = transitionDurationProp;\n\n if (transitionDurationProp === 'auto' && !TransitionComponent.muiSupportAuto) {\n transitionDuration = undefined;\n } // If the container prop is provided, use that\n // If the anchorEl prop is provided, use its parent body element as the container\n // If neither are provided let the Modal take care of choosing the container\n\n\n var container = containerProp || (anchorEl ? ownerDocument(getAnchorEl(anchorEl)).body : undefined);\n return /*#__PURE__*/React.createElement(Modal, _extends({\n container: container,\n open: open,\n ref: ref,\n BackdropProps: {\n invisible: true\n },\n className: clsx(classes.root, className)\n }, other), /*#__PURE__*/React.createElement(TransitionComponent, _extends({\n appear: true,\n in: open,\n onEnter: onEnter,\n onEntered: onEntered,\n onExit: onExit,\n onExited: onExited,\n onExiting: onExiting,\n timeout: transitionDuration\n }, TransitionProps, {\n onEntering: createChainedFunction(handleEntering, TransitionProps.onEntering)\n }), /*#__PURE__*/React.createElement(Paper, _extends({\n elevation: elevation,\n ref: handlePaperRef\n }, PaperProps, {\n className: clsx(classes.paper, PaperProps.className)\n }), children)));\n});\nprocess.env.NODE_ENV !== \"production\" ? Popover.propTypes = {\n // ----------------------------- Warning --------------------------------\n // | These PropTypes are generated from the TypeScript type definitions |\n // | To update them edit the d.ts file and run \"yarn proptypes\" |\n // ----------------------------------------------------------------------\n\n /**\n * A ref for imperative actions.\n * It currently only supports updatePosition() action.\n */\n action: refType,\n\n /**\n * A HTML element, or a function that returns it.\n * It's used to set the position of the popover.\n */\n anchorEl: chainPropTypes(PropTypes.oneOfType([HTMLElementType, PropTypes.func]), function (props) {\n if (props.open && (!props.anchorReference || props.anchorReference === 'anchorEl')) {\n var resolvedAnchorEl = getAnchorEl(props.anchorEl);\n\n if (resolvedAnchorEl && resolvedAnchorEl.nodeType === 1) {\n var box = resolvedAnchorEl.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) {\n return new Error(['Material-UI: 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'));\n }\n } else {\n return new Error(['Material-UI: The `anchorEl` prop provided to the component is invalid.', \"It should be an Element instance but it's `\".concat(resolvedAnchorEl, \"` instead.\")].join('\\n'));\n }\n }\n\n return null;\n }),\n\n /**\n * This is the point on the anchor where the popover's\n * `anchorEl` will attach to. This is not used when the\n * anchorReference is 'anchorPosition'.\n *\n * Options:\n * vertical: [top, center, bottom];\n * horizontal: [left, center, right].\n */\n anchorOrigin: PropTypes.shape({\n horizontal: PropTypes.oneOfType([PropTypes.oneOf(['center', 'left', 'right']), PropTypes.number]).isRequired,\n vertical: PropTypes.oneOfType([PropTypes.oneOf(['bottom', 'center', 'top']), PropTypes.number]).isRequired\n }),\n\n /**\n * This is the position that may be used\n * to set the position of the popover.\n * The coordinates are relative to\n * the application's client area.\n */\n anchorPosition: PropTypes.shape({\n left: PropTypes.number.isRequired,\n top: PropTypes.number.isRequired\n }),\n\n /**\n * This determines which anchor prop to refer to to set\n * the position of the popover.\n */\n anchorReference: PropTypes.oneOf(['anchorEl', 'anchorPosition', 'none']),\n\n /**\n * The content of the component.\n */\n children: PropTypes.node,\n\n /**\n * Override or extend the styles applied to the component.\n * See [CSS API](#css) below for more details.\n */\n classes: PropTypes.object,\n\n /**\n * @ignore\n */\n className: PropTypes.string,\n\n /**\n * A HTML element, component instance, or function that returns either.\n * The `container` will passed to the Modal component.\n *\n * By default, it uses the body of the anchorEl's top-level document object,\n * so it's simply `document.body` most of the time.\n */\n container: PropTypes\n /* @typescript-to-proptypes-ignore */\n .oneOfType([HTMLElementType, PropTypes.instanceOf(React.Component), PropTypes.func]),\n\n /**\n * The elevation of the popover.\n */\n elevation: PropTypes.number,\n\n /**\n * This function is called in order to retrieve the content anchor element.\n * It's the opposite of the `anchorEl` prop.\n * The content anchor element should be an element inside the popover.\n * It's used to correctly scroll and set the position of the popover.\n * The positioning strategy tries to make the content anchor element just above the\n * anchor element.\n */\n getContentAnchorEl: PropTypes.func,\n\n /**\n * Specifies how close to the edge of the window the popover can appear.\n */\n marginThreshold: PropTypes.number,\n\n /**\n * Callback fired when the component requests to be closed.\n */\n onClose: PropTypes.func,\n\n /**\n * Callback fired before the component is entering.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEnter: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component has entered.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEntered: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component is entering.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEntering: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired before the component is exiting.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExit: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component has exited.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExited: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component is exiting.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExiting: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * If `true`, the popover is visible.\n */\n open: PropTypes.bool.isRequired,\n\n /**\n * Props applied to the [`Paper`](/api/paper/) element.\n */\n PaperProps: PropTypes\n /* @typescript-to-proptypes-ignore */\n .shape({\n component: elementTypeAcceptingRef\n }),\n\n /**\n * This is the point on the popover which\n * will attach to the anchor's origin.\n *\n * Options:\n * vertical: [top, center, bottom, x(px)];\n * horizontal: [left, center, right, x(px)].\n */\n transformOrigin: PropTypes.shape({\n horizontal: PropTypes.oneOfType([PropTypes.oneOf(['center', 'left', 'right']), PropTypes.number]).isRequired,\n vertical: PropTypes.oneOfType([PropTypes.oneOf(['bottom', 'center', 'top']), PropTypes.number]).isRequired\n }),\n\n /**\n * The component used for the transition.\n * [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.\n */\n TransitionComponent: PropTypes.elementType,\n\n /**\n * Set to 'auto' to automatically calculate transition time based on height.\n */\n transitionDuration: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number, PropTypes.shape({\n appear: PropTypes.number,\n enter: PropTypes.number,\n exit: PropTypes.number\n })]),\n\n /**\n * Props applied to the [`Transition`](http://reactcommunity.org/react-transition-group/transition#Transition-props) element.\n */\n TransitionProps: PropTypes.object\n} : void 0;\nexport default withStyles(styles, {\n name: 'MuiPopover'\n})(Popover);","map":{"version":3,"sources":["/app/node_modules/@material-ui/core/esm/Popover/Popover.js"],"names":["_extends","_objectWithoutProperties","React","PropTypes","ReactDOM","chainPropTypes","elementTypeAcceptingRef","refType","HTMLElementType","debounce","clsx","ownerDocument","ownerWindow","createChainedFunction","deprecatedPropType","withStyles","Modal","Grow","Paper","getOffsetTop","rect","vertical","offset","height","getOffsetLeft","horizontal","width","getTransformOriginValue","transformOrigin","map","n","concat","join","getScrollParent","parent","child","element","scrollTop","parentElement","getAnchorEl","anchorEl","styles","root","paper","position","overflowY","overflowX","minWidth","minHeight","maxWidth","maxHeight","outline","Popover","forwardRef","props","ref","action","_props$anchorOrigin","anchorOrigin","anchorPosition","_props$anchorReferenc","anchorReference","children","classes","className","containerProp","container","_props$elevation","elevation","getContentAnchorEl","_props$marginThreshol","marginThreshold","onEnter","onEntered","onEntering","onExit","onExited","onExiting","open","_props$PaperProps","PaperProps","_props$transformOrigi","_props$TransitionComp","TransitionComponent","_props$transitionDura","transitionDuration","transitionDurationProp","_props$TransitionProp","TransitionProps","other","paperRef","useRef","getAnchorOffset","useCallback","contentAnchorOffset","process","env","NODE_ENV","console","error","resolvedAnchorEl","anchorElement","nodeType","current","body","anchorRect","getBoundingClientRect","box","top","left","right","bottom","warn","anchorVertical","getContentAnchorOffset","contentAnchorEl","contains","offsetTop","clientHeight","getTransformOrigin","elemRect","arguments","length","undefined","getPositioningStyle","offsetWidth","offsetHeight","elemTransformOrigin","anchorOffset","containerWindow","heightThreshold","innerHeight","widthThreshold","innerWidth","diff","_diff","_diff2","_diff3","Math","round","setPositioningStyles","positioning","style","handleEntering","isAppearing","handlePaperRef","instance","findDOMNode","useEffect","useImperativeHandle","updatePosition","handleResize","window","addEventListener","clear","removeEventListener","muiSupportAuto","createElement","BackdropProps","invisible","appear","in","timeout","propTypes","oneOfType","func","Error","shape","oneOf","number","isRequired","node","object","string","instanceOf","Component","onClose","bool","component","elementType","enter","exit","name"],"mappings":"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","sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport * as ReactDOM from 'react-dom';\nimport { chainPropTypes, elementTypeAcceptingRef, refType, HTMLElementType } from '@material-ui/utils';\nimport debounce from '../utils/debounce';\nimport clsx from 'clsx';\nimport ownerDocument from '../utils/ownerDocument';\nimport ownerWindow from '../utils/ownerWindow';\nimport createChainedFunction from '../utils/createChainedFunction';\nimport deprecatedPropType from '../utils/deprecatedPropType';\nimport withStyles from '../styles/withStyles';\nimport Modal from '../Modal';\nimport Grow from '../Grow';\nimport Paper from '../Paper';\nexport function getOffsetTop(rect, vertical) {\n var offset = 0;\n\n if (typeof vertical === 'number') {\n offset = vertical;\n } else if (vertical === 'center') {\n offset = rect.height / 2;\n } else if (vertical === 'bottom') {\n offset = rect.height;\n }\n\n return offset;\n}\nexport function getOffsetLeft(rect, horizontal) {\n var offset = 0;\n\n if (typeof horizontal === 'number') {\n offset = horizontal;\n } else if (horizontal === 'center') {\n offset = rect.width / 2;\n } else if (horizontal === 'right') {\n offset = rect.width;\n }\n\n return offset;\n}\n\nfunction getTransformOriginValue(transformOrigin) {\n return [transformOrigin.horizontal, transformOrigin.vertical].map(function (n) {\n return typeof n === 'number' ? \"\".concat(n, \"px\") : n;\n }).join(' ');\n} // Sum the scrollTop between two elements.\n\n\nfunction getScrollParent(parent, child) {\n var element = child;\n var scrollTop = 0;\n\n while (element && element !== parent) {\n element = element.parentElement;\n scrollTop += element.scrollTop;\n }\n\n return scrollTop;\n}\n\nfunction getAnchorEl(anchorEl) {\n return typeof anchorEl === 'function' ? anchorEl() : anchorEl;\n}\n\nexport var styles = {\n /* Styles applied to the root element. */\n root: {},\n\n /* Styles applied to the `Paper` component. */\n paper: {\n position: 'absolute',\n overflowY: 'auto',\n overflowX: 'hidden',\n // So we see the popover when it's empty.\n // It's most likely on issue on userland.\n minWidth: 16,\n minHeight: 16,\n maxWidth: 'calc(100% - 32px)',\n maxHeight: 'calc(100% - 32px)',\n // We disable the focus ring for mouse, touch and keyboard users.\n outline: 0\n }\n};\nvar Popover = /*#__PURE__*/React.forwardRef(function Popover(props, ref) {\n var action = props.action,\n anchorEl = props.anchorEl,\n _props$anchorOrigin = props.anchorOrigin,\n anchorOrigin = _props$anchorOrigin === void 0 ? {\n vertical: 'top',\n horizontal: 'left'\n } : _props$anchorOrigin,\n anchorPosition = props.anchorPosition,\n _props$anchorReferenc = props.anchorReference,\n anchorReference = _props$anchorReferenc === void 0 ? 'anchorEl' : _props$anchorReferenc,\n children = props.children,\n classes = props.classes,\n className = props.className,\n containerProp = props.container,\n _props$elevation = props.elevation,\n elevation = _props$elevation === void 0 ? 8 : _props$elevation,\n getContentAnchorEl = props.getContentAnchorEl,\n _props$marginThreshol = props.marginThreshold,\n marginThreshold = _props$marginThreshol === void 0 ? 16 : _props$marginThreshol,\n onEnter = props.onEnter,\n onEntered = props.onEntered,\n onEntering = props.onEntering,\n onExit = props.onExit,\n onExited = props.onExited,\n onExiting = props.onExiting,\n open = props.open,\n _props$PaperProps = props.PaperProps,\n PaperProps = _props$PaperProps === void 0 ? {} : _props$PaperProps,\n _props$transformOrigi = props.transformOrigin,\n transformOrigin = _props$transformOrigi === void 0 ? {\n vertical: 'top',\n horizontal: 'left'\n } : _props$transformOrigi,\n _props$TransitionComp = props.TransitionComponent,\n TransitionComponent = _props$TransitionComp === void 0 ? Grow : _props$TransitionComp,\n _props$transitionDura = props.transitionDuration,\n transitionDurationProp = _props$transitionDura === void 0 ? 'auto' : _props$transitionDura,\n _props$TransitionProp = props.TransitionProps,\n TransitionProps = _props$TransitionProp === void 0 ? {} : _props$TransitionProp,\n other = _objectWithoutProperties(props, [\"action\", \"anchorEl\", \"anchorOrigin\", \"anchorPosition\", \"anchorReference\", \"children\", \"classes\", \"className\", \"container\", \"elevation\", \"getContentAnchorEl\", \"marginThreshold\", \"onEnter\", \"onEntered\", \"onEntering\", \"onExit\", \"onExited\", \"onExiting\", \"open\", \"PaperProps\", \"transformOrigin\", \"TransitionComponent\", \"transitionDuration\", \"TransitionProps\"]);\n\n var paperRef = React.useRef(); // Returns the top/left offset of the position\n // to attach to on the anchor element (or body if none is provided)\n\n var getAnchorOffset = React.useCallback(function (contentAnchorOffset) {\n if (anchorReference === 'anchorPosition') {\n if (process.env.NODE_ENV !== 'production') {\n if (!anchorPosition) {\n console.error('Material-UI: You need to provide a `anchorPosition` prop when using ' + '<Popover anchorReference=\"anchorPosition\" />.');\n }\n }\n\n return anchorPosition;\n }\n\n var resolvedAnchorEl = getAnchorEl(anchorEl); // If an anchor element wasn't provided, just use the parent body element of this Popover\n\n var anchorElement = resolvedAnchorEl && resolvedAnchorEl.nodeType === 1 ? resolvedAnchorEl : ownerDocument(paperRef.current).body;\n var anchorRect = anchorElement.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'production') {\n var box = anchorElement.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) {\n console.warn(['Material-UI: 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'));\n }\n }\n\n var anchorVertical = contentAnchorOffset === 0 ? anchorOrigin.vertical : 'center';\n return {\n top: anchorRect.top + getOffsetTop(anchorRect, anchorVertical),\n left: anchorRect.left + getOffsetLeft(anchorRect, anchorOrigin.horizontal)\n };\n }, [anchorEl, anchorOrigin.horizontal, anchorOrigin.vertical, anchorPosition, anchorReference]); // Returns the vertical offset of inner content to anchor the transform on if provided\n\n var getContentAnchorOffset = React.useCallback(function (element) {\n var contentAnchorOffset = 0;\n\n if (getContentAnchorEl && anchorReference === 'anchorEl') {\n var contentAnchorEl = getContentAnchorEl(element);\n\n if (contentAnchorEl && element.contains(contentAnchorEl)) {\n var scrollTop = getScrollParent(element, contentAnchorEl);\n contentAnchorOffset = contentAnchorEl.offsetTop + contentAnchorEl.clientHeight / 2 - scrollTop || 0;\n } // != the default value\n\n\n if (process.env.NODE_ENV !== 'production') {\n if (anchorOrigin.vertical !== 'top') {\n console.error(['Material-UI: You can not change the default `anchorOrigin.vertical` value ', 'when also providing the `getContentAnchorEl` prop to the popover component.', 'Only use one of the two props.', 'Set `getContentAnchorEl` to `null | undefined`' + ' or leave `anchorOrigin.vertical` unchanged.'].join('\\n'));\n }\n }\n }\n\n return contentAnchorOffset;\n }, [anchorOrigin.vertical, anchorReference, getContentAnchorEl]); // Return the base transform origin using the element\n // and taking the content anchor offset into account if in use\n\n var getTransformOrigin = React.useCallback(function (elemRect) {\n var contentAnchorOffset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n return {\n vertical: getOffsetTop(elemRect, transformOrigin.vertical) + contentAnchorOffset,\n horizontal: getOffsetLeft(elemRect, transformOrigin.horizontal)\n };\n }, [transformOrigin.horizontal, transformOrigin.vertical]);\n var getPositioningStyle = React.useCallback(function (element) {\n // Check if the parent has requested anchoring on an inner content node\n var contentAnchorOffset = getContentAnchorOffset(element);\n var elemRect = {\n width: element.offsetWidth,\n height: element.offsetHeight\n }; // Get the transform origin point on the element itself\n\n var elemTransformOrigin = getTransformOrigin(elemRect, contentAnchorOffset);\n\n if (anchorReference === 'none') {\n return {\n top: null,\n left: null,\n transformOrigin: getTransformOriginValue(elemTransformOrigin)\n };\n } // Get the offset of of the anchoring element\n\n\n var anchorOffset = getAnchorOffset(contentAnchorOffset); // Calculate element positioning\n\n var top = anchorOffset.top - elemTransformOrigin.vertical;\n var left = anchorOffset.left - elemTransformOrigin.horizontal;\n var bottom = top + elemRect.height;\n var right = left + elemRect.width; // Use the parent window of the anchorEl if provided\n\n var containerWindow = ownerWindow(getAnchorEl(anchorEl)); // Window thresholds taking required margin into account\n\n var heightThreshold = containerWindow.innerHeight - marginThreshold;\n var widthThreshold = containerWindow.innerWidth - marginThreshold; // Check if the vertical axis needs shifting\n\n if (top < marginThreshold) {\n var diff = top - marginThreshold;\n top -= diff;\n elemTransformOrigin.vertical += diff;\n } else if (bottom > heightThreshold) {\n var _diff = bottom - heightThreshold;\n\n top -= _diff;\n elemTransformOrigin.vertical += _diff;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (elemRect.height > heightThreshold && elemRect.height && heightThreshold) {\n console.error(['Material-UI: The popover component is too tall.', \"Some part of it can not be seen on the screen (\".concat(elemRect.height - heightThreshold, \"px).\"), 'Please consider adding a `max-height` to improve the user-experience.'].join('\\n'));\n }\n } // Check if the horizontal axis needs shifting\n\n\n if (left < marginThreshold) {\n var _diff2 = left - marginThreshold;\n\n left -= _diff2;\n elemTransformOrigin.horizontal += _diff2;\n } else if (right > widthThreshold) {\n var _diff3 = right - widthThreshold;\n\n left -= _diff3;\n elemTransformOrigin.horizontal += _diff3;\n }\n\n return {\n top: \"\".concat(Math.round(top), \"px\"),\n left: \"\".concat(Math.round(left), \"px\"),\n transformOrigin: getTransformOriginValue(elemTransformOrigin)\n };\n }, [anchorEl, anchorReference, getAnchorOffset, getContentAnchorOffset, getTransformOrigin, marginThreshold]);\n var setPositioningStyles = React.useCallback(function () {\n var element = paperRef.current;\n\n if (!element) {\n return;\n }\n\n var positioning = getPositioningStyle(element);\n\n if (positioning.top !== null) {\n element.style.top = positioning.top;\n }\n\n if (positioning.left !== null) {\n element.style.left = positioning.left;\n }\n\n element.style.transformOrigin = positioning.transformOrigin;\n }, [getPositioningStyle]);\n\n var handleEntering = function handleEntering(element, isAppearing) {\n if (onEntering) {\n onEntering(element, isAppearing);\n }\n\n setPositioningStyles();\n };\n\n var handlePaperRef = React.useCallback(function (instance) {\n // #StrictMode ready\n paperRef.current = ReactDOM.findDOMNode(instance);\n }, []);\n React.useEffect(function () {\n if (open) {\n setPositioningStyles();\n }\n });\n React.useImperativeHandle(action, function () {\n return open ? {\n updatePosition: function updatePosition() {\n setPositioningStyles();\n }\n } : null;\n }, [open, setPositioningStyles]);\n React.useEffect(function () {\n if (!open) {\n return undefined;\n }\n\n var handleResize = debounce(function () {\n setPositioningStyles();\n });\n window.addEventListener('resize', handleResize);\n return function () {\n handleResize.clear();\n window.removeEventListener('resize', handleResize);\n };\n }, [open, setPositioningStyles]);\n var transitionDuration = transitionDurationProp;\n\n if (transitionDurationProp === 'auto' && !TransitionComponent.muiSupportAuto) {\n transitionDuration = undefined;\n } // If the container prop is provided, use that\n // If the anchorEl prop is provided, use its parent body element as the container\n // If neither are provided let the Modal take care of choosing the container\n\n\n var container = containerProp || (anchorEl ? ownerDocument(getAnchorEl(anchorEl)).body : undefined);\n return /*#__PURE__*/React.createElement(Modal, _extends({\n container: container,\n open: open,\n ref: ref,\n BackdropProps: {\n invisible: true\n },\n className: clsx(classes.root, className)\n }, other), /*#__PURE__*/React.createElement(TransitionComponent, _extends({\n appear: true,\n in: open,\n onEnter: onEnter,\n onEntered: onEntered,\n onExit: onExit,\n onExited: onExited,\n onExiting: onExiting,\n timeout: transitionDuration\n }, TransitionProps, {\n onEntering: createChainedFunction(handleEntering, TransitionProps.onEntering)\n }), /*#__PURE__*/React.createElement(Paper, _extends({\n elevation: elevation,\n ref: handlePaperRef\n }, PaperProps, {\n className: clsx(classes.paper, PaperProps.className)\n }), children)));\n});\nprocess.env.NODE_ENV !== \"production\" ? Popover.propTypes = {\n // ----------------------------- Warning --------------------------------\n // | These PropTypes are generated from the TypeScript type definitions |\n // | To update them edit the d.ts file and run \"yarn proptypes\" |\n // ----------------------------------------------------------------------\n\n /**\n * A ref for imperative actions.\n * It currently only supports updatePosition() action.\n */\n action: refType,\n\n /**\n * A HTML element, or a function that returns it.\n * It's used to set the position of the popover.\n */\n anchorEl: chainPropTypes(PropTypes.oneOfType([HTMLElementType, PropTypes.func]), function (props) {\n if (props.open && (!props.anchorReference || props.anchorReference === 'anchorEl')) {\n var resolvedAnchorEl = getAnchorEl(props.anchorEl);\n\n if (resolvedAnchorEl && resolvedAnchorEl.nodeType === 1) {\n var box = resolvedAnchorEl.getBoundingClientRect();\n\n if (process.env.NODE_ENV !== 'test' && box.top === 0 && box.left === 0 && box.right === 0 && box.bottom === 0) {\n return new Error(['Material-UI: 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'));\n }\n } else {\n return new Error(['Material-UI: The `anchorEl` prop provided to the component is invalid.', \"It should be an Element instance but it's `\".concat(resolvedAnchorEl, \"` instead.\")].join('\\n'));\n }\n }\n\n return null;\n }),\n\n /**\n * This is the point on the anchor where the popover's\n * `anchorEl` will attach to. This is not used when the\n * anchorReference is 'anchorPosition'.\n *\n * Options:\n * vertical: [top, center, bottom];\n * horizontal: [left, center, right].\n */\n anchorOrigin: PropTypes.shape({\n horizontal: PropTypes.oneOfType([PropTypes.oneOf(['center', 'left', 'right']), PropTypes.number]).isRequired,\n vertical: PropTypes.oneOfType([PropTypes.oneOf(['bottom', 'center', 'top']), PropTypes.number]).isRequired\n }),\n\n /**\n * This is the position that may be used\n * to set the position of the popover.\n * The coordinates are relative to\n * the application's client area.\n */\n anchorPosition: PropTypes.shape({\n left: PropTypes.number.isRequired,\n top: PropTypes.number.isRequired\n }),\n\n /**\n * This determines which anchor prop to refer to to set\n * the position of the popover.\n */\n anchorReference: PropTypes.oneOf(['anchorEl', 'anchorPosition', 'none']),\n\n /**\n * The content of the component.\n */\n children: PropTypes.node,\n\n /**\n * Override or extend the styles applied to the component.\n * See [CSS API](#css) below for more details.\n */\n classes: PropTypes.object,\n\n /**\n * @ignore\n */\n className: PropTypes.string,\n\n /**\n * A HTML element, component instance, or function that returns either.\n * The `container` will passed to the Modal component.\n *\n * By default, it uses the body of the anchorEl's top-level document object,\n * so it's simply `document.body` most of the time.\n */\n container: PropTypes\n /* @typescript-to-proptypes-ignore */\n .oneOfType([HTMLElementType, PropTypes.instanceOf(React.Component), PropTypes.func]),\n\n /**\n * The elevation of the popover.\n */\n elevation: PropTypes.number,\n\n /**\n * This function is called in order to retrieve the content anchor element.\n * It's the opposite of the `anchorEl` prop.\n * The content anchor element should be an element inside the popover.\n * It's used to correctly scroll and set the position of the popover.\n * The positioning strategy tries to make the content anchor element just above the\n * anchor element.\n */\n getContentAnchorEl: PropTypes.func,\n\n /**\n * Specifies how close to the edge of the window the popover can appear.\n */\n marginThreshold: PropTypes.number,\n\n /**\n * Callback fired when the component requests to be closed.\n */\n onClose: PropTypes.func,\n\n /**\n * Callback fired before the component is entering.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEnter: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component has entered.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEntered: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component is entering.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onEntering: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired before the component is exiting.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExit: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component has exited.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExited: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * Callback fired when the component is exiting.\n * @deprecated Use the `TransitionProps` prop instead.\n */\n onExiting: deprecatedPropType(PropTypes.func, 'Use the `TransitionProps` prop instead.'),\n\n /**\n * If `true`, the popover is visible.\n */\n open: PropTypes.bool.isRequired,\n\n /**\n * Props applied to the [`Paper`](/api/paper/) element.\n */\n PaperProps: PropTypes\n /* @typescript-to-proptypes-ignore */\n .shape({\n component: elementTypeAcceptingRef\n }),\n\n /**\n * This is the point on the popover which\n * will attach to the anchor's origin.\n *\n * Options:\n * vertical: [top, center, bottom, x(px)];\n * horizontal: [left, center, right, x(px)].\n */\n transformOrigin: PropTypes.shape({\n horizontal: PropTypes.oneOfType([PropTypes.oneOf(['center', 'left', 'right']), PropTypes.number]).isRequired,\n vertical: PropTypes.oneOfType([PropTypes.oneOf(['bottom', 'center', 'top']), PropTypes.number]).isRequired\n }),\n\n /**\n * The component used for the transition.\n * [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.\n */\n TransitionComponent: PropTypes.elementType,\n\n /**\n * Set to 'auto' to automatically calculate transition time based on height.\n */\n transitionDuration: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number, PropTypes.shape({\n appear: PropTypes.number,\n enter: PropTypes.number,\n exit: PropTypes.number\n })]),\n\n /**\n * Props applied to the [`Transition`](http://reactcommunity.org/react-transition-group/transition#Transition-props) element.\n */\n TransitionProps: PropTypes.object\n} : void 0;\nexport default withStyles(styles, {\n name: 'MuiPopover'\n})(Popover);"]},"metadata":{},"sourceType":"module"} |