Files
twotalesanimation 0fbe856dce Initial commit
2026-05-19 22:20:29 +02:00

153 lines
5.3 KiB
TypeScript

"use client";
import { useState } from "react";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { createUser } from "@/actions/users";
import { useToast } from "@/components/ui/use-toast";
import { Eye, EyeOff } from "lucide-react";
interface NewUserDialogProps {
open: boolean;
onClose: () => void;
onSuccess?: () => void;
}
export function NewUserDialog({ open, onClose, onSuccess }: NewUserDialogProps) {
const { toast } = useToast();
const [isSubmitting, setIsSubmitting] = useState(false);
const [showPassword, setShowPassword] = useState(false);
const [form, setForm] = useState({
name: "",
email: "",
password: "",
role: "ARTIST",
});
const [errors, setErrors] = useState<Record<string, string>>({});
const validate = () => {
const e: Record<string, string> = {};
if (!form.email.trim()) e.email = "Email is required";
else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(form.email)) e.email = "Invalid email";
if (!form.password) e.password = "Password is required";
else if (form.password.length < 8) e.password = "At least 8 characters";
return e;
};
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
const errs = validate();
if (Object.keys(errs).length) { setErrors(errs); return; }
setIsSubmitting(true);
try {
await createUser({
name: form.name || undefined,
email: form.email.trim().toLowerCase(),
password: form.password,
role: form.role as "ADMIN" | "PRODUCER" | "SUPERVISOR" | "ARTIST" | "CLIENT",
});
toast({ title: "User created" });
setForm({ name: "", email: "", password: "", role: "ARTIST" });
setErrors({});
onSuccess?.();
onClose();
} catch (err) {
toast({ title: "Failed to create user", description: err instanceof Error ? err.message : undefined, variant: "destructive" });
} finally {
setIsSubmitting(false);
}
};
const set = (key: string, value: string) => {
setForm((f) => ({ ...f, [key]: value }));
setErrors((e) => { const n = { ...e }; delete n[key]; return n; });
};
return (
<Dialog open={open} onOpenChange={(v) => !v && onClose()}>
<DialogContent className="max-w-md">
<DialogHeader>
<DialogTitle>New User</DialogTitle>
</DialogHeader>
<form onSubmit={handleSubmit} className="space-y-4 py-2">
<div className="space-y-1.5">
<Label>Name <span className="text-zinc-500 font-normal">(optional)</span></Label>
<Input value={form.name} onChange={(e) => set("name", e.target.value)} placeholder="Jane Smith" />
</div>
<div className="space-y-1.5">
<Label>Email <span className="text-red-400">*</span></Label>
<Input
type="email"
value={form.email}
onChange={(e) => set("email", e.target.value)}
placeholder="jane@studio.com"
autoComplete="off"
/>
{errors.email && <p className="text-xs text-destructive">{errors.email}</p>}
</div>
<div className="space-y-1.5">
<Label>Password <span className="text-red-400">*</span></Label>
<div className="relative">
<Input
type={showPassword ? "text" : "password"}
value={form.password}
onChange={(e) => set("password", e.target.value)}
placeholder="Min. 8 characters"
autoComplete="new-password"
className="pr-10"
/>
<button
type="button"
onClick={() => setShowPassword((s) => !s)}
className="absolute right-3 top-1/2 -translate-y-1/2 text-zinc-400 hover:text-zinc-200"
tabIndex={-1}
>
{showPassword ? <EyeOff className="h-4 w-4" /> : <Eye className="h-4 w-4" />}
</button>
</div>
{errors.password && <p className="text-xs text-destructive">{errors.password}</p>}
</div>
<div className="space-y-1.5">
<Label>Role</Label>
<Select value={form.role} onValueChange={(v) => set("role", v)}>
<SelectTrigger><SelectValue /></SelectTrigger>
<SelectContent>
<SelectItem value="ADMIN">Admin</SelectItem>
<SelectItem value="PRODUCER">Producer</SelectItem>
<SelectItem value="SUPERVISOR">Supervisor</SelectItem>
<SelectItem value="ARTIST">Artist</SelectItem>
<SelectItem value="CLIENT">Client</SelectItem>
</SelectContent>
</Select>
</div>
<DialogFooter className="pt-2">
<Button type="button" variant="outline" onClick={onClose}>Cancel</Button>
<Button type="submit" disabled={isSubmitting}>
{isSubmitting ? "Creating…" : "Create User"}
</Button>
</DialogFooter>
</form>
</DialogContent>
</Dialog>
);
}