From 66acf8060f8d42aff3a5c8ae3def22dae940b8f6 Mon Sep 17 00:00:00 2001 From: minsik Date: Wed, 16 Oct 2024 15:10:49 +0900 Subject: [PATCH] =?UTF-8?q?-=20=EB=B3=B4=EC=A1=B0=EC=84=A0=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99,=20=EC=82=AC=EC=9D=B4=EC=A6=88=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=AA=A8=EB=8B=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modal/auxiliary/AuxiliaryMove.jsx | 47 ++++++++++++++ .../modal/auxiliary/AuxiliarySize.jsx | 61 +++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 src/components/floor-plan/modal/auxiliary/AuxiliaryMove.jsx create mode 100644 src/components/floor-plan/modal/auxiliary/AuxiliarySize.jsx diff --git a/src/components/floor-plan/modal/auxiliary/AuxiliaryMove.jsx b/src/components/floor-plan/modal/auxiliary/AuxiliaryMove.jsx new file mode 100644 index 00000000..65925cbd --- /dev/null +++ b/src/components/floor-plan/modal/auxiliary/AuxiliaryMove.jsx @@ -0,0 +1,47 @@ +import { useMessage } from '@/hooks/useMessage' +import WithDraggable from '@/components/common/draggable/WithDraggable' + +export default function AuxiliaryMove({ setShowAuxiliaryModal }) { + const { getMessage } = useMessage() + return ( + +
+
+

補助線の移動

+ +
+
+
移動する方向を入力してください
+
+
+
+

長さ

+
+
+ +
+ mm +
+
+
+ +
+ mm +
+
+
+ + + + +
+
+
+
+ +
+
+
+
+ ) +} diff --git a/src/components/floor-plan/modal/auxiliary/AuxiliarySize.jsx b/src/components/floor-plan/modal/auxiliary/AuxiliarySize.jsx new file mode 100644 index 00000000..baa9fafa --- /dev/null +++ b/src/components/floor-plan/modal/auxiliary/AuxiliarySize.jsx @@ -0,0 +1,61 @@ +import { useMessage } from '@/hooks/useMessage' +import WithDraggable from '@/components/common/draggable/WithDraggable' + +export default function AuxiliarySize({ setShowAuxiliaryModal }) { + const { getMessage } = useMessage() + return ( + +
+
+

補助線サイズ変更

+ +
+
+
+
+ + +
+
+
+ +
+ mm +
+
+ 長さ +
+ +
+ mm +
+
+
+
+ + +
+
+
+ +
+ mm +
+
+ 長さ +
+ +
+ mm +
+
+
+ +
+
+
+
+ ) +}