From 6ec259a0e71174651bae95d4628138bf6fd68742 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 15 Mar 2026 16:19:35 -0400 Subject: refactor: packages/ --- packages/excalidraw/components/ErrorDialog.tsx | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 packages/excalidraw/components/ErrorDialog.tsx (limited to 'packages/excalidraw/components/ErrorDialog.tsx') diff --git a/packages/excalidraw/components/ErrorDialog.tsx b/packages/excalidraw/components/ErrorDialog.tsx new file mode 100644 index 0000000..74d265f --- /dev/null +++ b/packages/excalidraw/components/ErrorDialog.tsx @@ -0,0 +1,40 @@ +import React, { useState } from "react"; +import { t } from "../i18n"; + +import { Dialog } from "./Dialog"; +import { useExcalidrawContainer } from "./App"; + +export const ErrorDialog = ({ + children, + onClose, +}: { + children?: React.ReactNode; + onClose?: () => void; +}) => { + const [modalIsShown, setModalIsShown] = useState(!!children); + const { container: excalidrawContainer } = useExcalidrawContainer(); + + const handleClose = React.useCallback(() => { + setModalIsShown(false); + + if (onClose) { + onClose(); + } + // TODO: Fix the A11y issues so this is never needed since we should always focus on last active element + excalidrawContainer?.focus(); + }, [onClose, excalidrawContainer]); + + return ( + <> + {modalIsShown && ( + +
{children}
+
+ )} + + ); +}; -- cgit v1.2.3