74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import { useEffect, useState } from "react";
|
||
|
|
import OpenTrigger from "./open-trigger";
|
||
|
|
import CloseTrigger from "./close-trigger";
|
||
|
|
import { Button } from "@/shared/components/ui/button";
|
||
|
|
import { useSetAtom } from "jotai";
|
||
|
|
import { isOpenMapsetDialogAtom } from "../../state/mapset-dialog";
|
||
|
|
import dynamic from "next/dynamic";
|
||
|
|
import { useQueryParam, StringParam } from "use-query-params";
|
||
|
|
|
||
|
|
const LayerControls = dynamic(() => import("./layer-controls"), {
|
||
|
|
ssr: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const DrawingTools = dynamic(() => import("./drawing-tools"), {
|
||
|
|
ssr: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const GeocodingSearch = dynamic(() => import("../geocoding-search"), {
|
||
|
|
ssr: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
export default function Sidebar() {
|
||
|
|
const [isOpen, setIsOpen] = useState(false);
|
||
|
|
const setIsOpenDialog = useSetAtom(isOpenMapsetDialogAtom);
|
||
|
|
const [openCatalog] = useQueryParam("open-catalog", StringParam);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
if (openCatalog === "true") {
|
||
|
|
setIsOpen(true);
|
||
|
|
}
|
||
|
|
}, [openCatalog]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className={`relative h-full z-[403] ${isOpen ? "w-[367px]" : "w-0"}`}>
|
||
|
|
<div
|
||
|
|
className={`relative h-full flex flex-col bg-zinc-50 shadow-lg border border-gray-300 transition-[width] duration-300 ease-out ${
|
||
|
|
isOpen ? "w-[367px]" : "w-0 border-0 pointer-events-none"
|
||
|
|
}`}
|
||
|
|
>
|
||
|
|
<div
|
||
|
|
className={`flex flex-col gap-2 h-full transition-opacity duration-200 ${
|
||
|
|
isOpen ? "opacity-100 delay-100" : "opacity-0"
|
||
|
|
}`}
|
||
|
|
>
|
||
|
|
<div className="flex flex-col gap-3 p-6 border-b border-gray-200">
|
||
|
|
<GeocodingSearch />
|
||
|
|
<Button onClick={() => setIsOpenDialog(true)}>Jelajahi Data</Button>
|
||
|
|
</div>
|
||
|
|
<div className="p-6 border-b border-gray-200 text-sm">
|
||
|
|
<DrawingTools />
|
||
|
|
</div>
|
||
|
|
<div className="flex-1 overflow-y-auto px-6 py-2 border-b border-gray-200">
|
||
|
|
<LayerControls />
|
||
|
|
</div>
|
||
|
|
<div className="absolute -right-9 top-8">
|
||
|
|
<CloseTrigger onClose={() => setIsOpen(false)} />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div
|
||
|
|
className={`absolute transition-all duration-300 ease-out top-4 left-4 ${
|
||
|
|
isOpen
|
||
|
|
? "opacity-0 -translate-x-4 pointer-events-none"
|
||
|
|
: "opacity-100"
|
||
|
|
}`}
|
||
|
|
>
|
||
|
|
<OpenTrigger onOpen={() => setIsOpen(true)} />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|