feat: vérification image existante sur Shopify avant upload (statut 'Déjà sur Shopify')

This commit is contained in:
2026-06-11 13:35:47 +02:00
parent 4df074f02d
commit 725a7508b0
4 changed files with 30 additions and 2 deletions
+1
View File
@@ -20,6 +20,7 @@ const STATUS_LABELS: Record<string, { label: string; color: string }> = {
ready: { label: '✓ Prêt', color: 'text-green-400' },
uploading: { label: '⬆️ Upload…', color: 'text-blue-400' },
uploaded: { label: '✅ Uploadé', color: 'text-green-500' },
skipped: { label: '⏭️ Déjà sur Shopify', color: 'text-slate-400' },
not_found: { label: '❌ Réf. introuvable', color: 'text-red-400' },
error: { label: '❌ Erreur', color: 'text-red-400' },
}