el.xwx.moe/layouts/MainLayout.tsx

41 lines
1.6 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-02-08 17:58:55 -06:00
import Navbar from "@/components/Navbar";
import Sidebar from "@/components/Sidebar";
import { ReactNode } from "react";
import { useSession } from "next-auth/react";
import Loader from "../components/Loader";
2023-02-08 17:58:55 -06:00
import useRedirection from "@/hooks/useRedirection";
import { useRouter } from "next/router";
2023-02-18 21:32:02 -06:00
import getInitialData from "@/lib/client/getInitialData";
2023-02-08 17:58:55 -06:00
interface Props {
2023-02-08 17:58:55 -06:00
children: ReactNode;
}
export default function ({ children }: Props) {
2023-02-08 17:58:55 -06:00
const { status } = useSession();
const router = useRouter();
const redirection = useRedirection();
const routeExists = router.route === "/_error" ? false : true;
2023-02-18 21:32:02 -06:00
getInitialData();
2023-02-08 17:58:55 -06:00
if (status === "authenticated" && !redirection && routeExists)
return (
<>
<Sidebar />
<div className="ml-80">
<Navbar />
{children}
2023-02-08 17:58:55 -06:00
</div>
</>
);
else if ((status === "unauthenticated" && !redirection) || !routeExists)
2023-03-28 02:31:50 -05:00
return <>{children}</>;
2023-02-08 17:58:55 -06:00
else return <Loader />;
}