ERP-node/frontend/components/dataflow/connection/redesigned/LeftPanel/MappingInfoPanel.tsx

146 lines
5.8 KiB
TypeScript

"use client";
import React from "react";
import { CheckCircle, XCircle, AlertCircle, Database } from "lucide-react";
import { MappingStats, FieldMapping } from "../types/redesigned";
interface MappingInfoPanelProps {
mappingStats: MappingStats;
fieldMappings: FieldMapping[];
selectedMapping?: string;
onMappingSelect: (mappingId: string) => void;
}
export const MappingInfoPanel: React.FC<MappingInfoPanelProps> = ({
mappingStats,
fieldMappings,
selectedMapping,
onMappingSelect,
}) => {
return (
<div className="p-6">
<h2 className="text-lg font-semibold text-foreground mb-4">
</h2>
{/* 통계 카드 */}
<div className="grid grid-cols-2 gap-3 mb-6">
<div className="bg-emerald-50 p-3 rounded-lg border border-emerald-200">
<div className="flex items-center gap-2">
<CheckCircle className="w-4 h-4 text-emerald-600" />
<span className="text-sm font-medium text-emerald-800"> </span>
</div>
<div className="text-2xl font-bold text-green-900 mt-1">
{mappingStats.validMappings}
</div>
</div>
<div className="bg-destructive/10 p-3 rounded-lg border border-destructive/20">
<div className="flex items-center gap-2">
<XCircle className="w-4 h-4 text-destructive" />
<span className="text-sm font-medium text-red-800"> </span>
</div>
<div className="text-2xl font-bold text-red-900 mt-1">
{mappingStats.invalidMappings}
</div>
</div>
<div className="bg-accent p-3 rounded-lg border border-primary/20">
<div className="flex items-center gap-2">
<Database className="w-4 h-4 text-primary" />
<span className="text-sm font-medium text-primary"> </span>
</div>
<div className="text-2xl font-bold text-primary mt-1">
{mappingStats.totalMappings}
</div>
</div>
<div className="bg-amber-50 p-3 rounded-lg border border-amber-200">
<div className="flex items-center gap-2">
<AlertCircle className="w-4 h-4 text-amber-600" />
<span className="text-sm font-medium text-yellow-800"> </span>
</div>
<div className="text-2xl font-bold text-yellow-900 mt-1">
{mappingStats.missingRequiredFields}
</div>
</div>
</div>
{/* 매핑 목록 */}
<div className="space-y-2">
<h3 className="text-sm font-medium text-foreground mb-2">
</h3>
{fieldMappings.length === 0 ? (
<div className="text-center py-8 text-muted-foreground">
<Database className="w-8 h-8 mx-auto mb-2 opacity-50" />
<p className="text-sm"> </p>
<p className="text-xs">3 </p>
</div>
) : (
<div className="space-y-1 max-h-64 overflow-y-auto">
{fieldMappings.map((mapping) => (
<div
key={mapping.id}
className={`p-3 rounded-lg border cursor-pointer transition-all duration-200 ${
selectedMapping === mapping.id
? "border-orange-500 bg-amber-50"
: mapping.isValid
? "border-emerald-200 bg-emerald-50 hover:border-green-300"
: "border-destructive/20 bg-destructive/10 hover:border-destructive/30"
}`}
onClick={() => onMappingSelect(mapping.id)}
>
<div className="flex items-center justify-between">
<div className="flex-1 min-w-0">
<div className="flex items-center gap-2">
<span className="text-sm font-medium text-foreground truncate">
{mapping.fromField.name}
</span>
<span className="text-muted-foreground/70"></span>
<span className="text-sm font-medium text-foreground truncate">
{mapping.toField.name}
</span>
</div>
<div className="flex items-center gap-2 mt-1">
<span className={`text-xs px-2 py-1 rounded ${
mapping.fromField.type === mapping.toField.type
? "bg-emerald-100 text-emerald-800"
: "bg-amber-100 text-yellow-800"
}`}>
{mapping.fromField.type}
</span>
<span className="text-muted-foreground/70"></span>
<span className={`text-xs px-2 py-1 rounded ${
mapping.fromField.type === mapping.toField.type
? "bg-emerald-100 text-emerald-800"
: "bg-amber-100 text-yellow-800"
}`}>
{mapping.toField.type}
</span>
</div>
</div>
<div className="ml-2">
{mapping.isValid ? (
<CheckCircle className="w-4 h-4 text-emerald-600" />
) : (
<XCircle className="w-4 h-4 text-destructive" />
)}
</div>
</div>
{mapping.validationMessage && (
<p className="text-xs text-destructive mt-1">
{mapping.validationMessage}
</p>
)}
</div>
))}
</div>
)}
</div>
</div>
);
};