2023-01-04 00:55:26 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-09-23 06:05:13 +08:00
|
|
|
import { FC, ReactNode, useCallback, useEffect } from "react";
|
2021-12-15 10:23:49 +08:00
|
|
|
import { useLocation } from "react-router-dom";
|
2021-12-15 08:12:58 +08:00
|
|
|
import classNames from "classnames";
|
2022-10-10 21:19:10 +08:00
|
|
|
import { Trans, useTranslation } from "react-i18next";
|
2023-07-21 18:58:21 +08:00
|
|
|
import * as Sentry from "@sentry/react";
|
2023-09-26 01:04:34 +08:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2022-07-30 15:48:29 +08:00
|
|
|
|
|
|
|
import { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
|
2021-12-15 10:23:49 +08:00
|
|
|
import { LinkButton, Button } from "./button";
|
2022-07-30 15:48:29 +08:00
|
|
|
import styles from "./FullScreenView.module.css";
|
2023-07-21 00:55:50 +08:00
|
|
|
import { TranslatedError } from "./TranslatedError";
|
2022-12-22 22:12:49 +08:00
|
|
|
import { Config } from "./config/Config";
|
2023-07-21 00:55:50 +08:00
|
|
|
import { RageshakeButton } from "./settings/RageshakeButton";
|
2021-12-11 08:42:18 +08:00
|
|
|
|
2022-07-30 15:48:29 +08:00
|
|
|
interface FullScreenViewProps {
|
|
|
|
className?: string;
|
|
|
|
children: ReactNode;
|
|
|
|
}
|
|
|
|
|
2023-09-23 06:05:13 +08:00
|
|
|
export const FullScreenView: FC<FullScreenViewProps> = ({
|
|
|
|
className,
|
|
|
|
children,
|
|
|
|
}) => {
|
2021-12-11 08:42:18 +08:00
|
|
|
return (
|
2021-12-15 08:12:58 +08:00
|
|
|
<div className={classNames(styles.page, className)}>
|
2021-12-11 08:42:18 +08:00
|
|
|
<Header>
|
|
|
|
<LeftNav>
|
|
|
|
<HeaderLogo />
|
|
|
|
</LeftNav>
|
|
|
|
<RightNav />
|
|
|
|
</Header>
|
|
|
|
<div className={styles.container}>
|
|
|
|
<div className={styles.content}>{children}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2023-09-23 06:05:13 +08:00
|
|
|
};
|
2021-12-11 08:42:18 +08:00
|
|
|
|
2022-07-30 15:48:29 +08:00
|
|
|
interface ErrorViewProps {
|
|
|
|
error: Error;
|
|
|
|
}
|
|
|
|
|
2023-09-23 06:05:13 +08:00
|
|
|
export const ErrorView: FC<ErrorViewProps> = ({ error }) => {
|
2021-12-11 08:42:18 +08:00
|
|
|
const location = useLocation();
|
2022-10-10 21:19:10 +08:00
|
|
|
const { t } = useTranslation();
|
2021-12-11 08:42:18 +08:00
|
|
|
|
|
|
|
useEffect(() => {
|
2023-09-26 01:04:34 +08:00
|
|
|
logger.error(error);
|
2023-07-21 18:58:21 +08:00
|
|
|
Sentry.captureException(error);
|
2021-12-11 08:42:18 +08:00
|
|
|
}, [error]);
|
|
|
|
|
2021-12-15 10:23:49 +08:00
|
|
|
const onReload = useCallback(() => {
|
2022-07-30 15:48:29 +08:00
|
|
|
window.location.href = "/";
|
2021-12-15 10:23:49 +08:00
|
|
|
}, []);
|
|
|
|
|
2021-12-11 08:42:18 +08:00
|
|
|
return (
|
|
|
|
<FullScreenView>
|
|
|
|
<h1>Error</h1>
|
2022-10-10 21:19:10 +08:00
|
|
|
<p>
|
|
|
|
{error instanceof TranslatedError
|
|
|
|
? error.translatedMessage
|
|
|
|
: error.message}
|
|
|
|
</p>
|
2023-07-26 23:20:18 +08:00
|
|
|
<RageshakeButton description={`***Error View***: ${error.message}`} />
|
2021-12-15 10:23:49 +08:00
|
|
|
{location.pathname === "/" ? (
|
|
|
|
<Button
|
|
|
|
size="lg"
|
|
|
|
variant="default"
|
|
|
|
className={styles.homeLink}
|
|
|
|
onPress={onReload}
|
|
|
|
>
|
2022-10-10 21:19:10 +08:00
|
|
|
{t("Return to home screen")}
|
2021-12-15 10:23:49 +08:00
|
|
|
</Button>
|
|
|
|
) : (
|
|
|
|
<LinkButton
|
|
|
|
size="lg"
|
|
|
|
variant="default"
|
|
|
|
className={styles.homeLink}
|
|
|
|
to="/"
|
|
|
|
>
|
2022-10-10 21:19:10 +08:00
|
|
|
{t("Return to home screen")}
|
2021-12-15 10:23:49 +08:00
|
|
|
</LinkButton>
|
2021-12-11 08:42:18 +08:00
|
|
|
)}
|
|
|
|
</FullScreenView>
|
|
|
|
);
|
2023-09-23 06:05:13 +08:00
|
|
|
};
|
2021-12-11 08:42:18 +08:00
|
|
|
|
2023-09-23 06:05:13 +08:00
|
|
|
export const CrashView: FC = () => {
|
2022-10-10 21:19:10 +08:00
|
|
|
const { t } = useTranslation();
|
2022-07-21 03:43:11 +08:00
|
|
|
|
|
|
|
const onReload = useCallback(() => {
|
2022-07-30 15:48:29 +08:00
|
|
|
window.location.href = "/";
|
2022-07-21 03:43:11 +08:00
|
|
|
}, []);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FullScreenView>
|
2022-10-10 21:19:10 +08:00
|
|
|
<Trans>
|
|
|
|
<h1>Oops, something's gone wrong.</h1>
|
|
|
|
</Trans>
|
2022-12-22 22:23:19 +08:00
|
|
|
{Config.get().rageshake?.submit_url && (
|
|
|
|
<Trans>
|
|
|
|
<p>Submitting debug logs will help us track down the problem.</p>
|
|
|
|
</Trans>
|
|
|
|
)}
|
|
|
|
|
2023-07-21 00:55:50 +08:00
|
|
|
<RageshakeButton description="***Soft Crash***" />
|
2022-07-21 03:43:11 +08:00
|
|
|
<Button
|
|
|
|
size="lg"
|
|
|
|
variant="default"
|
|
|
|
className={styles.wideButton}
|
|
|
|
onPress={onReload}
|
|
|
|
>
|
2022-10-10 21:19:10 +08:00
|
|
|
{t("Return to home screen")}
|
2022-07-21 03:43:11 +08:00
|
|
|
</Button>
|
|
|
|
</FullScreenView>
|
|
|
|
);
|
2023-09-23 06:05:13 +08:00
|
|
|
};
|
2022-07-21 03:43:11 +08:00
|
|
|
|
2023-09-23 06:05:13 +08:00
|
|
|
export const LoadingView: FC = () => {
|
2022-10-10 21:19:10 +08:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
2021-12-11 08:42:18 +08:00
|
|
|
return (
|
|
|
|
<FullScreenView>
|
2023-11-20 19:05:18 +08:00
|
|
|
<h1>{t("common.loading")}</h1>
|
2021-12-11 08:42:18 +08:00
|
|
|
</FullScreenView>
|
|
|
|
);
|
2023-09-23 06:05:13 +08:00
|
|
|
};
|