mirror of
https://github.com/ente-io/ente.git
synced 2025-07-03 05:56:17 +00:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { AccountsPageContents } from "@/accounts/components/layouts/centered-paper";
|
|
import { SignUpContents } from "@/accounts/components/SignUpContents";
|
|
import { PAGES } from "@/accounts/constants/pages";
|
|
import { LoadingIndicator } from "@/base/components/loaders";
|
|
import { customAPIHost } from "@/base/origins";
|
|
import { LS_KEYS, getData } from "@ente/shared//storage/localStorage";
|
|
import { useRouter } from "next/router";
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
const Page: React.FC = () => {
|
|
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) {
|
|
void router.push(PAGES.VERIFY);
|
|
}
|
|
setLoading(false);
|
|
}, [router]);
|
|
|
|
const onLogin = () => void router.push(PAGES.LOGIN);
|
|
|
|
return loading ? (
|
|
<LoadingIndicator />
|
|
) : (
|
|
<AccountsPageContents>
|
|
<SignUpContents {...{ onLogin, router, host }} />
|
|
</AccountsPageContents>
|
|
);
|
|
};
|
|
|
|
export default Page;
|