-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tsx
51 lines (45 loc) · 1.37 KB
/
page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use client"
import {
ResizableHandle,
ResizablePanel,
ResizablePanelGroup,
} from "@/components/ui/resizable"
import dynamic from "next/dynamic"
const JSONSchemaEditor = dynamic(
async () => (await import("@/components/editor/json-schema-editor")).JSONSchemaEditor,
{ ssr: false }
)
const JSONValueEditor = dynamic(
async () => (await import("@/components/editor/json-value-editor")).JSONValueEditor,
{ ssr: false }
)
export default function IndexPage({
searchParams,
}: {
searchParams: Record<string, string>
}) {
const BREAKPOINTS = { mobile: 0, tablet: 768, desktop: 1280 }
// const { breakpoint } = useBreakpoint(BREAKPOINTS, "desktop")
return (
<div className="h-[92dvh] w-full ">
<ResizablePanelGroup
direction={"horizontal"}
className="grid w-full gap-2 pb-8 md:grid-cols-2"
>
<ResizablePanel
id="json-schema-editor"
className="full flex w-max flex-col overflow-scroll md:h-full md:w-[50vw] md:min-w-[300px]"
>
<JSONSchemaEditor url={searchParams.url} />
</ResizablePanel>
<ResizableHandle withHandle />
<ResizablePanel
id="json-value-editor"
className="flex h-[50hw] flex-col overflow-scroll md:h-full md:min-w-[300px]"
>
<JSONValueEditor />
</ResizablePanel>
</ResizablePanelGroup>
</div>
)
}