mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-30 04:04:19 +02:00
force graph, palette
This commit is contained in:
@@ -1,22 +1,33 @@
|
||||
import { SignedInClient } from "@/components/custom/clerk/signed-in-client"
|
||||
import { Sidebar } from "@/components/custom/sidebar/sidebar"
|
||||
import PublicHomeRoute from "@/components/routes/PublicHomeRoute"
|
||||
import { PublicHomeRoute } from "@/components/routes/PublicHomeRoute"
|
||||
import { CommandPalette } from "@/components/ui/CommandPalette"
|
||||
import { JazzClerkAuth, JazzProvider } from "@/lib/providers/jazz-provider"
|
||||
import { currentUser } from "@clerk/nextjs/server"
|
||||
|
||||
export default async function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
// TODO: get it from jazz/clerk
|
||||
const loggedIn = true
|
||||
export default async function PageLayout({ children }: { children: React.ReactNode }) {
|
||||
const user = await currentUser()
|
||||
|
||||
if (loggedIn) {
|
||||
return (
|
||||
<div className="flex h-full min-h-full w-full flex-row items-stretch overflow-hidden">
|
||||
<Sidebar />
|
||||
|
||||
<div className="flex min-w-0 flex-1 flex-col">
|
||||
<main className="relative flex flex-auto flex-col place-items-stretch overflow-auto lg:my-2 lg:mr-2 lg:rounded-md lg:border">
|
||||
{children}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
if (!user) {
|
||||
return <PublicHomeRoute />
|
||||
}
|
||||
return <PublicHomeRoute />
|
||||
|
||||
return (
|
||||
<JazzClerkAuth>
|
||||
<SignedInClient>
|
||||
<JazzProvider>
|
||||
<div className="flex h-full min-h-full w-full flex-row items-stretch overflow-hidden">
|
||||
<Sidebar />
|
||||
<CommandPalette />
|
||||
|
||||
<div className="flex min-w-0 flex-1 flex-col">
|
||||
<main className="relative flex flex-auto flex-col place-items-stretch overflow-auto lg:my-2 lg:mr-2 lg:rounded-md lg:border">
|
||||
{children}
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</JazzProvider>
|
||||
</SignedInClient>
|
||||
</JazzClerkAuth>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user