Organize/components/admin/change-password-dialog.tsx

107 lines
3.0 KiB
TypeScript

"use client";
import { useState } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { updateUserPassword } from "@/lib/actions/admin";
export function ChangePasswordDialog({
userId,
userLabel,
open,
onOpenChange,
}: {
userId: string;
userLabel: string;
open: boolean;
onOpenChange: (open: boolean) => void;
}) {
const [password, setPassword] = useState("");
const [confirm, setConfirm] = useState("");
const [error, setError] = useState<string | undefined>();
const [pending, setPending] = useState(false);
function handleOpenChange(next: boolean) {
if (next) {
setPassword("");
setConfirm("");
setError(undefined);
}
onOpenChange(next);
}
async function handleSave() {
if (password.length < 8) {
setError("Password must be at least 8 characters");
return;
}
if (password !== confirm) {
setError("Passwords don't match");
return;
}
setPending(true);
setError(undefined);
const result = await updateUserPassword(userId, password);
setPending(false);
if (result?.error) {
setError(result.error);
return;
}
onOpenChange(false);
}
return (
<Dialog open={open} onOpenChange={handleOpenChange}>
<DialogContent>
<DialogHeader>
<DialogTitle>Change password</DialogTitle>
<DialogDescription>Set a new password for {userLabel}.</DialogDescription>
</DialogHeader>
<div className="space-y-3">
<div className="space-y-2">
<Label htmlFor={`new-password-${userId}`}>New password</Label>
<Input
id={`new-password-${userId}`}
type="password"
value={password}
autoFocus
autoComplete="new-password"
onChange={(e) => setPassword(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor={`confirm-password-${userId}`}>Confirm password</Label>
<Input
id={`confirm-password-${userId}`}
type="password"
value={confirm}
autoComplete="new-password"
onChange={(e) => setConfirm(e.target.value)}
onKeyDown={(e) => e.key === "Enter" && handleSave()}
/>
</div>
{error && <p className="text-sm text-destructive">{error}</p>}
</div>
<DialogFooter>
<Button variant="outline" onClick={() => onOpenChange(false)} disabled={pending}>
Cancel
</Button>
<Button onClick={handleSave} disabled={pending || !password || !confirm}>
{pending ? "Saving…" : "Save"}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}