- Add cursor-pointer to all clickable buttons and interactive elements - Add focus:ring-2 focus:ring-primary/blue focus:outline-none to all buttons - Add aria-label to icon-only buttons and actions - Update focus states from focus-visible to focus for consistency - Add disabled:cursor-not-allowed for disabled button states - Improve keyboard navigation with proper focus indicators Components updated: - BottomNav: navigation buttons with aria-labels - Scanner: try again, zoom, word selection, cancel buttons - ItemComparisonModal: skip and update action buttons - ConfirmationModal: close, cancel, delete buttons with input focus - AIOnboarding: all mode toggles, camera, upload, capture, edit, delete buttons - Plus interactive cards and list items This ensures WCAG AA compliance for keyboard navigation and visual feedback.
126 lines
4.7 KiB
TypeScript
126 lines
4.7 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 bg-slate-950/80">
|
|
<div className="bg-slate-900 border border-slate-800 rounded-[2.5rem] p-8 w-full max-w-2xl shadow-2xl 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-black text-white">Part Number Already Exists</h3>
|
|
<p className="text-xs text-slate-400 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-slate-800">
|
|
<div className="text-xs font-bold text-slate-500">Field</div>
|
|
<div className="text-xs font-bold text-slate-400">Current (ID: {existingItem?.id})</div>
|
|
<div className="text-xs font-bold 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 rounded-lg ${
|
|
different ? 'bg-amber-500/10 border border-amber-500/20' : 'bg-slate-800/30'
|
|
}`}
|
|
>
|
|
<div className="text-sm font-bold text-slate-300">{field.label}</div>
|
|
<div className={`text-sm font-mono ${different ? 'text-amber-200' : 'text-slate-400'}`}>
|
|
{existing}
|
|
</div>
|
|
<div className={`text-sm font-mono ${different ? 'text-primary font-bold' : 'text-slate-400'}`}>
|
|
{newVal}
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
{!hasChanges && (
|
|
<div className="p-4 bg-slate-800/50 rounded-xl mb-6 border border-slate-700">
|
|
<p className="text-sm text-slate-300">✓ 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-slate-800 hover:bg-slate-700 text-slate-200 rounded-2xl text-sm font-black cursor-pointer transition-all active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed border border-slate-700 focus:ring-2 focus:ring-blue-500 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:bg-blue-600 text-white rounded-2xl text-sm font-black cursor-pointer transition-all active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed shadow-xl shadow-primary/20 focus:ring-2 focus:ring-blue-400 focus:outline-none"
|
|
>
|
|
{loading ? (
|
|
<>
|
|
<RefreshCw size={16} className="animate-spin" /> Updating...
|
|
</>
|
|
) : (
|
|
<>
|
|
<RefreshCw size={16} /> Update Item
|
|
</>
|
|
)}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|