023313e92f
* fix: show error message when measureText API breaks in brave * Add docs * Add assets * tweak message * fix * tweak message * add translations * lint * fix * fix * lint * lint * lint please work now * tweak doc * fix * split error component to new file * add specs * tweaks Co-authored-by: David Luzar <luzar.david@gmail.com> * wrap in div with a width of 30rem * fix spec * fix * Fix typo --------- Co-authored-by: David Luzar <luzar.david@gmail.com> Co-authored-by: Daniel J. Geiger <1852529+DanielJGeiger@users.noreply.github.com>
41 lines
987 B
TypeScript
41 lines
987 B
TypeScript
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 && (
|
|
<Dialog
|
|
small
|
|
onCloseRequest={handleClose}
|
|
title={t("errorDialog.title")}
|
|
>
|
|
<div style={{ whiteSpace: "pre-wrap" }}>{children}</div>
|
|
</Dialog>
|
|
)}
|
|
</>
|
|
);
|
|
};
|