1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import "./Modal.scss";
- import React, { useState, useLayoutEffect } from "react";
- import { createPortal } from "react-dom";
- import clsx from "clsx";
- import { KEYS } from "../keys";
- export const Modal = (props: {
- className?: string;
- children: React.ReactNode;
- maxWidth?: number;
- onCloseRequest(): void;
- labelledBy: string;
- }) => {
- const modalRoot = useBodyRoot();
- if (!modalRoot) {
- return null;
- }
- const handleKeydown = (event: React.KeyboardEvent) => {
- if (event.key === KEYS.ESCAPE) {
- event.nativeEvent.stopImmediatePropagation();
- props.onCloseRequest();
- }
- };
- return createPortal(
- <div
- className={clsx("Modal", props.className)}
- role="dialog"
- aria-modal="true"
- onKeyDown={handleKeydown}
- aria-labelledby={props.labelledBy}
- >
- <div className="Modal__background" onClick={props.onCloseRequest}></div>
- <div
- className="Modal__content"
- style={{
- "--max-width": `${props.maxWidth}px`,
- maxHeight: "100%",
- overflowY: "scroll",
- }}
- >
- {props.children}
- </div>
- </div>,
- modalRoot,
- );
- };
- const useBodyRoot = () => {
- const [div, setDiv] = useState<HTMLDivElement | null>(null);
- useLayoutEffect(() => {
- const isDarkTheme = !!document
- .querySelector(".excalidraw")
- ?.classList.contains("Appearance_dark");
- const div = document.createElement("div");
- div.classList.add("excalidraw");
- if (isDarkTheme) {
- div.classList.add("Appearance_dark");
- div.classList.add("Appearance_dark-background-none");
- }
- document.body.appendChild(div);
- setDiv(div);
- return () => {
- document.body.removeChild(div);
- };
- }, []);
- return div;
- };
|