feat: add error pages
This commit is contained in:
parent
8a7baebdd5
commit
7d950ff71e
19
packages/react/src/ErrorHandler.tsx
Normal file
19
packages/react/src/ErrorHandler.tsx
Normal file
@ -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 <PageNotFound />;
|
||||||
|
} else {
|
||||||
|
return <UnexpectedError />;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return <UnexpectedError />;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ErrorBoundary;
|
22
packages/react/src/errors/PageNotFound.tsx
Normal file
22
packages/react/src/errors/PageNotFound.tsx
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Link } from "react-router-dom";
|
||||||
|
import { Button } from "../../components/Button";
|
||||||
|
|
||||||
|
function PageNotFound() {
|
||||||
|
return (
|
||||||
|
<main className="flex-grow h-full flex flex-col justify-center items-center gap-8">
|
||||||
|
<section className="flex flex-col justify-center items-center text-center gap-2">
|
||||||
|
<h1 className="text-4xl font-bold">Page not found</h1>
|
||||||
|
<p className="text-base">
|
||||||
|
The page you are looking for does not exist.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<section className="flex flex-row justify-center items-center text-center gap-2">
|
||||||
|
<Button asChild preset="default">
|
||||||
|
<Link to="/">Go home</Link>
|
||||||
|
</Button>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PageNotFound;
|
22
packages/react/src/errors/Unexpected.tsx
Normal file
22
packages/react/src/errors/Unexpected.tsx
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { Link } from "react-router-dom";
|
||||||
|
import { Button } from "../../components/Button";
|
||||||
|
|
||||||
|
function UnexpectedError() {
|
||||||
|
return (
|
||||||
|
<main className="flex-grow h-full flex flex-col justify-center items-center gap-8">
|
||||||
|
<section className="flex flex-col justify-center items-center text-center gap-2">
|
||||||
|
<h1 className="text-4xl font-bold">Something went wrong</h1>
|
||||||
|
<p className="text-base">
|
||||||
|
There was an unexpected error while loading the page.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<section className="flex flex-row justify-center items-center text-center gap-2">
|
||||||
|
<Button asChild preset="default">
|
||||||
|
<Link to="/">Go home</Link>
|
||||||
|
</Button>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default UnexpectedError;
|
Loading…
x
Reference in New Issue
Block a user