ultisuite-client/components/gmail/contacts-page/import-dialog.tsx
R3D347HR4Y 9266aa34cd huhu
2026-05-19 22:20:43 +02:00

158 lines
4.6 KiB
TypeScript

"use client"
import { useRef, useState } from "react"
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
import { Button } from "@/components/ui/button"
import { Info } from "lucide-react"
import { useContactsStore } from "@/lib/contacts/contacts-store"
import { parseContactFile } from "@/lib/contacts/import-parsers"
import {
CONTACTS_HEADING_TEXT,
CONTACTS_MUTED_TEXT,
CONTACTS_PAGE_LINK_BTN_CLASS,
CONTACTS_PANEL_MUTED_ICON_CLASS,
CONTACTS_PRIMARY_BTN_CLASS,
} from "@/lib/contacts-chrome-classes"
import { cn } from "@/lib/utils"
interface ImportDialogProps {
open: boolean
onOpenChange: (open: boolean) => void
}
export function ImportDialog({ open, onOpenChange }: ImportDialogProps) {
const fileRef = useRef<HTMLInputElement>(null)
const addContacts = useContactsStore((s) => s.addContacts)
const [pendingFile, setPendingFile] = useState<File | null>(null)
const [previewCount, setPreviewCount] = useState(0)
const [error, setError] = useState<string | null>(null)
const [importing, setImporting] = useState(false)
function resetState() {
setPendingFile(null)
setPreviewCount(0)
setError(null)
setImporting(false)
if (fileRef.current) fileRef.current.value = ""
}
function handleOpenChange(next: boolean) {
if (!next) resetState()
onOpenChange(next)
}
function handleFileSelect() {
fileRef.current?.click()
}
async function handleFileChange(e: React.ChangeEvent<HTMLInputElement>) {
const file = e.target.files?.[0]
if (!file) return
setError(null)
setPendingFile(file)
try {
const parsed = await parseContactFile(file)
setPreviewCount(parsed.length)
if (parsed.length === 0) {
setError("Aucun contact trouvé dans ce fichier.")
}
} catch {
setError("Impossible de lire ce fichier.")
setPreviewCount(0)
}
}
async function handleImport() {
if (!pendingFile || previewCount === 0) return
setImporting(true)
setError(null)
try {
const parsed = await parseContactFile(pendingFile)
const count = addContacts(parsed)
if (count === 0) {
setError("Aucun contact importé.")
return
}
handleOpenChange(false)
} catch {
setError("L'import a échoué. Vérifiez le format du fichier.")
} finally {
setImporting(false)
}
}
return (
<Dialog open={open} onOpenChange={handleOpenChange}>
<DialogContent className="sm:max-w-md">
<DialogHeader>
<div className="flex items-center justify-between">
<DialogTitle>Importer des contacts</DialogTitle>
<Info className={cn("h-5 w-5", CONTACTS_PANEL_MUTED_ICON_CLASS)} />
</div>
</DialogHeader>
<div className="space-y-4 py-2">
<p className={cn("text-sm", CONTACTS_HEADING_TEXT)}>
Pour commencer, sélectionnez un fichier.
<br />
Utilisez le format CSV ou vCard (.vcf).
</p>
<Button type="button" onClick={handleFileSelect} className={CONTACTS_PRIMARY_BTN_CLASS}>
Sélectionner un fichier
</Button>
<input
ref={fileRef}
type="file"
accept=".csv,.vcf,.vcard,text/vcard,text/csv"
className="hidden"
onChange={handleFileChange}
/>
{pendingFile && previewCount > 0 && (
<p className={cn("text-sm", CONTACTS_HEADING_TEXT)}>
{previewCount} contact{previewCount > 1 ? "s" : ""} prêt
{previewCount > 1 ? "s" : ""} à importer depuis{" "}
<span className="font-medium">{pendingFile.name}</span>
</p>
)}
{error && <p className="text-sm text-red-600">{error}</p>}
<p className={cn("text-xs", CONTACTS_MUTED_TEXT)}>
Vous essayez de sauvegarder les contacts de votre mobile ?
<br />
<span className="cursor-pointer text-primary">Voici comment les synchroniser.</span>
</p>
</div>
<div className="flex justify-end gap-3">
<Button
type="button"
variant="ghost"
onClick={() => handleOpenChange(false)}
className={CONTACTS_PAGE_LINK_BTN_CLASS}
>
Non, ne rien faire
</Button>
<Button
type="button"
onClick={handleImport}
disabled={!pendingFile || previewCount === 0 || importing}
className="text-sm font-medium"
>
{importing ? "Importation…" : "Importer"}
</Button>
</div>
</DialogContent>
</Dialog>
)
}