From 6dad7c15ce58fab4ec5532d477c25b79b410a3d0 Mon Sep 17 00:00:00 2001 From: hyeonsu Date: Thu, 11 Sep 2025 11:12:17 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8D=B0=EC=9D=B4=ED=84=B0=20=EA=B4=80?= =?UTF-8?q?=EA=B3=84=20=EC=A0=95=EB=B3=B4=20=EB=AA=A8=EB=8B=AC=20=EB=94=94?= =?UTF-8?q?=EC=9E=90=EC=9D=B8=20=EB=B3=B5=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/dataflow/DataFlowDesigner.tsx | 113 ++++++++++-------- 1 file changed, 62 insertions(+), 51 deletions(-) diff --git a/frontend/components/dataflow/DataFlowDesigner.tsx b/frontend/components/dataflow/DataFlowDesigner.tsx index ab8f0776..9553a5b2 100644 --- a/frontend/components/dataflow/DataFlowDesigner.tsx +++ b/frontend/components/dataflow/DataFlowDesigner.tsx @@ -1258,23 +1258,23 @@ export const DataFlowDesigner: React.FC = ({ {/* 엣지 정보 및 액션 버튼 */} {showEdgeActions && selectedEdgeForEdit && selectedEdgeInfo && (
{/* 헤더 */} -
-
-
- 🔗 +
+
+
+ 🔗
-
{selectedEdgeInfo.relationshipName}
-
데이터 관계
+
{selectedEdgeInfo.relationshipName}
+
데이터 관계 정보
+ {/* 관계 정보 요약 */} +
+
+
+
관계 유형
+
+ {selectedEdgeInfo.relationshipType} +
+
+
|
+
+
연결 유형
+
+ {selectedEdgeInfo.connectionType} +
+
+
+
+ {/* 연결 정보 */}
{/* From 테이블 */} -
-
From 테이블
-
{selectedEdgeInfo.fromTable}
-
- {selectedEdgeInfo.fromColumns.map((column, index) => ( - - {column} - - ))} +
+
FROM
+
{selectedEdgeInfo.fromTable}
+
+
+ {selectedEdgeInfo.fromColumns.map((column, index) => ( + + {column} + + ))} +
- {/* 화살표 */} + {/* 관계 화살표 */}
-
-
- -
-
+
{/* To 테이블 */} -
-
To 테이블
-
{selectedEdgeInfo.toTable}
-
- {selectedEdgeInfo.toColumns.map((column, index) => ( - - {column} - - ))} -
-
- - {/* 관계 정보 */} -
-
-
관계 유형
-
{selectedEdgeInfo.relationshipType}
-
-
-
연결 유형
-
{selectedEdgeInfo.connectionType}
+
+
TO
+
{selectedEdgeInfo.toTable}
+
+
+ {selectedEdgeInfo.toColumns.map((column, index) => ( + + {column} + + ))} +
{/* 액션 버튼 */} -
+