Files
Dwinzo_dev/app/src/components/ui/Tools.tsx

488 lines
16 KiB
TypeScript
Raw Normal View History

2025-03-25 11:47:41 +05:30
import React, { useEffect, useRef, useState } from "react";
import {
AsileIcon,
CommentIcon,
CursorIcon,
2025-03-29 12:57:16 +05:30
DeleteIcon,
2025-03-25 11:47:41 +05:30
FloorIcon,
FreeMoveIcon,
2025-03-29 12:57:16 +05:30
MeasureToolIcon,
2025-03-25 11:47:41 +05:30
PenIcon,
PlayIcon,
SaveTemplateIcon,
WallIcon,
ZoneIcon,
} from "../icons/ExportToolsIcons";
import { ArrowIcon, TickIcon } from "../icons/ExportCommonIcons";
import useModuleStore, { useThreeDStore } from "../../store/useModuleStore";
import { handleSaveTemplate } from "../../modules/visualization/functions/handleSaveTemplate";
2025-03-25 11:47:41 +05:30
import { usePlayButtonStore } from "../../store/usePlayButtonStore";
import useTemplateStore from "../../store/useTemplateStore";
import { useSelectedZoneStore } from "../../store/visualization/useZoneStore";
2025-03-26 11:30:17 +05:30
import {
useActiveTool,
2025-03-26 11:30:17 +05:30
useAddAction,
useDeleteTool,
useDeletePointOrLine,
useRefTextUpdate,
2025-03-26 11:30:17 +05:30
useSelectedWallItem,
useSocketStore,
2025-03-26 11:30:17 +05:30
useToggleView,
useToolMode,
useTransformMode,
useActiveSubTool,
2025-03-26 11:30:17 +05:30
} from "../../store/store";
2025-03-29 12:57:16 +05:30
import useToggleStore from "../../store/useUIToggleStore";
2025-04-02 19:12:14 +05:30
import {
use3DWidget,
useFloatingWidget,
} from "../../store/visualization/useDroppedObjectsStore";
2025-03-25 11:47:41 +05:30
const Tools: React.FC = () => {
const { templates } = useTemplateStore();
const { activeSubTool, setActiveSubTool } = useActiveSubTool();
const { toggleThreeD, setToggleThreeD } = useThreeDStore();
const { setToggleUI } = useToggleStore();
2025-03-25 11:47:41 +05:30
const dropdownRef = useRef<HTMLDivElement>(null);
const [openDrop, setOpenDrop] = useState(false);
const { visualizationSocket } = useSocketStore();
2025-03-25 11:47:41 +05:30
const { activeModule } = useModuleStore();
const { isPlaying, setIsPlaying } = usePlayButtonStore();
const { addTemplate } = useTemplateStore();
const { selectedZone } = useSelectedZoneStore();
2025-04-02 19:12:14 +05:30
const { floatingWidget } = useFloatingWidget();
2025-04-02 19:12:14 +05:30
const { widgets3D } = use3DWidget();
2025-03-25 11:47:41 +05:30
// wall options
const { toggleView, setToggleView } = useToggleView();
const { setDeleteTool } = useDeleteTool();
const { setAddAction } = useAddAction();
const { setSelectedWallItem } = useSelectedWallItem();
const { setTransformMode } = useTransformMode();
const { setDeletePointOrLine } = useDeletePointOrLine();
const { setToolMode } = useToolMode();
const { activeTool, setActiveTool } = useActiveTool();
const { setRefTextUpdate } = useRefTextUpdate();
2025-03-25 11:47:41 +05:30
// Reset activeTool whenever activeModule changes
2025-03-29 12:57:16 +05:30
useEffect(() => {
setToggleUI(
localStorage.getItem("navBarUiLeft")
? localStorage.getItem("navBarUiLeft") === "true"
: true,
localStorage.getItem("navBarUiRight")
? localStorage.getItem("navBarUiRight") === "true"
: true
);
2025-03-29 12:57:16 +05:30
}, []);
2025-03-25 11:47:41 +05:30
useEffect(() => {
setActiveTool(activeSubTool);
setActiveSubTool(activeSubTool);
}, [activeModule]);
const toggleSwitch = () => {
if (toggleThreeD) {
setSelectedWallItem(null);
setDeleteTool(false);
setAddAction(null);
setToggleView(true);
// localStorage.setItem("navBarUi", JSON.stringify(!toggleThreeD));
2025-03-26 11:30:17 +05:30
} else {
setToggleView(false);
}
setToggleUI(
localStorage.getItem("navBarUiLeft")
? localStorage.getItem("navBarUiLeft") === "true"
: true,
localStorage.getItem("navBarUiRight")
? localStorage.getItem("navBarUiRight") === "true"
: true
);
setToggleThreeD(!toggleThreeD);
setActiveSubTool("cursor");
setActiveTool("cursor");
};
2025-03-25 11:47:41 +05:30
useEffect(() => {
const handleOutsideClick = (event: MouseEvent) => {
if (
dropdownRef.current &&
!dropdownRef.current.contains(event.target as Node)
) {
setOpenDrop(false); // Close the dropdown
}
};
document.addEventListener("mousedown", handleOutsideClick);
return () => {
document.removeEventListener("mousedown", handleOutsideClick);
};
}, []);
2025-03-29 12:57:16 +05:30
useEffect(() => {
if (!toggleThreeD) {
setToggleUI(false, false);
2025-03-29 12:57:16 +05:30
}
}, [toggleThreeD]);
2025-03-25 11:47:41 +05:30
useEffect(() => {
setToolMode(null);
setDeleteTool(false);
setAddAction(null);
setTransformMode(null);
setDeletePointOrLine(false);
setRefTextUpdate((prevUpdate) => prevUpdate - 1);
switch (activeTool) {
case "cursor":
if (toggleView) {
setToolMode("move");
} else {
setTransformMode("translate");
}
break;
case "Rotate":
if (!toggleView) {
setTransformMode("rotate");
}
break;
case "Scale":
if (!toggleView) {
setTransformMode("scale");
}
break;
case "draw-wall":
if (toggleView) {
setToolMode("Wall");
}
break;
2025-03-29 12:57:16 +05:30
case "draw-aisle":
if (toggleView) {
setToolMode("Aisle");
}
break;
2025-03-29 12:57:16 +05:30
case "draw-zone":
if (toggleView) {
setToolMode("Zone");
}
break;
2025-03-29 12:57:16 +05:30
case "draw-floor":
if (toggleView) {
setToolMode("Floor");
}
break;
2025-03-29 12:57:16 +05:30
case "measure":
setToolMode("MeasurementScale");
break;
case "Add pillar":
if (!toggleView) {
setAddAction("pillar");
}
break;
2025-03-29 12:57:16 +05:30
case "delete":
if (toggleView) {
setDeletePointOrLine(true);
} else {
setDeleteTool(true);
}
break;
default:
break;
}
setActiveTool(activeTool);
}, [activeTool, toggleView]);
2025-03-25 11:47:41 +05:30
return (
2025-03-26 11:30:17 +05:30
<>
{!isPlaying ? (
<div className="tools-container">
<div className="drop-down-icons">
<div className="activeDropicon">
{activeSubTool == "cursor" && (
<div
className={`tool-button ${
activeTool === "cursor" ? "active" : ""
}`}
onClick={() => {
setActiveTool("cursor");
}}
>
<div className="tooltip">cursor (v)</div>
<CursorIcon isActive={activeTool === "cursor"} />
</div>
)}
{activeSubTool == "free-hand" && (
<div
className={`tool-button ${
activeTool === "free-hand" ? "active" : ""
}`}
onClick={() => {
setActiveTool("free-hand");
}}
>
<div className="tooltip">free hand (h)</div>
<FreeMoveIcon isActive={activeTool === "free-hand"} />
</div>
)}
{activeSubTool == "delete" && (
<div
className={`tool-button ${
activeTool === "delete" ? "active" : ""
}`}
onClick={() => {
setActiveTool("delete");
}}
>
<div className="tooltip">delete (x)</div>
<DeleteIcon isActive={activeTool === "delete"} />
</div>
)}
{activeModule !== "visualization" && (
<div
className="drop-down-option-button"
ref={dropdownRef}
onClick={() => {
setOpenDrop(!openDrop);
}}
>
<ArrowIcon />
{openDrop && (
<div className="drop-down-container">
<div
className="option-list"
onClick={() => {
setOpenDrop(false);
setActiveTool("cursor");
setActiveSubTool("cursor");
}}
>
<div className="active-option">
{activeSubTool === "cursor" && <TickIcon />}
2025-03-26 11:30:17 +05:30
</div>
<CursorIcon isActive={false} />
<div className="option">Cursor</div>
</div>
<div
className="option-list"
onClick={() => {
setOpenDrop(false);
setActiveTool("free-hand");
setActiveSubTool("free-hand");
}}
>
<div className="active-option">
{activeSubTool === "free-hand" && <TickIcon />}
2025-03-26 11:30:17 +05:30
</div>
<FreeMoveIcon isActive={false} />
<div className="option">Free Hand</div>
</div>
<div
className="option-list"
onClick={() => {
setOpenDrop(false);
setActiveTool("delete");
setActiveSubTool("delete");
}}
>
<div className="active-option">
{activeSubTool === "delete" && <TickIcon />}
2025-03-29 12:57:16 +05:30
</div>
<DeleteIcon isActive={false} />
<div className="option">Delete</div>
2025-03-26 11:30:17 +05:30
</div>
</div>
)}
</div>
)}
2025-03-25 11:47:41 +05:30
</div>
</div>
{!toggleThreeD && activeModule === "builder" && (
<>
<div className="split"></div>
<div className="draw-tools">
<div
className={`tool-button ${
activeTool === "draw-wall" ? "active" : ""
}`}
onClick={() => {
setActiveTool("draw-wall");
}}
>
<div className="tooltip">draw wall (q)</div>
<WallIcon isActive={activeTool === "draw-wall"} />
2025-03-26 11:30:17 +05:30
</div>
<div
className={`tool-button ${
activeTool === "draw-zone" ? "active" : ""
}`}
onClick={() => {
setActiveTool("draw-zone");
}}
>
<div className="tooltip">draw zone (e)</div>
<ZoneIcon isActive={activeTool === "draw-zone"} />
2025-03-29 12:57:16 +05:30
</div>
<div
className={`tool-button ${
activeTool === "draw-aisle" ? "active" : ""
}`}
onClick={() => {
setActiveTool("draw-aisle");
}}
>
<div className="tooltip">draw asile (r)</div>
<AsileIcon isActive={activeTool === "draw-aisle"} />
2025-03-26 11:30:17 +05:30
</div>
<div
className={`tool-button ${
activeTool === "draw-floor" ? "active" : ""
}`}
onClick={() => {
setActiveTool("draw-floor");
}}
>
<div className="tooltip">draw floor (t)</div>
<FloorIcon isActive={activeTool === "draw-floor"} />
2025-03-26 11:30:17 +05:30
</div>
</div>
</>
)}
{activeModule === "builder" && (
<>
<div className="split"></div>
<div className="draw-tools">
2025-03-29 12:57:16 +05:30
<div
className={`tool-button ${
activeTool === "measure" ? "active" : ""
}`}
2025-03-29 12:57:16 +05:30
onClick={() => {
setActiveTool("measure");
2025-03-29 12:57:16 +05:30
}}
>
<div className="tooltip">measure scale (m)</div>
<MeasureToolIcon isActive={activeTool === "measure"} />
2025-03-29 12:57:16 +05:30
</div>
</div>
</>
)}
{activeModule === "simulation" && (
<>
<div className="split"></div>
<div className="draw-tools">
<div
className={`tool-button ${
activeTool === "pen" ? "active" : ""
}`}
onClick={() => {
setActiveTool("pen");
}}
>
<div className="tooltip">pen</div>
<PenIcon isActive={activeTool === "pen"} />
</div>
</div>
</>
)}
{activeModule === "visualization" && (
<>
<div className="split"></div>
<div className="draw-tools">
<div
className={`tool-button`}
onClick={() => {
handleSaveTemplate({
addTemplate,
floatingWidget,
widgets3D,
selectedZone,
templates,
visualizationSocket,
});
}}
>
<div className="tooltip">save template</div>
<SaveTemplateIcon isActive={false} />
</div>
</div>
</>
)}
<div className="split"></div>
<div className="general-options">
<div
className={`tool-button ${
activeTool === "comment" ? "active" : ""
}`}
onClick={() => {
setActiveTool("comment");
}}
>
<div className="tooltip">comment</div>
<CommentIcon isActive={activeTool === "comment"} />
</div>
{toggleThreeD && (
<div
className={`tool-button ${
activeTool === "play" ? "active" : ""
}`}
onClick={() => {
setIsPlaying(!isPlaying);
}}
>
<div className="tooltip">play (ctrl + p)</div>
<PlayIcon isActive={activeTool === "play"} />
</div>
)}
2025-03-25 11:47:41 +05:30
</div>
{activeModule === "builder" && (
<>
<div className="split"></div>
<div
className={`toggle-threed-button${
toggleThreeD ? " toggled" : ""
}`}
onClick={toggleSwitch}
>
<div className="tooltip">toggle view (tab)</div>
<div
className={`toggle-option${!toggleThreeD ? " active" : ""}`}
>
2d
</div>
<div
className={`toggle-option${toggleThreeD ? " active" : ""}`}
>
3d
</div>
</div>
</>
)}
</div>
2025-03-26 11:30:17 +05:30
) : (
2025-03-27 10:55:44 +05:30
<>
{activeModule !== "simulation" && (
<button className="exitPlay" onClick={() => setIsPlaying(false)}>
2025-03-27 10:55:44 +05:30
X
</button>
2025-03-27 10:55:44 +05:30
)}
</>
2025-03-26 11:30:17 +05:30
)}
</>
2025-03-25 11:47:41 +05:30
);
};
export default Tools;