Files

67 lines
1.9 KiB
TypeScript

"use client";
import { useState } from "react";
import { Button } from "@/components/ui/button";
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog";
import { deleteUser } from "../actions";
export default function DeleteUserButton({
userId,
currentUserId,
}: {
userId: string;
currentUserId: string;
}) {
const [open, setOpen] = useState(false);
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
if (userId === currentUserId) {
return null;
}
async function handleDelete() {
setLoading(true);
setError(null);
try {
await deleteUser(userId);
} catch (err: any) {
setError(err.message || "Une erreur est survenue");
setLoading(false);
}
}
return (
<>
<Button variant="destructive" onClick={() => setOpen(true)}>
Supprimer
</Button>
<Dialog open={open} onOpenChange={setOpen}>
<DialogContent>
<DialogHeader>
<DialogTitle>Confirmer la suppression</DialogTitle>
</DialogHeader>
<div className="space-y-4">
<p className="text-sm text-muted-foreground">
Êtes-vous sûr de vouloir supprimer cet utilisateur ? Cette action est irréversible.
</p>
{error && (
<div className="rounded-md bg-destructive/10 p-3 text-sm text-destructive">
{error}
</div>
)}
<div className="flex justify-end gap-2">
<Button variant="outline" onClick={() => setOpen(false)} disabled={loading}>
Annuler
</Button>
<Button variant="destructive" onClick={handleDelete} disabled={loading}>
{loading ? "Suppression..." : "Supprimer"}
</Button>
</div>
</div>
</DialogContent>
</Dialog>
</>
);
}