/* 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. */ import { FC, ReactNode, useCallback, useEffect } from "react"; import { useLocation } from "react-router-dom"; import classNames from "classnames"; import { Trans, useTranslation } from "react-i18next"; import * as Sentry from "@sentry/react"; import { logger } from "matrix-js-sdk/src/logger"; import { Header, HeaderLogo, LeftNav, RightNav } from "./Header"; import { LinkButton, Button } from "./button"; import styles from "./FullScreenView.module.css"; import { TranslatedError } from "./TranslatedError"; import { Config } from "./config/Config"; import { RageshakeButton } from "./settings/RageshakeButton"; interface FullScreenViewProps { className?: string; children: ReactNode; } export const FullScreenView: FC = ({ className, children, }) => { return (
{children}
); }; interface ErrorViewProps { error: Error; } export const ErrorView: FC = ({ error }) => { const location = useLocation(); const { t } = useTranslation(); useEffect(() => { logger.error(error); Sentry.captureException(error); }, [error]); const onReload = useCallback(() => { window.location.href = "/"; }, []); return (

Error

{error instanceof TranslatedError ? error.translatedMessage : error.message}

{location.pathname === "/" ? ( ) : ( {t("return_home_button")} )}
); }; export const CrashView: FC = () => { const { t } = useTranslation(); const onReload = useCallback(() => { window.location.href = "/"; }, []); return (

Oops, something's gone wrong.

{Config.get().rageshake?.submit_url && (

Submitting debug logs will help us track down the problem.

)}
); }; export const LoadingView: FC = () => { const { t } = useTranslation(); return (

{t("common.loading")}

); };