758 lines
30 KiB
TypeScript
758 lines
30 KiB
TypeScript
"use client";
|
||
|
||
/**
|
||
* UPDATE 액션 노드 속성 편집 (개선 버전)
|
||
*/
|
||
|
||
import { useEffect, useState } from "react";
|
||
import { Plus, Trash2, Check, ChevronsUpDown, ArrowRight } from "lucide-react";
|
||
import { Label } from "@/components/ui/label";
|
||
import { Input } from "@/components/ui/input";
|
||
import { Button } from "@/components/ui/button";
|
||
import { ScrollArea } from "@/components/ui/scroll-area";
|
||
import { Checkbox } from "@/components/ui/checkbox";
|
||
import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "@/components/ui/command";
|
||
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover";
|
||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||
import { cn } from "@/lib/utils";
|
||
import { useFlowEditorStore } from "@/lib/stores/flowEditorStore";
|
||
import { tableTypeApi } from "@/lib/api/screen";
|
||
import type { UpdateActionNodeData } from "@/types/node-editor";
|
||
|
||
interface UpdateActionPropertiesProps {
|
||
nodeId: string;
|
||
data: UpdateActionNodeData;
|
||
}
|
||
|
||
interface TableOption {
|
||
tableName: string;
|
||
displayName: string;
|
||
description: string;
|
||
label: string;
|
||
}
|
||
|
||
interface ColumnInfo {
|
||
columnName: string;
|
||
columnLabel?: string;
|
||
dataType: string;
|
||
isNullable: boolean;
|
||
}
|
||
|
||
const OPERATORS = [
|
||
{ value: "EQUALS", label: "=" },
|
||
{ value: "NOT_EQUALS", label: "≠" },
|
||
{ value: "GREATER_THAN", label: ">" },
|
||
{ value: "LESS_THAN", label: "<" },
|
||
{ value: "GREATER_THAN_OR_EQUAL", label: "≥" },
|
||
{ value: "LESS_THAN_OR_EQUAL", label: "≤" },
|
||
{ value: "LIKE", label: "LIKE" },
|
||
{ value: "NOT_LIKE", label: "NOT LIKE" },
|
||
{ value: "IN", label: "IN" },
|
||
{ value: "NOT_IN", label: "NOT IN" },
|
||
{ value: "IS_NULL", label: "IS NULL" },
|
||
{ value: "IS_NOT_NULL", label: "IS NOT NULL" },
|
||
] as const;
|
||
|
||
export function UpdateActionProperties({ nodeId, data }: UpdateActionPropertiesProps) {
|
||
const { updateNode, nodes, edges } = useFlowEditorStore();
|
||
|
||
const [displayName, setDisplayName] = useState(data.displayName || data.targetTable);
|
||
const [targetTable, setTargetTable] = useState(data.targetTable);
|
||
const [fieldMappings, setFieldMappings] = useState(data.fieldMappings || []);
|
||
const [whereConditions, setWhereConditions] = useState(data.whereConditions || []);
|
||
const [batchSize, setBatchSize] = useState(data.options?.batchSize?.toString() || "");
|
||
const [ignoreErrors, setIgnoreErrors] = useState(data.options?.ignoreErrors || false);
|
||
|
||
// 테이블 관련 상태
|
||
const [tables, setTables] = useState<TableOption[]>([]);
|
||
const [tablesLoading, setTablesLoading] = useState(false);
|
||
const [tablesOpen, setTablesOpen] = useState(false);
|
||
|
||
// 컬럼 관련 상태
|
||
const [targetColumns, setTargetColumns] = useState<ColumnInfo[]>([]);
|
||
const [columnsLoading, setColumnsLoading] = useState(false);
|
||
|
||
// 소스 필드 목록 (연결된 입력 노드에서 가져오기)
|
||
const [sourceFields, setSourceFields] = useState<Array<{ name: string; label?: string }>>([]);
|
||
|
||
// 데이터 변경 시 로컬 상태 업데이트
|
||
useEffect(() => {
|
||
setDisplayName(data.displayName || data.targetTable);
|
||
setTargetTable(data.targetTable);
|
||
setFieldMappings(data.fieldMappings || []);
|
||
setWhereConditions(data.whereConditions || []);
|
||
setBatchSize(data.options?.batchSize?.toString() || "");
|
||
setIgnoreErrors(data.options?.ignoreErrors || false);
|
||
}, [data]);
|
||
|
||
// 테이블 목록 로딩
|
||
useEffect(() => {
|
||
loadTables();
|
||
}, []);
|
||
|
||
// 타겟 테이블 변경 시 컬럼 로딩
|
||
useEffect(() => {
|
||
if (targetTable) {
|
||
loadColumns(targetTable);
|
||
}
|
||
}, [targetTable]);
|
||
|
||
// 연결된 소스 노드에서 필드 가져오기 (재귀적으로 모든 상위 노드 탐색)
|
||
useEffect(() => {
|
||
const getAllSourceFields = (
|
||
targetNodeId: string,
|
||
visitedNodes = new Set<string>(),
|
||
): Array<{ name: string; label?: string }> => {
|
||
if (visitedNodes.has(targetNodeId)) {
|
||
return [];
|
||
}
|
||
visitedNodes.add(targetNodeId);
|
||
|
||
const inputEdges = edges.filter((edge) => edge.target === targetNodeId);
|
||
const sourceNodeIds = inputEdges.map((edge) => edge.source);
|
||
const sourceNodes = nodes.filter((node) => sourceNodeIds.includes(node.id));
|
||
|
||
const fields: Array<{ name: string; label?: string }> = [];
|
||
|
||
sourceNodes.forEach((node) => {
|
||
// 데이터 변환 노드인 경우: 변환된 필드 + 상위 노드의 원본 필드
|
||
if (node.type === "dataTransform") {
|
||
// 상위 노드의 원본 필드 먼저 수집
|
||
const upperFields = getAllSourceFields(node.id, visitedNodes);
|
||
|
||
// 변환된 필드 추가 (in-place 변환 고려)
|
||
if (node.data.transformations && Array.isArray(node.data.transformations)) {
|
||
const inPlaceFields = new Set<string>();
|
||
|
||
node.data.transformations.forEach((transform: any) => {
|
||
const targetField = transform.targetField || transform.sourceField;
|
||
const isInPlace = !transform.targetField || transform.targetField === transform.sourceField;
|
||
|
||
if (isInPlace) {
|
||
inPlaceFields.add(transform.sourceField);
|
||
} else if (targetField) {
|
||
fields.push({
|
||
name: targetField,
|
||
label: transform.targetFieldLabel || targetField,
|
||
});
|
||
}
|
||
});
|
||
|
||
// 상위 필드 추가 (모두 포함, in-place는 변환 후 값)
|
||
upperFields.forEach((field) => {
|
||
fields.push(field);
|
||
});
|
||
} else {
|
||
fields.push(...upperFields);
|
||
}
|
||
}
|
||
// 일반 소스 노드인 경우
|
||
else if (node.type === "tableSource" && node.data.fields) {
|
||
node.data.fields.forEach((field: any) => {
|
||
fields.push({
|
||
name: field.name,
|
||
label: field.label || field.displayName,
|
||
});
|
||
});
|
||
} else if (node.type === "externalDBSource" && node.data.fields) {
|
||
node.data.fields.forEach((field: any) => {
|
||
fields.push({
|
||
name: field.name,
|
||
label: field.label || field.displayName,
|
||
});
|
||
});
|
||
}
|
||
});
|
||
|
||
return fields;
|
||
};
|
||
|
||
const allFields = getAllSourceFields(nodeId);
|
||
|
||
// 중복 제거
|
||
const uniqueFields = Array.from(new Map(allFields.map((field) => [field.name, field])).values());
|
||
|
||
setSourceFields(uniqueFields);
|
||
}, [nodeId, nodes, edges]);
|
||
|
||
const loadTables = async () => {
|
||
try {
|
||
setTablesLoading(true);
|
||
const tableList = await tableTypeApi.getTables();
|
||
console.log("🔍 UPDATE 노드 - 테이블 목록:", tableList);
|
||
|
||
const options: TableOption[] = tableList.map((table) => {
|
||
const label = (table as any).tableLabel || table.displayName || table.tableName || "알 수 없는 테이블";
|
||
|
||
return {
|
||
tableName: table.tableName,
|
||
displayName: table.displayName || table.tableName,
|
||
description: table.description || "",
|
||
label,
|
||
};
|
||
});
|
||
|
||
console.log("✅ UPDATE 노드 - 테이블 옵션:", options);
|
||
setTables(options);
|
||
} catch (error) {
|
||
console.error("❌ UPDATE 노드 - 테이블 목록 로딩 실패:", error);
|
||
} finally {
|
||
setTablesLoading(false);
|
||
}
|
||
};
|
||
|
||
const loadColumns = async (tableName: string) => {
|
||
try {
|
||
setColumnsLoading(true);
|
||
console.log(`🔍 UPDATE 노드 - 컬럼 조회 중: ${tableName}`);
|
||
|
||
const columns = await tableTypeApi.getColumns(tableName);
|
||
|
||
const columnInfo: ColumnInfo[] = columns.map((col: any) => ({
|
||
columnName: col.column_name || col.columnName,
|
||
columnLabel: col.label_ko || col.columnLabel,
|
||
dataType: col.data_type || col.dataType || "unknown",
|
||
isNullable: col.is_nullable === "YES" || col.isNullable === true,
|
||
}));
|
||
|
||
setTargetColumns(columnInfo);
|
||
console.log(`✅ UPDATE 노드 - 컬럼 ${columnInfo.length}개 로딩 완료`);
|
||
} catch (error) {
|
||
console.error("❌ UPDATE 노드 - 컬럼 목록 로딩 실패:", error);
|
||
setTargetColumns([]);
|
||
} finally {
|
||
setColumnsLoading(false);
|
||
}
|
||
};
|
||
|
||
const handleTableSelect = async (newTableName: string) => {
|
||
const selectedTable = tables.find((t) => t.tableName === newTableName);
|
||
const newDisplayName = selectedTable?.label || selectedTable?.displayName || newTableName;
|
||
|
||
setTargetTable(newTableName);
|
||
setDisplayName(newDisplayName);
|
||
|
||
await loadColumns(newTableName);
|
||
|
||
// 즉시 반영
|
||
updateNode(nodeId, {
|
||
displayName: newDisplayName,
|
||
targetTable: newTableName,
|
||
fieldMappings,
|
||
whereConditions,
|
||
options: {
|
||
batchSize: batchSize ? parseInt(batchSize) : undefined,
|
||
ignoreErrors,
|
||
},
|
||
});
|
||
|
||
setTablesOpen(false);
|
||
};
|
||
|
||
const handleAddMapping = () => {
|
||
setFieldMappings([
|
||
...fieldMappings,
|
||
{
|
||
sourceField: null,
|
||
targetField: "",
|
||
staticValue: undefined,
|
||
},
|
||
]);
|
||
};
|
||
|
||
const handleRemoveMapping = (index: number) => {
|
||
const newMappings = fieldMappings.filter((_, i) => i !== index);
|
||
setFieldMappings(newMappings);
|
||
|
||
// 즉시 반영
|
||
updateNode(nodeId, {
|
||
displayName,
|
||
targetTable,
|
||
fieldMappings: newMappings,
|
||
whereConditions,
|
||
options: {
|
||
batchSize: batchSize ? parseInt(batchSize) : undefined,
|
||
ignoreErrors,
|
||
},
|
||
});
|
||
};
|
||
|
||
const handleMappingChange = (index: number, field: string, value: any) => {
|
||
const newMappings = [...fieldMappings];
|
||
|
||
// 필드 변경 시 라벨도 함께 저장
|
||
if (field === "sourceField") {
|
||
const sourceField = sourceFields.find((f) => f.name === value);
|
||
newMappings[index] = {
|
||
...newMappings[index],
|
||
sourceField: value,
|
||
sourceFieldLabel: sourceField?.label,
|
||
};
|
||
} else if (field === "targetField") {
|
||
const targetColumn = targetColumns.find((c) => c.columnName === value);
|
||
newMappings[index] = {
|
||
...newMappings[index],
|
||
targetField: value,
|
||
targetFieldLabel: targetColumn?.columnLabel,
|
||
};
|
||
} else {
|
||
newMappings[index] = { ...newMappings[index], [field]: value };
|
||
}
|
||
|
||
setFieldMappings(newMappings);
|
||
};
|
||
|
||
const handleAddCondition = () => {
|
||
setWhereConditions([
|
||
...whereConditions,
|
||
{
|
||
field: "",
|
||
operator: "EQUALS",
|
||
staticValue: "",
|
||
},
|
||
]);
|
||
};
|
||
|
||
const handleRemoveCondition = (index: number) => {
|
||
const newConditions = whereConditions.filter((_, i) => i !== index);
|
||
setWhereConditions(newConditions);
|
||
|
||
// 즉시 반영
|
||
updateNode(nodeId, {
|
||
displayName,
|
||
targetTable,
|
||
fieldMappings,
|
||
whereConditions: newConditions,
|
||
options: {
|
||
batchSize: batchSize ? parseInt(batchSize) : undefined,
|
||
ignoreErrors,
|
||
},
|
||
});
|
||
};
|
||
|
||
const handleConditionChange = (index: number, field: string, value: any) => {
|
||
const newConditions = [...whereConditions];
|
||
|
||
// 필드 변경 시 라벨도 함께 저장
|
||
if (field === "field") {
|
||
const targetColumn = targetColumns.find((c) => c.columnName === value);
|
||
newConditions[index] = {
|
||
...newConditions[index],
|
||
field: value,
|
||
fieldLabel: targetColumn?.columnLabel,
|
||
};
|
||
} else if (field === "sourceField") {
|
||
const sourceField = sourceFields.find((f) => f.name === value);
|
||
newConditions[index] = {
|
||
...newConditions[index],
|
||
sourceField: value,
|
||
sourceFieldLabel: sourceField?.label,
|
||
};
|
||
} else {
|
||
newConditions[index] = { ...newConditions[index], [field]: value };
|
||
}
|
||
|
||
setWhereConditions(newConditions);
|
||
};
|
||
|
||
const handleSave = () => {
|
||
updateNode(nodeId, {
|
||
displayName,
|
||
targetTable,
|
||
fieldMappings,
|
||
whereConditions,
|
||
options: {
|
||
batchSize: batchSize ? parseInt(batchSize) : undefined,
|
||
ignoreErrors,
|
||
},
|
||
});
|
||
};
|
||
|
||
const selectedTableLabel = tables.find((t) => t.tableName === targetTable)?.label || targetTable;
|
||
|
||
return (
|
||
<ScrollArea className="h-full">
|
||
<div className="space-y-4 p-4">
|
||
{/* 기본 정보 */}
|
||
<div>
|
||
<h3 className="mb-3 text-sm font-semibold">기본 정보</h3>
|
||
|
||
<div className="space-y-3">
|
||
<div>
|
||
<Label htmlFor="displayName" className="text-xs">
|
||
표시 이름
|
||
</Label>
|
||
<Input
|
||
id="displayName"
|
||
value={displayName}
|
||
onChange={(e) => setDisplayName(e.target.value)}
|
||
className="mt-1"
|
||
placeholder="노드 표시 이름"
|
||
/>
|
||
</div>
|
||
|
||
{/* 타겟 테이블 Combobox */}
|
||
<div>
|
||
<Label className="text-xs">타겟 테이블</Label>
|
||
<Popover open={tablesOpen} onOpenChange={setTablesOpen}>
|
||
<PopoverTrigger asChild>
|
||
<Button
|
||
variant="outline"
|
||
role="combobox"
|
||
aria-expanded={tablesOpen}
|
||
className="mt-1 w-full justify-between"
|
||
disabled={tablesLoading}
|
||
>
|
||
{tablesLoading ? (
|
||
<span className="text-muted-foreground">로딩 중...</span>
|
||
) : targetTable ? (
|
||
<span className="truncate">{selectedTableLabel}</span>
|
||
) : (
|
||
<span className="text-muted-foreground">테이블을 선택하세요</span>
|
||
)}
|
||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||
</Button>
|
||
</PopoverTrigger>
|
||
<PopoverContent className="w-[320px] p-0" align="start">
|
||
<Command>
|
||
<CommandInput placeholder="테이블 검색..." />
|
||
<CommandEmpty>테이블을 찾을 수 없습니다.</CommandEmpty>
|
||
<CommandList>
|
||
<CommandGroup>
|
||
{tables.map((table) => (
|
||
<CommandItem
|
||
key={table.tableName}
|
||
value={`${table.label} ${table.displayName} ${table.tableName}`}
|
||
onSelect={() => handleTableSelect(table.tableName)}
|
||
>
|
||
<Check
|
||
className={cn(
|
||
"mr-2 h-4 w-4",
|
||
targetTable === table.tableName ? "opacity-100" : "opacity-0",
|
||
)}
|
||
/>
|
||
<div className="flex flex-col">
|
||
<span className="font-medium">{table.label || table.displayName}</span>
|
||
<span className="text-muted-foreground text-xs">{table.tableName}</span>
|
||
</div>
|
||
</CommandItem>
|
||
))}
|
||
</CommandGroup>
|
||
</CommandList>
|
||
</Command>
|
||
</PopoverContent>
|
||
</Popover>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* WHERE 조건 */}
|
||
<div>
|
||
<div className="mb-2 flex items-center justify-between">
|
||
<h3 className="text-sm font-semibold">WHERE 조건</h3>
|
||
<Button size="sm" variant="outline" onClick={handleAddCondition} className="h-7 px-2 text-xs">
|
||
<Plus className="mr-1 h-3 w-3" />
|
||
조건 추가
|
||
</Button>
|
||
</div>
|
||
|
||
{!targetTable && !columnsLoading && (
|
||
<div className="rounded border border-dashed bg-yellow-50 p-3 text-center text-xs text-yellow-700">
|
||
⚠️ 먼저 타겟 테이블을 선택하세요
|
||
</div>
|
||
)}
|
||
|
||
{targetTable && whereConditions.length === 0 && (
|
||
<div className="rounded border border-dashed bg-gray-50 p-3 text-center text-xs text-gray-500">
|
||
WHERE 조건을 추가하세요
|
||
</div>
|
||
)}
|
||
|
||
{targetTable && whereConditions.length > 0 && targetColumns.length > 0 && (
|
||
<div className="space-y-3">
|
||
{whereConditions.map((condition, index) => (
|
||
<div key={index} className="rounded border bg-blue-50 p-3">
|
||
<div className="mb-2 flex items-center justify-between">
|
||
<span className="text-xs font-medium text-gray-700">조건 #{index + 1}</span>
|
||
<Button
|
||
size="sm"
|
||
variant="ghost"
|
||
onClick={() => handleRemoveCondition(index)}
|
||
className="h-6 w-6 p-0 text-red-600 hover:text-red-700"
|
||
>
|
||
<Trash2 className="h-3 w-3" />
|
||
</Button>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
{/* 타겟 필드 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">타겟 필드</Label>
|
||
<Select
|
||
value={condition.field}
|
||
onValueChange={(value) => handleConditionChange(index, "field", value)}
|
||
>
|
||
<SelectTrigger className="mt-1 h-8 text-xs">
|
||
<SelectValue placeholder="필드 선택" />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
{targetColumns.map((col) => (
|
||
<SelectItem key={col.columnName} value={col.columnName} className="text-xs">
|
||
<div className="flex items-center justify-between gap-2">
|
||
<span className="font-mono">{col.columnLabel || col.columnName}</span>
|
||
<span className="text-muted-foreground">{col.dataType}</span>
|
||
</div>
|
||
</SelectItem>
|
||
))}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
{/* 연산자 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">연산자</Label>
|
||
<Select
|
||
value={condition.operator}
|
||
onValueChange={(value) => handleConditionChange(index, "operator", value)}
|
||
>
|
||
<SelectTrigger className="mt-1 h-8 text-xs">
|
||
<SelectValue />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
{OPERATORS.map((op) => (
|
||
<SelectItem key={op.value} value={op.value} className="text-xs">
|
||
{op.label}
|
||
</SelectItem>
|
||
))}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
{/* IS_NULL, IS_NOT_NULL이 아닐 때만 소스 필드와 정적 값 표시 */}
|
||
{condition.operator !== "IS_NULL" && condition.operator !== "IS_NOT_NULL" && (
|
||
<>
|
||
{/* 소스 필드 또는 값 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">소스 필드 (선택)</Label>
|
||
<Select
|
||
value={condition.sourceField || "_NONE_"}
|
||
onValueChange={(value) =>
|
||
handleConditionChange(index, "sourceField", value === "_NONE_" ? undefined : value)
|
||
}
|
||
>
|
||
<SelectTrigger className="mt-1 h-8 text-xs">
|
||
<SelectValue placeholder="소스 필드 선택 (선택)" />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="_NONE_" className="text-xs text-gray-400">
|
||
없음 (정적 값 사용)
|
||
</SelectItem>
|
||
{sourceFields.map((field) => (
|
||
<SelectItem key={field.name} value={field.name} className="text-xs">
|
||
<div className="flex items-center justify-between gap-2">
|
||
<span className="font-medium">{field.label || field.name}</span>
|
||
{field.label && field.label !== field.name && (
|
||
<span className="text-muted-foreground font-mono text-xs">{field.name}</span>
|
||
)}
|
||
</div>
|
||
</SelectItem>
|
||
))}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
{/* 정적 값 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">정적 값</Label>
|
||
<Input
|
||
value={condition.staticValue || ""}
|
||
onChange={(e) => handleConditionChange(index, "staticValue", e.target.value || undefined)}
|
||
placeholder="비교할 고정 값"
|
||
className="mt-1 h-8 text-xs"
|
||
/>
|
||
<p className="mt-1 text-xs text-gray-400">소스 필드가 비어있을 때만 사용됩니다</p>
|
||
</div>
|
||
</>
|
||
)}
|
||
|
||
{/* IS_NULL, IS_NOT_NULL일 때 안내 메시지 */}
|
||
{(condition.operator === "IS_NULL" || condition.operator === "IS_NOT_NULL") && (
|
||
<div className="rounded bg-blue-50 p-3 text-xs text-blue-700">
|
||
ℹ️ {condition.operator === "IS_NULL" ? "IS NULL" : "IS NOT NULL"} 조건은 값 비교가 필요하지
|
||
않습니다.
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
))}
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
{/* 필드 매핑 */}
|
||
<div>
|
||
<div className="mb-2 flex items-center justify-between">
|
||
<h3 className="text-sm font-semibold">업데이트 필드</h3>
|
||
<Button size="sm" variant="outline" onClick={handleAddMapping} className="h-7 px-2 text-xs">
|
||
<Plus className="mr-1 h-3 w-3" />
|
||
매핑 추가
|
||
</Button>
|
||
</div>
|
||
|
||
{!targetTable && !columnsLoading && (
|
||
<div className="rounded border border-dashed bg-yellow-50 p-3 text-center text-xs text-yellow-700">
|
||
⚠️ 먼저 타겟 테이블을 선택하세요
|
||
</div>
|
||
)}
|
||
|
||
{targetTable && !columnsLoading && targetColumns.length === 0 && (
|
||
<div className="rounded border border-dashed bg-red-50 p-3 text-center text-xs text-red-700">
|
||
❌ 컬럼 정보를 불러올 수 없습니다
|
||
</div>
|
||
)}
|
||
|
||
{targetTable && targetColumns.length > 0 && (
|
||
<>
|
||
{fieldMappings.length > 0 ? (
|
||
<div className="space-y-3">
|
||
{fieldMappings.map((mapping, index) => (
|
||
<div key={index} className="rounded border bg-gray-50 p-3">
|
||
<div className="mb-2 flex items-center justify-between">
|
||
<span className="text-xs font-medium text-gray-700">매핑 #{index + 1}</span>
|
||
<Button
|
||
size="sm"
|
||
variant="ghost"
|
||
onClick={() => handleRemoveMapping(index)}
|
||
className="h-6 w-6 p-0 text-red-600 hover:text-red-700"
|
||
>
|
||
<Trash2 className="h-3 w-3" />
|
||
</Button>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
{/* 소스 필드 드롭다운 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">소스 필드</Label>
|
||
<Select
|
||
value={mapping.sourceField || ""}
|
||
onValueChange={(value) => handleMappingChange(index, "sourceField", value || null)}
|
||
>
|
||
<SelectTrigger className="mt-1 h-8 text-xs">
|
||
<SelectValue placeholder="소스 필드 선택" />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
{sourceFields.length === 0 ? (
|
||
<div className="p-2 text-center text-xs text-gray-400">연결된 소스 노드가 없습니다</div>
|
||
) : (
|
||
sourceFields.map((field) => (
|
||
<SelectItem key={field.name} value={field.name} className="text-xs">
|
||
<div className="flex items-center justify-between gap-2">
|
||
<span className="font-medium">{field.label || field.name}</span>
|
||
{field.label && field.label !== field.name && (
|
||
<span className="text-muted-foreground font-mono text-xs">{field.name}</span>
|
||
)}
|
||
</div>
|
||
</SelectItem>
|
||
))
|
||
)}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
<div className="flex items-center justify-center py-1">
|
||
<ArrowRight className="h-4 w-4 text-blue-600" />
|
||
</div>
|
||
|
||
{/* 타겟 필드 드롭다운 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">타겟 필드</Label>
|
||
<Select
|
||
value={mapping.targetField}
|
||
onValueChange={(value) => handleMappingChange(index, "targetField", value)}
|
||
>
|
||
<SelectTrigger className="mt-1 h-8 text-xs">
|
||
<SelectValue placeholder="타겟 필드 선택" />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
{targetColumns.map((col) => (
|
||
<SelectItem key={col.columnName} value={col.columnName} className="text-xs">
|
||
<div className="flex items-center justify-between gap-2">
|
||
<span className="font-mono">{col.columnLabel || col.columnName}</span>
|
||
<span className="text-muted-foreground">
|
||
{col.dataType}
|
||
{!col.isNullable && <span className="text-red-500">*</span>}
|
||
</span>
|
||
</div>
|
||
</SelectItem>
|
||
))}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
{/* 정적 값 */}
|
||
<div>
|
||
<Label className="text-xs text-gray-600">정적 값 (선택)</Label>
|
||
<Input
|
||
value={mapping.staticValue || ""}
|
||
onChange={(e) => handleMappingChange(index, "staticValue", e.target.value || undefined)}
|
||
placeholder="소스 필드 대신 고정 값 사용"
|
||
className="mt-1 h-8 text-xs"
|
||
/>
|
||
<p className="mt-1 text-xs text-gray-400">소스 필드가 비어있을 때만 사용됩니다</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
))}
|
||
</div>
|
||
) : (
|
||
<div className="rounded border border-dashed bg-gray-50 p-3 text-center text-xs text-gray-500">
|
||
업데이트할 필드를 추가하세요
|
||
</div>
|
||
)}
|
||
</>
|
||
)}
|
||
</div>
|
||
|
||
{/* 옵션 */}
|
||
<div>
|
||
<h3 className="mb-3 text-sm font-semibold">옵션</h3>
|
||
<div className="space-y-3">
|
||
<div>
|
||
<Label htmlFor="batchSize" className="text-xs">
|
||
배치 크기
|
||
</Label>
|
||
<Input
|
||
id="batchSize"
|
||
type="number"
|
||
value={batchSize}
|
||
onChange={(e) => setBatchSize(e.target.value)}
|
||
className="mt-1"
|
||
placeholder="예: 100"
|
||
/>
|
||
</div>
|
||
|
||
<div className="flex items-center space-x-2">
|
||
<Checkbox
|
||
id="ignoreErrors"
|
||
checked={ignoreErrors}
|
||
onCheckedChange={(checked) => setIgnoreErrors(checked as boolean)}
|
||
/>
|
||
<Label htmlFor="ignoreErrors" className="cursor-pointer text-xs font-normal">
|
||
오류 무시
|
||
</Label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 적용 버튼 */}
|
||
<div className="sticky bottom-0 border-t bg-white pt-3">
|
||
<Button onClick={handleSave} className="w-full" size="sm">
|
||
적용
|
||
</Button>
|
||
<p className="mt-2 text-center text-xs text-gray-500">✅ 변경 사항이 즉시 노드에 반영됩니다.</p>
|
||
</div>
|
||
</div>
|
||
</ScrollArea>
|
||
);
|
||
}
|