48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { type LoaderFunction, json } from "@remix-run/node";
|
|
import { Outlet, useCatch, useMatches } from "@remix-run/react";
|
|
|
|
import { type SessionData, requireLoggedIn } from "~/utils/auth.server";
|
|
import Footer from "~/features/core/components/footer";
|
|
|
|
export type AppLoaderData = SessionData;
|
|
|
|
export const loader: LoaderFunction = async ({ request }) => {
|
|
const sessionData = await requireLoggedIn(request);
|
|
|
|
return json<AppLoaderData>(sessionData);
|
|
};
|
|
|
|
export default function __App() {
|
|
const matches = useMatches();
|
|
const hideFooter = matches.some((match) => match.handle?.hideFooter === true);
|
|
|
|
return (
|
|
<div className="h-full w-full overflow-hidden fixed bg-gray-100">
|
|
<div className="flex flex-col w-full h-full">
|
|
<div className="flex flex-col flex-1 w-full overflow-y-auto">
|
|
<main className="flex flex-col flex-1 my-0 h-full">
|
|
<Outlet />
|
|
</main>
|
|
</div>
|
|
{!hideFooter ? <Footer /> : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function CatchBoundary() {
|
|
const caught = useCatch();
|
|
console.log("caught", caught);
|
|
|
|
return (
|
|
<div className="h-full w-full overflow-hidden fixed bg-gray-100">
|
|
<div className="flex flex-col w-full h-full">
|
|
<div className="flex flex-col flex-1 w-full overflow-y-auto">
|
|
<main className="flex flex-col flex-1 my-0 h-full">{caught.status}</main>
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|