el.xwx.moe/layouts/Dashboard.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-04-30 15:54:40 -05:00
import useRedirect from "@/hooks/useRedirect";
2023-02-08 17:58:55 -06:00
import { useRouter } from "next/router";
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();
2023-04-30 15:54:40 -05:00
const redirect = useRedirect();
2023-02-08 17:58:55 -06:00
const routeExists = router.route === "/_error" ? false : true;
2023-04-30 15:54:40 -05:00
if (status === "authenticated" && !redirect && routeExists)
2023-02-08 17:58:55 -06:00
return (
2023-04-30 15:54:40 -05:00
<div className="flex">
<div className="hidden lgblock">
<Sidebar />
</div>
<div className="w-full">
<Navbar />
{children}
2023-02-08 17:58:55 -06:00
</div>
2023-04-30 15:54:40 -05:00
</div>
2023-02-08 17:58:55 -06:00
);
2023-04-30 15:54:40 -05:00
else if ((status === "unauthenticated" && !redirect) || !routeExists)
2023-03-28 02:31:50 -05:00
return <>{children}</>;
2023-05-01 05:07:01 -05:00
else return <></>;
2023-02-08 17:58:55 -06:00
}