- Add jscodeshift-based codemod to convert arrow function components to function declarations - Support React.FC, observer-wrapped, and forwardRef components - Include comprehensive test suite covering edge cases - Add npm script to run transformer across codebase - Target only .tsx files in source directories, excluding node_modules and declaration files * [WEB-5459] chore: updates after running codemod --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
"use client";
|
|
import { useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useSearchParams, useRouter } from "next/navigation";
|
|
// plane imports
|
|
import { isValidNextPath } from "@plane/utils";
|
|
// components
|
|
import { UserLoggedIn } from "@/components/account/user-logged-in";
|
|
import { LogoSpinner } from "@/components/common/logo-spinner";
|
|
import { AuthView } from "@/components/views";
|
|
// hooks
|
|
import { useUser } from "@/hooks/store/use-user";
|
|
|
|
const HomePage = observer(function HomePage() {
|
|
const { data: currentUser, isAuthenticated, isInitializing } = useUser();
|
|
const searchParams = useSearchParams();
|
|
const router = useRouter();
|
|
const nextPath = searchParams.get("next_path");
|
|
|
|
useEffect(() => {
|
|
if (currentUser && isAuthenticated && nextPath && isValidNextPath(nextPath)) {
|
|
router.replace(nextPath);
|
|
}
|
|
}, [currentUser, isAuthenticated, nextPath, router]);
|
|
|
|
if (isInitializing)
|
|
return (
|
|
<div className="flex h-screen min-h-[500px] w-full justify-center items-center">
|
|
<LogoSpinner />
|
|
</div>
|
|
);
|
|
|
|
if (currentUser && isAuthenticated) {
|
|
if (nextPath && isValidNextPath(nextPath)) {
|
|
return (
|
|
<div className="flex h-screen min-h-[500px] w-full justify-center items-center">
|
|
<LogoSpinner />
|
|
</div>
|
|
);
|
|
}
|
|
return <UserLoggedIn />;
|
|
}
|
|
|
|
return <AuthView />;
|
|
});
|
|
|
|
export default HomePage;
|