GoScrobble/web/node_modules/reactjs-popup/dist/reactjs-popup.cjs.production.min.js.map

1 line
31 KiB
Plaintext

{"version":3,"file":"reactjs-popup.cjs.production.min.js","sources":["../src/hooks.tsx","../src/styles.ts","../src/Utils.ts","../src/index.tsx"],"sourcesContent":["import { useEffect, RefObject, useLayoutEffect } from 'react';\n\nexport const useOnEscape = (\n handler: (event: KeyboardEvent) => void,\n active = true\n) => {\n useEffect(() => {\n if (!active) return;\n const listener = (event: KeyboardEvent) => {\n // check if key is an Escape\n if (event.key === 'Escape') handler(event);\n };\n document.addEventListener('keyup', listener);\n\n return () => {\n if (!active) return;\n document.removeEventListener('keyup', listener);\n };\n }, [handler, active]);\n};\n\nexport const useRepositionOnResize = (handler: () => void, active = true) => {\n useEffect(() => {\n if (!active) return;\n const listener = () => {\n handler();\n };\n\n window.addEventListener('resize', listener);\n\n return () => {\n if (!active) return;\n window.removeEventListener('resize', listener);\n };\n }, [handler, active]);\n};\n\nexport const useOnClickOutside = (\n ref: RefObject<HTMLElement> | RefObject<HTMLElement>[],\n handler: (event: TouchEvent | MouseEvent) => void,\n active = true\n) => {\n useEffect(() => {\n if (!active) return;\n const listener = (event: TouchEvent | MouseEvent) => {\n // Do nothing if clicking ref's element or descendent elements\n const refs = Array.isArray(ref) ? ref : [ref];\n\n let contains = false;\n refs.forEach(r => {\n if (!r.current || r.current.contains(event.target as Node)) {\n contains = true;\n return;\n }\n });\n event.stopPropagation();\n if (!contains) handler(event);\n };\n\n document.addEventListener('mousedown', listener);\n document.addEventListener('touchstart', listener);\n\n return () => {\n if (!active) return;\n document.removeEventListener('mousedown', listener);\n document.removeEventListener('touchstart', listener);\n };\n }, [ref, handler, active]);\n};\n\n// Make sure that user is not able TAB out of the Modal content on Open\nexport const useTabbing = (\n contentRef: RefObject<HTMLElement>,\n active = true\n) => {\n useEffect(() => {\n if (!active) return;\n const listener = (event: KeyboardEvent) => {\n // check if key is an Tab\n if (event.keyCode === 9) {\n const els = contentRef?.current?.querySelectorAll(\n 'a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), [tabindex=\"0\"]'\n );\n\n const focusableEls = Array.prototype.slice.call(els);\n if (focusableEls.length === 1) {\n event.preventDefault();\n return;\n }\n\n const firstFocusableEl = focusableEls[0];\n const lastFocusableEl = focusableEls[focusableEls.length - 1];\n if (event.shiftKey && document.activeElement === firstFocusableEl) {\n event.preventDefault();\n lastFocusableEl.focus();\n } else if (document.activeElement === lastFocusableEl) {\n event.preventDefault();\n firstFocusableEl.focus();\n }\n }\n };\n\n document.addEventListener('keydown', listener);\n\n return () => {\n if (!active) return;\n document.removeEventListener('keydown', listener);\n };\n }, [contentRef, active]);\n};\n\nexport const useIsomorphicLayoutEffect =\n typeof window !== 'undefined' ? useLayoutEffect : useEffect;\n","import React from 'react';\n\ntype PopupStyle = {\n popupContent: {\n tooltip: React.CSSProperties;\n modal: React.CSSProperties;\n };\n popupArrow: React.CSSProperties;\n overlay: {\n tooltip: React.CSSProperties;\n modal: React.CSSProperties;\n };\n};\n\nconst Style: PopupStyle = {\n popupContent: {\n tooltip: {\n position: 'absolute',\n zIndex: 999,\n },\n modal: {\n position: 'relative',\n margin: 'auto',\n },\n },\n popupArrow: {\n height: '8px',\n width: '16px',\n position: 'absolute',\n background: 'transparent',\n color: '#FFF',\n zIndex: -1,\n },\n overlay: {\n tooltip: {\n position: 'fixed',\n top: '0',\n bottom: '0',\n left: '0',\n right: '0',\n zIndex: 999,\n },\n modal: {\n position: 'fixed',\n top: '0',\n bottom: '0',\n left: '0',\n right: '0',\n display: 'flex',\n zIndex: 999,\n },\n },\n};\n\nexport default Style;\n","/* Algo to calculate position\n 1. center position for popup content : the center of the trigger will be the center of the content content\n so the popup content position will be like this :\n top => the y of the center for the trigger element : trigger.top + trigger.height/2\n left => the x of the center for the trigger element : trigger.left + trigger.width/2\n\n 2. translate position according to the first position attribute passed in the function argument\n for example :\n position = 'left top'\n we need to handle the first argument in the position: 'left' => that's mean we need to translate the popup content according to the X axis by - content.width/2\n\n 3.translate position according to the first position attribute passed in the function argument\n for example :\n position = 'left top'\n the second argument 'top' => translate popup content by + content.height*4/5\n\n 4. check if calculated position is going out of bounds of wrapper box or not. If yes repeat 1-3 for next position enum. By default wrapper box is window element\n*/\nimport { PopupPosition } from './types';\n\nexport const POSITION_TYPES: PopupPosition[] = [\n 'top left',\n 'top center',\n 'top right',\n 'right top',\n 'right center',\n 'right bottom',\n 'bottom left',\n 'bottom center',\n 'bottom right',\n 'left top',\n 'left center',\n 'left bottom',\n //'center center',\n];\n\ntype CordsType = {\n top: number;\n left: number;\n transform: string;\n arrowLeft: string;\n arrowTop: string;\n};\n\nconst getCoordinatesForPosition = (\n triggerBounding: DOMRect,\n ContentBounding: DOMRect,\n position: PopupPosition, //PopupPosition | PopupPosition[],\n arrow: boolean,\n { offsetX, offsetY }: { offsetX: number; offsetY: number }\n): CordsType => {\n const margin = arrow ? 8 : 0;\n const args = position.split(' ');\n // the step N 1 : center the popup content => ok\n const CenterTop = triggerBounding.top + triggerBounding.height / 2;\n const CenterLeft = triggerBounding.left + triggerBounding.width / 2;\n const { height, width } = ContentBounding;\n let top = CenterTop - height / 2;\n let left = CenterLeft - width / 2;\n let transform = '';\n let arrowTop = '0%';\n let arrowLeft = '0%';\n // the step N 2 : => ok\n switch (args[0]) {\n case 'top':\n top -= height / 2 + triggerBounding.height / 2 + margin;\n transform = `rotate(180deg) translateX(50%)`;\n arrowTop = '100%';\n arrowLeft = '50%';\n break;\n case 'bottom':\n top += height / 2 + triggerBounding.height / 2 + margin;\n transform = `rotate(0deg) translateY(-100%) translateX(-50%)`;\n arrowLeft = '50%';\n break;\n case 'left':\n left -= width / 2 + triggerBounding.width / 2 + margin;\n transform = ` rotate(90deg) translateY(50%) translateX(-25%)`;\n arrowLeft = '100%';\n arrowTop = '50%';\n break;\n case 'right':\n left += width / 2 + triggerBounding.width / 2 + margin;\n transform = `rotate(-90deg) translateY(-150%) translateX(25%)`;\n arrowTop = '50%';\n break;\n default:\n }\n switch (args[1]) {\n case 'top':\n top = triggerBounding.top;\n arrowTop = `${triggerBounding.height / 2}px`;\n break;\n case 'bottom':\n top = triggerBounding.top - height + triggerBounding.height;\n arrowTop = `${height - triggerBounding.height / 2}px`;\n break;\n case 'left':\n left = triggerBounding.left;\n arrowLeft = `${triggerBounding.width / 2}px`;\n break;\n case 'right':\n left = triggerBounding.left - width + triggerBounding.width;\n arrowLeft = `${width - triggerBounding.width / 2}px`;\n break;\n default:\n }\n\n top = args[0] === 'top' ? top - offsetY : top + offsetY;\n left = args[0] === 'left' ? left - offsetX : left + offsetX;\n\n return { top, left, transform, arrowLeft, arrowTop };\n};\n\nexport const getTooltipBoundary = (keepTooltipInside: string | Boolean) => {\n // add viewport\n let boundingBox = {\n top: 0,\n left: 0,\n /* eslint-disable-next-line no-undef */\n width: window.innerWidth,\n /* eslint-disable-next-line no-undef */\n height: window.innerHeight,\n };\n if (typeof keepTooltipInside === 'string') {\n /* eslint-disable-next-line no-undef */\n const selector = document.querySelector(keepTooltipInside);\n if (process.env.NODE_ENV !== 'production') {\n if (selector === null)\n throw new Error(\n `${keepTooltipInside} selector does not exist : keepTooltipInside must be a valid html selector 'class' or 'Id' or a boolean value`\n );\n }\n if (selector !== null) boundingBox = selector.getBoundingClientRect();\n }\n\n return boundingBox;\n};\n\nconst calculatePosition = (\n triggerBounding: DOMRect,\n ContentBounding: DOMRect,\n position: PopupPosition | PopupPosition[],\n arrow: boolean,\n { offsetX, offsetY }: { offsetX: number; offsetY: number },\n keepTooltipInside: string | boolean\n): CordsType => {\n let bestCoords: CordsType = {\n arrowLeft: '0%',\n arrowTop: '0%',\n left: 0,\n top: 0,\n transform: 'rotate(135deg)',\n };\n let i = 0;\n const wrapperBox = getTooltipBoundary(keepTooltipInside);\n let positions = Array.isArray(position) ? position : [position];\n\n // keepTooltipInside would be activated if the keepTooltipInside exist or the position is Array\n if (keepTooltipInside || Array.isArray(position))\n positions = [...positions, ...POSITION_TYPES];\n\n // add viewPort for WarpperBox\n // wrapperBox.top = wrapperBox.top + window.scrollY;\n // wrapperBox.left = wrapperBox.left + window.scrollX;\n\n while (i < positions.length) {\n bestCoords = getCoordinatesForPosition(\n triggerBounding,\n ContentBounding,\n positions[i],\n arrow,\n { offsetX, offsetY }\n );\n\n const contentBox = {\n top: bestCoords.top,\n left: bestCoords.left,\n width: ContentBounding.width,\n height: ContentBounding.height,\n };\n\n if (\n contentBox.top <= wrapperBox.top ||\n contentBox.left <= wrapperBox.left ||\n contentBox.top + contentBox.height >=\n wrapperBox.top + wrapperBox.height ||\n contentBox.left + contentBox.width >= wrapperBox.left + wrapperBox.width\n ) {\n i++;\n } else {\n break;\n }\n }\n\n return bestCoords;\n};\n\nexport default calculatePosition;\n","import React, {\n useState,\n useRef,\n useEffect,\n forwardRef,\n useImperativeHandle,\n} from 'react';\nimport ReactDOM from 'react-dom';\nimport { PopupProps, PopupActions } from './types';\nimport {\n useOnEscape,\n useRepositionOnResize,\n useOnClickOutside,\n useTabbing,\n useIsomorphicLayoutEffect,\n} from './hooks';\n\nimport './index.css';\n\nimport styles from './styles';\nimport calculatePosition from './Utils';\n\nlet popupIdCounter = 0;\n\nconst getRootPopup = () => {\n let PopupRoot = document.getElementById('popup-root');\n\n if (PopupRoot === null) {\n PopupRoot = document.createElement('div');\n PopupRoot.setAttribute('id', 'popup-root');\n document.body.appendChild(PopupRoot);\n }\n\n return PopupRoot;\n};\n\nexport const Popup = forwardRef<PopupActions, PopupProps>(\n (\n {\n trigger = null,\n onOpen = () => {},\n onClose = () => {},\n defaultOpen = false,\n open = undefined,\n disabled = false,\n nested = false,\n closeOnDocumentClick = true,\n repositionOnResize = true,\n closeOnEscape = true,\n on = ['click'],\n contentStyle = {},\n arrowStyle = {},\n overlayStyle = {},\n className = '',\n position = 'bottom center',\n modal = false,\n lockScroll = false,\n arrow = true,\n offsetX = 0,\n offsetY = 0,\n mouseEnterDelay = 100,\n mouseLeaveDelay = 100,\n keepTooltipInside = false,\n children,\n },\n ref\n ) => {\n const [isOpen, setIsOpen] = useState<boolean>(open || defaultOpen);\n const triggerRef = useRef<HTMLElement>(null);\n const contentRef = useRef<HTMLElement>(null);\n const arrowRef = useRef<HTMLDivElement>(null);\n const focusedElBeforeOpen = useRef<Element | null>(null);\n const popupId = useRef<string>(`popup-${++popupIdCounter}`);\n\n const isModal = modal ? true : !trigger;\n const timeOut = useRef<any>(0);\n\n useIsomorphicLayoutEffect(() => {\n if (isOpen) {\n focusedElBeforeOpen.current = document.activeElement;\n setPosition();\n focusContentOnOpen(); // for accessibility\n lockScrolll();\n } else {\n resetScroll();\n }\n return () => {\n clearTimeout(timeOut.current);\n };\n }, [isOpen]);\n\n // for uncontrolled popup we need to sync isOpen with open prop\n useEffect(() => {\n if (typeof open === 'boolean') {\n if (open) openPopup();\n else closePopup();\n }\n }, [open, disabled]);\n\n const openPopup = (event?: React.SyntheticEvent) => {\n if (isOpen || disabled) return;\n setIsOpen(true);\n setTimeout(() => onOpen(event), 0);\n };\n\n const closePopup = (\n event?: React.SyntheticEvent | KeyboardEvent | TouchEvent | MouseEvent\n ) => {\n if (!isOpen || disabled) return;\n setIsOpen(false);\n if (isModal) (focusedElBeforeOpen.current as HTMLElement)?.focus();\n setTimeout(() => onClose(event), 0);\n };\n\n const togglePopup = (event?: React.SyntheticEvent) => {\n event?.stopPropagation();\n if (!isOpen) openPopup(event);\n else closePopup(event);\n };\n\n const onMouseEnter = (event?: React.SyntheticEvent) => {\n clearTimeout(timeOut.current);\n timeOut.current = setTimeout(() => openPopup(event), mouseEnterDelay);\n };\n\n const onContextMenu = (event?: React.SyntheticEvent) => {\n event?.preventDefault();\n togglePopup();\n };\n\n const onMouseLeave = (event?: React.SyntheticEvent) => {\n clearTimeout(timeOut.current);\n timeOut.current = setTimeout(() => closePopup(event), mouseLeaveDelay);\n };\n\n const lockScrolll = () => {\n if (isModal && lockScroll)\n document.getElementsByTagName('body')[0].style.overflow = 'hidden'; // migrate to document.body\n };\n\n const resetScroll = () => {\n if (isModal && lockScroll)\n document.getElementsByTagName('body')[0].style.overflow = 'auto';\n };\n const focusContentOnOpen = () => {\n const focusableEls = contentRef?.current?.querySelectorAll(\n 'a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), [tabindex=\"0\"]'\n );\n const firstEl = Array.prototype.slice.call(focusableEls)[0];\n firstEl?.focus();\n };\n\n useImperativeHandle(ref, () => ({\n open: () => {\n openPopup();\n },\n close: () => {\n closePopup();\n },\n toggle: () => {\n togglePopup();\n },\n }));\n\n // set Position\n const setPosition = () => {\n if (isModal || !isOpen) return;\n if (!triggerRef?.current || !triggerRef?.current || !contentRef?.current)\n return; /// show error as one of ref is undefined\n const trigger = triggerRef.current.getBoundingClientRect();\n const content = contentRef.current.getBoundingClientRect();\n\n const cords = calculatePosition(\n trigger,\n content,\n position,\n arrow,\n {\n offsetX,\n offsetY,\n },\n keepTooltipInside\n );\n contentRef.current.style.top = `${cords.top + window.scrollY}px`;\n contentRef.current.style.left = `${cords.left + window.scrollX}px`;\n if (arrow && !!arrowRef.current) {\n arrowRef.current.style.transform = cords.transform;\n arrowRef.current.style.setProperty('-ms-transform', cords.transform);\n arrowRef.current.style.setProperty(\n '-webkit-transform',\n cords.transform\n );\n arrowRef.current.style.top =\n arrowStyle.top?.toString() || cords.arrowTop;\n arrowRef.current.style.left =\n arrowStyle.left?.toString() || cords.arrowLeft;\n }\n };\n // hooks\n useOnEscape(closePopup, closeOnEscape); // can be optimized if we disabled for hover\n useTabbing(contentRef, isOpen && isModal);\n useRepositionOnResize(setPosition, repositionOnResize);\n useOnClickOutside(\n !!trigger ? [contentRef, triggerRef] : [contentRef],\n closePopup,\n closeOnDocumentClick && !nested\n ); // we need to add a ne\n // render the trigger element and add events\n const renderTrigger = () => {\n const triggerProps: any = {\n key: 'T',\n ref: triggerRef,\n 'aria-describedby': popupId.current,\n };\n const onAsArray = Array.isArray(on) ? on : [on];\n for (let i = 0, len = onAsArray.length; i < len; i++) {\n switch (onAsArray[i]) {\n case 'click':\n triggerProps.onClick = togglePopup;\n break;\n case 'right-click':\n triggerProps.onContextMenu = onContextMenu;\n break;\n case 'hover':\n triggerProps.onMouseEnter = onMouseEnter;\n triggerProps.onMouseLeave = onMouseLeave;\n break;\n case 'focus':\n triggerProps.onFocus = onMouseEnter;\n triggerProps.onBlur = onMouseLeave;\n break;\n default:\n }\n }\n\n if (typeof trigger === 'function') {\n const comp = trigger(isOpen);\n return !!trigger && React.cloneElement(comp, triggerProps);\n }\n\n return !!trigger && React.cloneElement(trigger, triggerProps);\n };\n\n const addWarperAction = () => {\n const popupContentStyle = isModal\n ? styles.popupContent.modal\n : styles.popupContent.tooltip;\n\n const childrenElementProps: any = {\n className: `popup-content ${\n className !== ''\n ? className\n .split(' ')\n .map(c => `${c}-content`)\n .join(' ')\n : ''\n }`,\n style: {\n ...popupContentStyle,\n ...contentStyle,\n pointerEvents: 'auto', //closeOnDocumentClick && nested ? 'auto' : 'none',\n },\n ref: contentRef,\n onClick: (e: any) => {\n e.stopPropagation();\n },\n };\n if (!modal && on.indexOf('hover') >= 0) {\n childrenElementProps.onMouseEnter = onMouseEnter;\n childrenElementProps.onMouseLeave = onMouseLeave;\n }\n return childrenElementProps;\n };\n\n const renderContent = () => {\n return (\n <div\n {...addWarperAction()}\n key=\"C\"\n role={isModal ? 'dialog' : 'tooltip'}\n id={popupId.current}\n >\n {arrow && !isModal && (\n <div ref={arrowRef} style={styles.popupArrow}>\n <svg\n data-testid=\"arrow\"\n className={`popup-arrow ${\n className !== ''\n ? className\n .split(' ')\n .map(c => `${c}-arrow`)\n .join(' ')\n : ''\n }`}\n viewBox=\"0 0 32 16\"\n style={{\n position: 'absolute',\n ...arrowStyle,\n }}\n >\n <path d=\"M16 0l16 16H0z\" fill=\"currentcolor\" />\n </svg>\n </div>\n )}\n {children && typeof children === 'function'\n ? children(closePopup, isOpen)\n : children}\n </div>\n );\n };\n\n const overlay = !(on.indexOf('hover') >= 0);\n const ovStyle = isModal ? styles.overlay.modal : styles.overlay.tooltip;\n\n const content = [\n overlay && (\n <div\n key=\"O\"\n data-testid=\"overlay\"\n data-popup={isModal ? 'modal' : 'tooltip'}\n className={`popup-overlay ${\n className !== ''\n ? className\n .split(' ')\n .map(c => `${c}-overlay`)\n .join(' ')\n : ''\n }`}\n style={{\n ...ovStyle,\n ...overlayStyle,\n pointerEvents:\n (closeOnDocumentClick && nested) || isModal ? 'auto' : 'none',\n }}\n onClick={closeOnDocumentClick && nested ? closePopup : undefined}\n tabIndex={-1}\n >\n {isModal && renderContent()}\n </div>\n ),\n\n !isModal && renderContent(),\n ];\n\n return (\n <>\n {renderTrigger()}\n {isOpen && ReactDOM.createPortal(content, getRootPopup())}\n </>\n );\n }\n);\n\nexport default Popup;\n"],"names":["useIsomorphicLayoutEffect","window","useLayoutEffect","useEffect","Style","popupContent","tooltip","position","zIndex","modal","margin","popupArrow","height","width","background","color","overlay","top","bottom","left","right","display","POSITION_TYPES","getCoordinatesForPosition","triggerBounding","ContentBounding","arrow","offsetX","offsetY","args","split","transform","arrowTop","arrowLeft","popupIdCounter","Popup","forwardRef","ref","trigger","onOpen","onClose","defaultOpen","open","undefined","disabled","nested","closeOnDocumentClick","repositionOnResize","closeOnEscape","on","contentStyle","arrowStyle","overlayStyle","className","lockScroll","mouseEnterDelay","mouseLeaveDelay","keepTooltipInside","children","useState","isOpen","setIsOpen","triggerRef","useRef","contentRef","arrowRef","focusedElBeforeOpen","popupId","isModal","timeOut","current","document","activeElement","setPosition","focusContentOnOpen","lockScrolll","resetScroll","clearTimeout","openPopup","closePopup","event","setTimeout","focus","togglePopup","stopPropagation","onMouseEnter","onContextMenu","preventDefault","onMouseLeave","getElementsByTagName","style","overflow","focusableEls","_contentRef$current","querySelectorAll","firstEl","Array","prototype","slice","call","useImperativeHandle","close","toggle","handler","active","cords","bestCoords","i","wrapperBox","boundingBox","innerWidth","innerHeight","selector","querySelector","getBoundingClientRect","getTooltipBoundary","positions","isArray","length","contentBox","calculatePosition","scrollY","scrollX","setProperty","toString","listener","key","addEventListener","removeEventListener","keyCode","els","firstFocusableEl","lastFocusableEl","shiftKey","useTabbing","useRepositionOnResize","refs","contains","forEach","r","target","useOnClickOutside","PopupRoot","renderContent","React","popupContentStyle","styles","childrenElementProps","map","c","join","pointerEvents","onClick","e","indexOf","role","id","viewBox","d","fill","ovStyle","content","tabIndex","triggerProps","onAsArray","len","onFocus","onBlur","comp","cloneElement","renderTrigger","ReactDOM","createPortal","getElementById","createElement","setAttribute","body","appendChild"],"mappings":"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"}