35 lines
959 B
TypeScript
35 lines
959 B
TypeScript
/*
|
|
Copyright 2021-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
import { FC } from "react";
|
|
|
|
import { useClientState } from "../ClientContext";
|
|
import { ErrorView, LoadingView } from "../FullScreenView";
|
|
import { UnauthenticatedView } from "./UnauthenticatedView";
|
|
import { RegisteredView } from "./RegisteredView";
|
|
import { usePageTitle } from "../usePageTitle";
|
|
|
|
export const HomePage: FC = () => {
|
|
const { t } = useTranslation();
|
|
usePageTitle(t("common.home"));
|
|
|
|
const clientState = useClientState();
|
|
|
|
if (!clientState) {
|
|
return <LoadingView />;
|
|
} else if (clientState.state === "error") {
|
|
return <ErrorView error={clientState.error} />;
|
|
} else {
|
|
return clientState.authenticated ? (
|
|
<RegisteredView client={clientState.authenticated.client} />
|
|
) : (
|
|
<UnauthenticatedView />
|
|
);
|
|
}
|
|
};
|