mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-27 16:25:40 +00:00
99 lines
3.2 KiB
TypeScript
99 lines
3.2 KiB
TypeScript
import { Metadata } from "next"
|
|
import Image from "next/image"
|
|
|
|
import { Separator } from "@/components/ui/separator"
|
|
import { SidebarNav } from "@/components/sidebar-nav"
|
|
import SiteProvider from "@app/providers/SiteProvider"
|
|
import { internal } from "@app/api"
|
|
import { cookies } from "next/headers"
|
|
import { GetSiteResponse } from "@server/routers/site"
|
|
import { AxiosResponse } from "axios"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Forms",
|
|
description: "Advanced form example using react-hook-form and Zod.",
|
|
}
|
|
|
|
const sidebarNavItems = [
|
|
{
|
|
title: "Profile",
|
|
href: "/{orgId}/sites/{siteId}/",
|
|
},
|
|
{
|
|
title: "Appearance",
|
|
href: "/{orgId}/sites/{siteId}/appearance",
|
|
},
|
|
{
|
|
title: "Notifications",
|
|
href: "/{orgId}/sites/{siteId}/notifications",
|
|
},
|
|
{
|
|
title: "Display",
|
|
href: "/{orgId}/sites/{siteId}/display",
|
|
},
|
|
]
|
|
|
|
interface SettingsLayoutProps {
|
|
children: React.ReactNode,
|
|
params: { siteId: string, orgId: string }
|
|
}
|
|
|
|
export default async function SettingsLayout({ children, params }: SettingsLayoutProps) {
|
|
let site = null;
|
|
if (params.siteId !== "create") {
|
|
try {
|
|
const sessionId = cookies().get("session")?.value ?? null;
|
|
const res = await internal
|
|
.get<AxiosResponse<GetSiteResponse>>(`/site/${params.siteId}`, {
|
|
headers: {
|
|
Cookie: `session=${sessionId}`,
|
|
},
|
|
});
|
|
|
|
site = res.data.data;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="md:hidden">
|
|
<Image
|
|
src="/configuration/forms-light.png"
|
|
width={1280}
|
|
height={791}
|
|
alt="Forms"
|
|
className="block dark:hidden"
|
|
/>
|
|
<Image
|
|
src="/configuration/forms-dark.png"
|
|
width={1280}
|
|
height={791}
|
|
alt="Forms"
|
|
className="hidden dark:block"
|
|
/>
|
|
</div>
|
|
<div className="hidden space-y-6 p-10 pb-16 md:block">
|
|
<div className="space-y-0.5">
|
|
<h2 className="text-2xl font-bold tracking-tight">Settings</h2>
|
|
<p className="text-muted-foreground">
|
|
{ params.siteId == "create" ? "Create site..." : "Manage settings on site " + params.siteId }.
|
|
</p>
|
|
</div>
|
|
<Separator className="my-6" />
|
|
<div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0">
|
|
<aside className="-mx-4 lg:w-1/5">
|
|
<SidebarNav items={sidebarNavItems.map(i => { i.href = i.href.replace("{siteId}", params.siteId).replace("{orgId}", params.orgId); return i})} disabled={params.siteId == "create"} />
|
|
</aside>
|
|
<div className="flex-1 lg:max-w-2xl">
|
|
<SiteProvider site={site}>
|
|
{children}
|
|
</SiteProvider>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|