166 lines
4.7 KiB
TypeScript
166 lines
4.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { useToast } from "@/components/ui/use-toast";
|
|
import { Lock } from "lucide-react";
|
|
import type { AdminUserData } from "@/lib/services/admin.service";
|
|
|
|
interface ResetPasswordDialogProps {
|
|
user: AdminUserData;
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
onSuccess: () => void;
|
|
}
|
|
|
|
export function ResetPasswordDialog({
|
|
user,
|
|
open,
|
|
onOpenChange,
|
|
onSuccess,
|
|
}: ResetPasswordDialogProps) {
|
|
const [newPassword, setNewPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const { toast } = useToast();
|
|
|
|
const handleSubmit = async () => {
|
|
if (!newPassword || !confirmPassword) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Erreur",
|
|
description: "Veuillez remplir tous les champs",
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (newPassword !== confirmPassword) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Erreur",
|
|
description: "Les mots de passe ne correspondent pas",
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (newPassword.length < 8) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Erreur",
|
|
description: "Le mot de passe doit contenir au moins 8 caractères",
|
|
});
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
|
|
try {
|
|
const response = await fetch(`/api/admin/users/${user.id}/password`, {
|
|
method: "PUT",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ newPassword }),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
const data = await response.json();
|
|
throw new Error(data.error || "Erreur lors de la réinitialisation");
|
|
}
|
|
|
|
toast({
|
|
title: "Succès",
|
|
description: "Le mot de passe a été réinitialisé",
|
|
});
|
|
|
|
setNewPassword("");
|
|
setConfirmPassword("");
|
|
onSuccess();
|
|
} catch (error) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Erreur",
|
|
description: error instanceof Error ? error.message : "Une erreur est survenue",
|
|
});
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleOpenChange = (open: boolean) => {
|
|
if (!open) {
|
|
setNewPassword("");
|
|
setConfirmPassword("");
|
|
}
|
|
onOpenChange(open);
|
|
};
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Réinitialiser le mot de passe</DialogTitle>
|
|
<DialogDescription>
|
|
Définir un nouveau mot de passe pour <strong>{user.email}</strong>
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-4 py-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="newPassword">Nouveau mot de passe</Label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="newPassword"
|
|
type="password"
|
|
value={newPassword}
|
|
onChange={(e) => setNewPassword(e.target.value)}
|
|
className="pl-9"
|
|
placeholder="Minimum 8 caractères"
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="confirmPassword">Confirmer le mot de passe</Label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="confirmPassword"
|
|
type="password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
className="pl-9"
|
|
placeholder="Confirmer le nouveau mot de passe"
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
Le mot de passe doit contenir au moins 8 caractères, une majuscule et un chiffre.
|
|
</p>
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => handleOpenChange(false)} disabled={isLoading}>
|
|
Annuler
|
|
</Button>
|
|
<Button onClick={handleSubmit} disabled={isLoading}>
|
|
{isLoading ? "Réinitialisation..." : "Réinitialiser"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|