mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { useEffect } from "react";
|
|
import { Montserrat, Qwigley } from "next/font/google";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from "@documenso/lib/constants";
|
|
import { useSubscription } from "@documenso/lib/stripe";
|
|
import { BillingWarning } from "./billing-warning";
|
|
import Navigation from "./navigation";
|
|
import { PaperAirplaneIcon } from "@heroicons/react/24/outline";
|
|
import { SubscriptionStatus } from "@prisma/client";
|
|
import { useSession } from "next-auth/react";
|
|
|
|
const montserrat = Montserrat({
|
|
subsets: ["latin"],
|
|
weight: ["400", "700"],
|
|
display: "swap",
|
|
variable: "--font-sans",
|
|
});
|
|
|
|
const qwigley = Qwigley({
|
|
subsets: ["latin"],
|
|
weight: ["400"],
|
|
display: "swap",
|
|
variable: "--font-qwigley",
|
|
});
|
|
|
|
function useRedirectToLoginIfUnauthenticated() {
|
|
const { data: session, status } = useSession();
|
|
const loading = status === "loading";
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
if (!loading && !session) {
|
|
router.replace({
|
|
pathname: "/login",
|
|
query: {
|
|
callbackUrl: `${NEXT_PUBLIC_WEBAPP_URL}/${location.pathname}${location.search}`,
|
|
},
|
|
});
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [loading, session]);
|
|
|
|
return {
|
|
loading: loading && !session,
|
|
session,
|
|
};
|
|
}
|
|
|
|
export default function Layout({ children }: any) {
|
|
useRedirectToLoginIfUnauthenticated();
|
|
|
|
const { subscription } = useSubscription();
|
|
|
|
return (
|
|
<>
|
|
<div className={`${montserrat.variable} min-h-full font-sans`}>
|
|
<Navigation />
|
|
|
|
<main>
|
|
<BillingWarning />
|
|
|
|
<div className="mx-auto max-w-7xl sm:px-6 lg:px-8">{children}</div>
|
|
</main>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|