el.xwx.moe/layouts/AuthRedirect.tsx

50 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-04-23 08:26:39 -05:00
// Copyright (C) 2022-present Daniel31x13 <daniel31x13@gmail.com>
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
2023-04-30 15:54:40 -05:00
import { ReactNode } from "react";
2023-02-08 17:58:55 -06:00
import { useSession } from "next-auth/react";
2023-04-30 15:54:40 -05:00
import Loader from "../components/Loader";
2023-02-08 17:58:55 -06:00
import { useRouter } from "next/router";
2023-04-30 15:54:40 -05:00
import { useEffect, useState } from "react";
import getInitialData from "@/lib/client/getInitialData";
2023-02-08 17:58:55 -06:00
2023-04-30 15:54:40 -05:00
interface Props {
children: ReactNode;
}
export default function ({ children }: Props) {
2023-02-08 17:58:55 -06:00
const router = useRouter();
const { status } = useSession();
const [redirect, setRedirect] = useState(true);
2023-04-30 15:54:40 -05:00
getInitialData();
2023-02-08 17:58:55 -06:00
useEffect(() => {
2023-05-28 00:55:49 -05:00
if (!router.pathname.startsWith("/public")) {
if (
status === "authenticated" &&
(router.pathname === "/login" || router.pathname === "/register")
) {
router.push("/").then(() => {
setRedirect(false);
});
} else if (
status === "unauthenticated" &&
!(router.pathname === "/login" || router.pathname === "/register")
) {
router.push("/login").then(() => {
setRedirect(false);
});
} else if (status === "loading") setRedirect(true);
else setRedirect(false);
} else {
setRedirect(false);
}
2023-02-08 17:58:55 -06:00
}, [status]);
2023-04-30 15:54:40 -05:00
if (status !== "loading" && !redirect) return <>{children}</>;
2023-05-01 15:00:23 -05:00
else return <></>;
2023-02-08 17:58:55 -06:00
}