el.xwx.moe/Layouts/MainLayout.tsx
2023-02-14 03:39:13 +03:30

50 lines
1.4 KiB
TypeScript

import Head from "next/head";
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";
import useRedirection from "@/hooks/useRedirection";
import { useRouter } from "next/router";
interface Props {
children: ReactNode;
}
export default function Layout({ children }: Props) {
const { status } = useSession();
const router = useRouter();
const redirection = useRedirection();
const routeExists = router.route === "/_error" ? false : true;
if (status === "authenticated" && !redirection && routeExists)
return (
<>
<Head>
<title>Linkwarden</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Sidebar />
<div className="ml-80 w-full">
<Navbar />
{children}
</div>
</>
);
else if ((status === "unauthenticated" && !redirection) || !routeExists)
return (
<>
<Head>
<title>Linkwarden</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
{children}
</>
);
else return <Loader />;
}