diff --git a/packages/react/src/ErrorHandler.tsx b/packages/react/src/ErrorHandler.tsx new file mode 100644 index 0000000..378965e --- /dev/null +++ b/packages/react/src/ErrorHandler.tsx @@ -0,0 +1,19 @@ +import { isRouteErrorResponse, useRouteError } from "react-router-dom"; +import UnexpectedError from "./errors/Unexpected"; +import PageNotFound from "./errors/PageNotFound"; + +function ErrorBoundary() { + const error = useRouteError(); + + if (isRouteErrorResponse(error)) { + if (error.status === 404) { + return ; + } else { + return ; + } + } else { + return ; + } +} + +export default ErrorBoundary; diff --git a/packages/react/src/errors/PageNotFound.tsx b/packages/react/src/errors/PageNotFound.tsx new file mode 100644 index 0000000..bc37876 --- /dev/null +++ b/packages/react/src/errors/PageNotFound.tsx @@ -0,0 +1,22 @@ +import { Link } from "react-router-dom"; +import { Button } from "../../components/Button"; + +function PageNotFound() { + return ( +
+
+

Page not found

+

+ The page you are looking for does not exist. +

+
+
+ +
+
+ ); +} + +export default PageNotFound; diff --git a/packages/react/src/errors/Unexpected.tsx b/packages/react/src/errors/Unexpected.tsx new file mode 100644 index 0000000..930785f --- /dev/null +++ b/packages/react/src/errors/Unexpected.tsx @@ -0,0 +1,22 @@ +import { Link } from "react-router-dom"; +import { Button } from "../../components/Button"; + +function UnexpectedError() { + return ( +
+
+

Something went wrong

+

+ There was an unexpected error while loading the page. +

+
+
+ +
+
+ ); +} + +export default UnexpectedError;