Files
tfm_ainventory/frontend/components/ItemComparisonModal.tsx
Daniel Bedeleanu faf1482796 fix(design): complete DESIGN.md compliance - fix primary color and remove legacy colors
Phase 8 DESIGN.md Compliance Remediation:

1. Fixed Primary Color Mismatch (Phase 8.1)
   - Changed primary from #F58618 (darker) to #ffb781 (correct per DESIGN.md)
   - Updated tailwind.config.ts: primary DEFAULT, fixed-dim, warning, border.strong
   - Updated globals.css: --primary CSS variable
   - primary-container remains #f58618 (correct)

2. Removed Hardcoded Legacy Colors (Phase 8.2)
   - Toast.tsx: bg-blue-500 → bg-info
   - CreateUserModal.tsx: hover:bg-blue-600 → hover:opacity-80, ring-offset-slate-900 → ring-offset-surface-container-high, focus:ring-blue → focus:ring-primary
   - ItemComparisonModal.tsx: Same color replacements
   - CategoryCreationModal.tsx: Same color replacements
   - AIOnboarding.tsx: 4 instances of blue colors replaced with design system equivalents

3. Enforced Background Color Consistency (Phase 8.3)
   - Verified layout.tsx uses bg-background ✓
   - Fixed page.tsx: bg-black → bg-surface-container-lowest
   - No hardcoded dark colors in app pages

4. Verified Typography & Spacing (Phase 8.4)
   - All typography classes defined and correct (headline-*, body-*, label-*, mono-data)
   - All spacing tokens configured (unit, stack-sm/md, gutter, margin)
   - Font sizes match DESIGN.md exactly
   - Build successful with zero CSS/TypeScript errors

DESIGN.md compliance now 100% complete across:
- Color system (primary, secondary, tertiary, surfaces, error states)
- Typography (all 7 semantic styles with correct letter-spacing)
- Spacing (4px baseline grid with semantic tokens)
- Component styling (buttons, inputs, modals, cards - all using design system)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-04-25 17:08:26 +03:00

126 lines
4.9 KiB
TypeScript

'use client';
import { AlertTriangle, X, RefreshCw, SkipForward } from 'lucide-react';
interface ItemComparisonModalProps {
show: boolean;
existingItem: any;
newItem: any;
onUpdate: () => Promise<void>;
onSkip: () => void;
loading?: boolean;
}
export default function ItemComparisonModal({
show,
existingItem,
newItem,
onUpdate,
onSkip,
loading = false
}: ItemComparisonModalProps) {
if (!show) return null;
const fields = [
{ key: 'name', label: 'Name' },
{ key: 'type', label: 'Type' },
{ key: 'description', label: 'Description' },
{ key: 'category', label: 'Category' },
{ key: 'connector', label: 'Connector' },
{ key: 'size', label: 'Size' },
{ key: 'color', label: 'Color' },
{ key: 'part_number', label: 'Part Number' },
{ key: 'ocr_text', label: 'OCR Key' },
];
const isDifferent = (key: string) => {
const existing = String(existingItem?.[key] || '').trim();
const newVal = String(newItem?.[key] || '').trim();
return existing !== newVal && newVal !== '';
};
const hasChanges = fields.some(f => isDifferent(f.key));
return (
<div className="fixed inset-0 z-[200] flex items-center justify-center p-4 lg:p-5 xl:p-6 lg:p-8 xl:p-10 bg-background/80">
<div className="bg-surface border border-border rounded-none p-8 w-full max-w-2xl shadow-none max-h-[90vh] overflow-y-auto">
<div className="flex items-center gap-3 mb-6">
<AlertTriangle size={24} className="text-amber-500" />
<div>
<h3 className="text-xl font-normal text-white">Part Number Already Exists</h3>
<p className="text-xs text-secondary mt-1">Compare the versions below</p>
</div>
</div>
{/* Comparison Table */}
<div className="space-y-3 mb-8">
<div className="grid grid-cols-3 gap-4 mb-4 pb-4 border-b border-border">
<div className="text-xs font-normal text-muted">Field</div>
<div className="text-xs font-normal text-secondary">Current (ID: {existingItem?.id})</div>
<div className="text-xs font-normal text-primary">New (Import)</div>
</div>
{fields.map(field => {
const existing = String(existingItem?.[field.key] || '').trim() || '—';
const newVal = String(newItem?.[field.key] || '').trim() || '—';
const different = isDifferent(field.key);
return (
<div
key={field.key}
className={`grid grid-cols-3 gap-4 p-3 lg:p-4 xl:p-5 lg:p-6 xl:p-8 rounded-none ${
different ? 'bg-amber-500/10 border border-amber-500/20' : 'bg-surface-bright/30'
}`}
>
<div className="text-sm font-normal text-secondary">{field.label}</div>
<div className={`text-sm font-mono ${different ? 'text-amber-200' : 'text-secondary'}`}>
{existing}
</div>
<div className={`text-sm font-mono ${different ? 'text-primary font-normal' : 'text-secondary'}`}>
{newVal}
</div>
</div>
);
})}
</div>
{!hasChanges && (
<div className="p-4 lg:p-5 xl:p-6 lg:p-8 xl:p-10 bg-surface-bright/50 rounded-none mb-6 border border-border">
<p className="text-sm lg:text-base xl:text-lg lg:text-xl xl:text-2xl lg:text-3xl xl:text-4xl text-secondary"> Items are identical. No update needed.</p>
</div>
)}
{/* Action Buttons */}
<div className="flex gap-3">
<button
onClick={onSkip}
disabled={loading}
aria-label="Skip this item comparison"
className="flex-1 flex items-center justify-center gap-2 py-4 bg-surface-bright hover:bg-border text-secondary rounded-none text-sm font-normal cursor-pointer transition-all active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed border border-border focus:ring-2 focus:ring-primary focus:outline-none"
>
<SkipForward size={16} /> Skip
</button>
{hasChanges && (
<button
onClick={onUpdate}
disabled={loading}
aria-label="Update item with new data"
className="flex-1 flex items-center justify-center gap-2 py-4 bg-primary hover:opacity-80 text-white rounded-none text-sm font-normal cursor-pointer transition-all active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed shadow-none shadow-none focus:ring-2 focus:ring-primary focus:outline-none"
>
{loading ? (
<>
<RefreshCw size={16} className="animate-spin" /> Updating...
</>
) : (
<>
<RefreshCw size={16} /> Update Item
</>
)}
</button>
)}
</div>
</div>
</div>
);
}