Fix error screen
This commit is contained in:
parent
269d8d4729
commit
881a8a1d1f
2 changed files with 26 additions and 18 deletions
|
@ -1,9 +1,9 @@
|
|||
import React, { useEffect } from "react";
|
||||
import { Link, useLocation } from "react-router-dom";
|
||||
import { ErrorMessage } from "./Input";
|
||||
import React, { useCallback, useEffect } from "react";
|
||||
import { useLocation } from "react-router-dom";
|
||||
import styles from "./FullScreenView.module.css";
|
||||
import { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
|
||||
import classNames from "classnames";
|
||||
import { LinkButton, Button } from "./button";
|
||||
|
||||
export function FullScreenView({ className, children }) {
|
||||
return (
|
||||
|
@ -28,14 +28,32 @@ export function ErrorView({ error }) {
|
|||
console.error(error);
|
||||
}, [error]);
|
||||
|
||||
const onReload = useCallback(() => {
|
||||
window.location = "/";
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<FullScreenView>
|
||||
<h1>Error</h1>
|
||||
<ErrorMessage>{error.message}</ErrorMessage>
|
||||
{location.pathname !== "/" && (
|
||||
<Link className={styles.homeLink} to="/">
|
||||
<p>{error.message}</p>
|
||||
{location.pathname === "/" ? (
|
||||
<Button
|
||||
size="lg"
|
||||
variant="default"
|
||||
className={styles.homeLink}
|
||||
onPress={onReload}
|
||||
>
|
||||
Return to home screen
|
||||
</Link>
|
||||
</Button>
|
||||
) : (
|
||||
<LinkButton
|
||||
size="lg"
|
||||
variant="default"
|
||||
className={styles.homeLink}
|
||||
to="/"
|
||||
>
|
||||
Return to home screen
|
||||
</LinkButton>
|
||||
)}
|
||||
</FullScreenView>
|
||||
);
|
||||
|
|
|
@ -37,15 +37,5 @@
|
|||
}
|
||||
|
||||
.homeLink {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 8px 136px;
|
||||
color: #0dbd8b;
|
||||
text-decoration: none;
|
||||
background: #0dbd8b;
|
||||
border-radius: 8px;
|
||||
color: #ffffff;
|
||||
font-weight: normal;
|
||||
font-size: 15px;
|
||||
width: 291px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue