- 노드 에디터 UI 구현 (React Flow 기반) - TableSource, DataTransform, INSERT, UPDATE, DELETE, UPSERT 노드 - 드래그앤드롭 노드 추가 및 연결 - 속성 패널을 통한 노드 설정 - 실시간 필드 라벨 표시 (column_labels 테이블 연동) - 데이터 변환 노드 (DataTransform) 기능 - EXPLODE: 구분자로 1개 행 → 여러 행 확장 - UPPERCASE, LOWERCASE, TRIM, CONCAT, SPLIT, REPLACE 등 12가지 변환 타입 - In-place 변환 지원 (타겟 필드 생략 시 소스 필드 덮어쓰기) - 변환된 필드가 하위 액션 노드에 자동 전달 - 노드 플로우 실행 엔진 - 위상 정렬을 통한 노드 실행 순서 결정 - 레벨별 병렬 실행 (Promise.allSettled) - 부분 실패 허용 (한 노드 실패 시 연결된 하위 노드만 스킵) - 트랜잭션 기반 안전한 데이터 처리 - UPSERT 액션 로직 구현 - DB 제약 조건 없이 SELECT → UPDATE or INSERT 방식 - 복합 충돌 키 지원 (예: sales_no + product_name) - 파라미터 인덱스 정확한 매핑 - 데이터 소스 자동 감지 - 테이블 선택 데이터 (selectedRowsData) 자동 주입 - 폼 입력 데이터 (formData) 자동 주입 - TableSource 노드가 외부 데이터 우선 사용 - 버튼 컴포넌트 통합 - 기존 관계 실행 + 새 노드 플로우 실행 하이브리드 지원 - 노드 플로우 선택 UI 추가 - API 클라이언트 통합 (Axios) - 개발 문서 작성 - 노드 기반 제어 시스템 개선 계획 - 노드 연결 규칙 설계 - 노드 실행 엔진 설계 - 노드 구조 개선안 - 버튼 통합 분석
89 lines
3.0 KiB
TypeScript
89 lines
3.0 KiB
TypeScript
"use client";
|
|
|
|
/**
|
|
* 외부 DB 소스 노드
|
|
*/
|
|
|
|
import { memo } from "react";
|
|
import { Handle, Position, NodeProps } from "reactflow";
|
|
import { Plug } from "lucide-react";
|
|
import type { ExternalDBSourceNodeData } from "@/types/node-editor";
|
|
|
|
const DB_TYPE_COLORS: Record<string, string> = {
|
|
PostgreSQL: "#336791",
|
|
MySQL: "#4479A1",
|
|
Oracle: "#F80000",
|
|
MSSQL: "#CC2927",
|
|
MariaDB: "#003545",
|
|
};
|
|
|
|
const DB_TYPE_ICONS: Record<string, string> = {
|
|
PostgreSQL: "🐘",
|
|
MySQL: "🐬",
|
|
Oracle: "🔴",
|
|
MSSQL: "🟦",
|
|
MariaDB: "🦭",
|
|
};
|
|
|
|
export const ExternalDBSourceNode = memo(({ data, selected }: NodeProps<ExternalDBSourceNodeData>) => {
|
|
const dbColor = (data.dbType && DB_TYPE_COLORS[data.dbType]) || "#F59E0B";
|
|
const dbIcon = (data.dbType && DB_TYPE_ICONS[data.dbType]) || "🔌";
|
|
|
|
return (
|
|
<div
|
|
className={`min-w-[250px] rounded-lg border-2 bg-white shadow-md transition-all ${
|
|
selected ? "border-orange-500 shadow-lg" : "border-gray-200"
|
|
}`}
|
|
>
|
|
{/* 헤더 */}
|
|
<div className="flex items-center gap-2 rounded-t-lg px-3 py-2 text-white" style={{ backgroundColor: dbColor }}>
|
|
<Plug className="h-4 w-4" />
|
|
<div className="flex-1">
|
|
<div className="text-sm font-semibold">{data.displayName || data.connectionName}</div>
|
|
<div className="text-xs opacity-80">{data.tableName}</div>
|
|
</div>
|
|
<span className="text-lg">{dbIcon}</span>
|
|
</div>
|
|
|
|
{/* 본문 */}
|
|
<div className="p-3">
|
|
<div className="mb-2 flex items-center gap-1 text-xs">
|
|
<div className="rounded bg-orange-100 px-2 py-0.5 font-medium text-orange-700">{data.dbType || "DB"}</div>
|
|
<div className="flex-1 text-gray-500">외부 DB</div>
|
|
</div>
|
|
|
|
{/* 필드 목록 */}
|
|
<div className="space-y-1">
|
|
<div className="text-xs font-medium text-gray-700">출력 필드:</div>
|
|
<div className="max-h-[150px] overflow-y-auto">
|
|
{data.fields && data.fields.length > 0 ? (
|
|
data.fields.slice(0, 5).map((field) => (
|
|
<div key={field.name} className="flex items-center gap-2 text-xs text-gray-600">
|
|
<div className="h-1.5 w-1.5 rounded-full" style={{ backgroundColor: dbColor }} />
|
|
<span className="font-mono">{field.name}</span>
|
|
<span className="text-gray-400">({field.type})</span>
|
|
</div>
|
|
))
|
|
) : (
|
|
<div className="text-xs text-gray-400">필드 없음</div>
|
|
)}
|
|
{data.fields && data.fields.length > 5 && (
|
|
<div className="text-xs text-gray-400">... 외 {data.fields.length - 5}개</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 출력 핸들 */}
|
|
<Handle
|
|
type="source"
|
|
position={Position.Right}
|
|
className="!h-3 !w-3 !border-2 !bg-white"
|
|
style={{ borderColor: dbColor }}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
ExternalDBSourceNode.displayName = "ExternalDBSourceNode";
|