mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
bab52a2672
* chore: New authentication workflow * chore: resolved build erros and updated imports in auth * chore: code optimisation for query param util * chore: added client for auth forms
28 lines
642 B
TypeScript
28 lines
642 B
TypeScript
"use client";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// components
|
|
import { UserLoggedIn } from "@/components/account";
|
|
import { LogoSpinner } from "@/components/common";
|
|
import { AuthView } from "@/components/views";
|
|
// hooks
|
|
import { useUser } from "@/hooks/store";
|
|
|
|
function HomePage() {
|
|
const { fetchCurrentUser, isAuthenticated, isLoading } = useUser();
|
|
|
|
useSWR("CURRENT_USER", () => fetchCurrentUser(), { errorRetryCount: 0 });
|
|
|
|
if (isLoading) {
|
|
return <LogoSpinner />;
|
|
}
|
|
|
|
if (isAuthenticated) {
|
|
return <UserLoggedIn />;
|
|
}
|
|
|
|
return <AuthView />;
|
|
}
|
|
|
|
export default observer(HomePage);
|