diff --git a/app/src/components/layout/sidebarLeft/Outline.tsx b/app/src/components/layout/sidebarLeft/Outline.tsx
index f755e04..d292517 100644
--- a/app/src/components/layout/sidebarLeft/Outline.tsx
+++ b/app/src/components/layout/sidebarLeft/Outline.tsx
@@ -23,7 +23,6 @@ const Outline: React.FC = () => {
// const [buildingsList, setBuildingsList] = useState<{ id: string; name: string }[]>([]);
// const [isLayersOpen, setIsLayersOpen] = useState(true);
// const [isBuildingsOpen, setIsBuildingsOpen] = useState(false);
- const [isZonesOpen, setIsZonesOpen] = useState(true);
const { assetStore, zoneStore } = useSceneContext();
const { assets } = assetStore();
const { zones } = zoneStore();
@@ -100,7 +99,7 @@ const Outline: React.FC = () => {
*/}
{/* setIsBuildingsOpen((prev) => !prev)} showKebabMenu={false} showAddIcon={false} /> */}
- setIsZonesOpen((prev) => !prev)} showKebabMenu={false} showAddIcon={false} />
+
)}
diff --git a/app/src/components/layout/sidebarLeft/SideBarLeft.tsx b/app/src/components/layout/sidebarLeft/SideBarLeft.tsx
index f50be07..fc84dc6 100644
--- a/app/src/components/layout/sidebarLeft/SideBarLeft.tsx
+++ b/app/src/components/layout/sidebarLeft/SideBarLeft.tsx
@@ -11,89 +11,68 @@ import Search from "../../ui/inputs/Search";
import { useIsComparing } from "../../../store/builder/store";
const SideBarLeft: React.FC = () => {
- const [activeOption, setActiveOption] = useState("Widgets");
+ const [activeOption, setActiveOption] = useState("Widgets");
- const { toggleUILeft } = useToggleStore();
- const { activeModule } = useModuleStore();
+ const { toggleUILeft } = useToggleStore();
+ const { activeModule } = useModuleStore();
- const { isComparing } = useIsComparing();
+ const { isComparing } = useIsComparing();
- // Reset activeOption whenever activeModule changes
- useEffect(() => {
- setActiveOption("Outline");
- if (activeModule === "visualization") setActiveOption("Widgets");
- }, [activeModule]);
+ // Reset activeOption whenever activeModule changes
+ useEffect(() => {
+ setActiveOption("Outline");
+ if (activeModule === "visualization") setActiveOption("Widgets");
+ }, [activeModule]);
- const handleToggleClick = (option: string) => {
- setActiveOption(option); // Update the active option
- };
+ const handleToggleClick = (option: string) => {
+ setActiveOption(option); // Update the active option
+ };
- const handleSearchChange = (value: string) => {
- // Log the search value for now
- // console.log(value);
- };
+ const handleSearchChange = (value: string) => {
+ // Log the search value for now
+ // console.log(value);
+ };
- return (
-
-
- {toggleUILeft && (
-
- {(() => {
- if (activeModule === "visualization") {
- return (
- <>
-
-
-
- {activeOption === "Widgets" ? : }
-
- >
- );
- } else if (activeModule === "market") {
- return <>>;
- } else if (activeModule === "builder") {
- return (
- <>
-
-
- {activeOption === "Outline" ?
:
}
-
- >
- );
- } else {
- return (
- <>
- {!isComparing && (
- <>
-
-
- {activeOption === "Outline" ?
:
}
-
- >
- )}
- >
- );
- }
- })()}
+ return (
+
+
+ {toggleUILeft && (
+
+ {(() => {
+ if (activeModule === "visualization") {
+ return (
+ <>
+
+
+
{activeOption === "Widgets" ? : }
+ >
+ );
+ } else if (activeModule === "market") {
+ return <>>;
+ } else if (activeModule === "builder") {
+ return (
+ <>
+
+
{activeOption === "Outline" ?
:
}
+ >
+ );
+ } else {
+ return (
+ <>
+ {!isComparing && (
+ <>
+
+
{activeOption === "Outline" ?
:
}
+ >
+ )}
+ >
+ );
+ }
+ })()}
+
+ )}
- )}
-
- );
+ );
};
export default SideBarLeft;
diff --git a/app/src/components/ui/list/DropDownList.tsx b/app/src/components/ui/list/DropDownList.tsx
index b6bef8a..776672a 100644
--- a/app/src/components/ui/list/DropDownList.tsx
+++ b/app/src/components/ui/list/DropDownList.tsx
@@ -4,61 +4,69 @@ import KebabMenuListMultiSelect from "./KebebMenuListMultiSelect";
import List from "./OutlineList/ListNew";
interface DropDownListProps {
- value?: string;
+ header?: string;
+ type?: "Zones" | "Assets";
items?: { id: string; name: string }[];
showFocusIcon?: boolean;
+ onFocusClick?: () => void;
showAddIcon?: boolean;
+ onAddClick?: () => void;
showKebabMenu?: boolean;
+ onKebabMenuSelect?: (selectedItems: string[]) => void;
kebabMenuItems?: { id: string; name: string }[];
- remove?: boolean;
- isOpen: boolean;
- onToggle: () => void;
+ removeIcon?: boolean;
+ isDefaultOpen: boolean;
}
const DropDownList: React.FC
= ({
- value = "Dropdown",
+ header = "Dropdown",
items = [],
+ type = "Assets",
showFocusIcon = false,
+ onFocusClick,
showAddIcon = true,
+ onAddClick,
showKebabMenu = true,
+ onKebabMenuSelect,
+ removeIcon = false,
kebabMenuItems = [
{ id: "Buildings", name: "Buildings" },
{ id: "Paths", name: "Paths" },
{ id: "Zones", name: "Zones" },
],
- remove,
- isOpen,
- onToggle,
+ isDefaultOpen,
}) => {
+ const [isOpen, setIsOpen] = React.useState(isDefaultOpen);
+
return (
-
-
{value}
+
setIsOpen((prev) => !prev)}>
+
{header}
{showFocusIcon && (
-
+
)}
{showAddIcon && (
-
+
)}
{showKebabMenu && (
-
+
)}
-
- {isOpen && (
+ {isDefaultOpen && isOpen && (
-
+
)}