Jesus sucks
This commit is contained in:
97
backend/frontend/node_modules/@restart/ui/esm/Overlay.js
generated
vendored
Normal file
97
backend/frontend/node_modules/@restart/ui/esm/Overlay.js
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
import * as React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import useCallbackRef from '@restart/hooks/useCallbackRef';
|
||||
import useMergedRefs from '@restart/hooks/useMergedRefs';
|
||||
import { useState } from 'react';
|
||||
import usePopper from './usePopper';
|
||||
import useRootClose from './useRootClose';
|
||||
import useWaitForDOMRef from './useWaitForDOMRef';
|
||||
import mergeOptionsWithPopperConfig from './mergeOptionsWithPopperConfig';
|
||||
import { renderTransition } from './ImperativeTransition';
|
||||
/**
|
||||
* Built on top of `Popper.js`, the overlay component is
|
||||
* great for custom tooltip overlays.
|
||||
*/
|
||||
const Overlay = /*#__PURE__*/React.forwardRef((props, outerRef) => {
|
||||
const {
|
||||
flip,
|
||||
offset,
|
||||
placement,
|
||||
containerPadding,
|
||||
popperConfig = {},
|
||||
transition: Transition,
|
||||
runTransition
|
||||
} = props;
|
||||
const [rootElement, attachRef] = useCallbackRef();
|
||||
const [arrowElement, attachArrowRef] = useCallbackRef();
|
||||
const mergedRef = useMergedRefs(attachRef, outerRef);
|
||||
const container = useWaitForDOMRef(props.container);
|
||||
const target = useWaitForDOMRef(props.target);
|
||||
const [exited, setExited] = useState(!props.show);
|
||||
const popper = usePopper(target, rootElement, mergeOptionsWithPopperConfig({
|
||||
placement,
|
||||
enableEvents: !!props.show,
|
||||
containerPadding: containerPadding || 5,
|
||||
flip,
|
||||
offset,
|
||||
arrowElement,
|
||||
popperConfig
|
||||
}));
|
||||
|
||||
// TODO: I think this needs to be in an effect
|
||||
if (props.show && exited) {
|
||||
setExited(false);
|
||||
}
|
||||
const handleHidden = (...args) => {
|
||||
setExited(true);
|
||||
if (props.onExited) {
|
||||
props.onExited(...args);
|
||||
}
|
||||
};
|
||||
|
||||
// Don't un-render the overlay while it's transitioning out.
|
||||
const mountOverlay = props.show || !exited;
|
||||
useRootClose(rootElement, props.onHide, {
|
||||
disabled: !props.rootClose || props.rootCloseDisabled,
|
||||
clickTrigger: props.rootCloseEvent
|
||||
});
|
||||
if (!mountOverlay) {
|
||||
// Don't bother showing anything if we don't have to.
|
||||
return null;
|
||||
}
|
||||
const {
|
||||
onExit,
|
||||
onExiting,
|
||||
onEnter,
|
||||
onEntering,
|
||||
onEntered
|
||||
} = props;
|
||||
let child = props.children(Object.assign({}, popper.attributes.popper, {
|
||||
style: popper.styles.popper,
|
||||
ref: mergedRef
|
||||
}), {
|
||||
popper,
|
||||
placement,
|
||||
show: !!props.show,
|
||||
arrowProps: Object.assign({}, popper.attributes.arrow, {
|
||||
style: popper.styles.arrow,
|
||||
ref: attachArrowRef
|
||||
})
|
||||
});
|
||||
child = renderTransition(Transition, runTransition, {
|
||||
in: !!props.show,
|
||||
appear: true,
|
||||
mountOnEnter: true,
|
||||
unmountOnExit: true,
|
||||
children: child,
|
||||
onExit,
|
||||
onExiting,
|
||||
onExited: handleHidden,
|
||||
onEnter,
|
||||
onEntering,
|
||||
onEntered
|
||||
});
|
||||
return container ? /*#__PURE__*/ReactDOM.createPortal(child, container) : null;
|
||||
});
|
||||
Overlay.displayName = 'Overlay';
|
||||
export default Overlay;
|
||||
Reference in New Issue
Block a user