diff --git a/frontend/src/components/production/ocp/OcpPage.tsx b/frontend/src/components/production/ocp/OcpPage.tsx index 48ce501..baa81bd 100644 --- a/frontend/src/components/production/ocp/OcpPage.tsx +++ b/frontend/src/components/production/ocp/OcpPage.tsx @@ -4,56 +4,117 @@ import Lots from "./Lots"; import OcpLogs from "./OcpLogs"; import PrinterStatus from "./PrinterStatus"; import { useSettingStore } from "@/lib/store/useSettings"; -import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; + import LabelLog from "./LabelLog"; +import { + ResizableHandle, + ResizablePanel, + ResizablePanelGroup, +} from "@/components/ui/resizable-panels"; export default function OCPPage() { const { settings } = useSettingStore(); let server = settings.filter((n) => n.name === "server"); - return ( -
-
-
-
- -
-
- - - - OcpLogs - - Labels - - -
- -
-
- - - -
-
-
-
- {server[0].value === "usday1vms006" && ( -
- -
- )} - {server[0].value === "localhost" && ( -
- -
- )} -
- -
-
-
+ return ( +
+ + + + +
+ +
+
+ + + + +
+ +
+
+ + +
+ +
+
+
+
+
+
+ + + + {server[0].value === "usday1vms006" && ( + + + + )} + {server[0].value === "usday1vms006" && ( + + + + )} + + + + + + + +
); + // return ( + //
+ //
+ //
+ //
+ // + //
+ + //
+ // + // + // + // OcpLogs + // + // Labels + // + // + //
+ // + //
+ //
+ // + // + // + //
+ //
+ //
+ //
+ // {server[0].value === "usday1vms006" && ( + //
+ // + //
+ // )} + // {server[0].value === "localhost" && ( + //
+ // + //
+ // )} + //
+ // + //
+ //
+ //
+ //
+ // ); }