excalidraw/src/components/Popover.tsx

54 lines
1.3 KiB
TypeScript
Raw Normal View History

import React, { useLayoutEffect, useRef } from "react";
import "./Popover.css";
2020-01-07 07:50:59 +05:00
type Props = {
top?: number;
left?: number;
children?: React.ReactNode;
onCloseRequest?(): void;
fitInViewport?: boolean;
2020-01-07 07:50:59 +05:00
};
export function Popover({
children,
left,
top,
onCloseRequest,
2020-01-24 12:04:54 +02:00
fitInViewport = false,
}: Props) {
const popoverRef = useRef<HTMLDivElement>(null);
// ensure the popover doesn't overflow the viewport
useLayoutEffect(() => {
if (fitInViewport && popoverRef.current) {
const element = popoverRef.current;
const { x, y, width, height } = element.getBoundingClientRect();
const viewportWidth = window.innerWidth;
if (x + width > viewportWidth) {
element.style.left = `${viewportWidth - width}px`;
}
const viewportHeight = window.innerHeight;
if (y + height > viewportHeight) {
element.style.top = `${viewportHeight - height}px`;
}
}
}, [fitInViewport]);
2020-01-07 07:50:59 +05:00
return (
<div className="popover" style={{ top: top, left: left }} ref={popoverRef}>
2020-01-07 07:50:59 +05:00
<div
className="cover"
onClick={onCloseRequest}
onContextMenu={event => {
event.preventDefault();
if (onCloseRequest) {
onCloseRequest();
}
2020-01-07 07:50:59 +05:00
}}
/>
{children}
</div>
);
}