mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 12:09:17 +00:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { PAGES } from "@/accounts/constants/pages";
|
|
import { customAPIHost } from "@/base/origins";
|
|
import { LS_KEYS, getData } from "@ente/shared//storage/localStorage";
|
|
import { VerticallyCentered } from "@ente/shared/components/Container";
|
|
import EnteSpinner from "@ente/shared/components/EnteSpinner";
|
|
import FormPaper from "@ente/shared/components/Form/FormPaper";
|
|
import { useRouter } from "next/router";
|
|
import React, { useEffect, useState } from "react";
|
|
import { SignUp } from "../components/SignUp";
|
|
import type { PageProps } from "../types/page";
|
|
|
|
const Page: React.FC<PageProps> = ({ appContext }) => {
|
|
const { showNavBar } = appContext;
|
|
|
|
const [loading, setLoading] = useState(true);
|
|
const [host, setHost] = useState<string | undefined>();
|
|
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
void customAPIHost().then(setHost);
|
|
const user = getData(LS_KEYS.USER);
|
|
if (user?.email) {
|
|
router.push(PAGES.VERIFY);
|
|
}
|
|
setLoading(false);
|
|
showNavBar(true);
|
|
}, []);
|
|
|
|
const login = () => {
|
|
router.push(PAGES.LOGIN);
|
|
};
|
|
|
|
return (
|
|
<VerticallyCentered>
|
|
{loading ? (
|
|
<EnteSpinner />
|
|
) : (
|
|
<FormPaper>
|
|
<SignUp {...{ login, router, host }} />
|
|
</FormPaper>
|
|
)}
|
|
</VerticallyCentered>
|
|
);
|
|
};
|
|
|
|
export default Page;
|