114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import { useForm } from 'react-hook-form'
|
|
import { zodResolver } from '@hookform/resolvers/zod'
|
|
import * as z from 'zod'
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from '@/components/ui/dialog'
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Button } from '@/components/ui/button'
|
|
import { createUser } from '@/lib/actions/users'
|
|
import { Plus } from 'lucide-react'
|
|
|
|
const userSchema = z.object({
|
|
email: z.string().email('Ungültige E-Mail-Adresse'),
|
|
password: z.string().min(6, 'Passwort muss mindestens 6 Zeichen lang sein').optional(),
|
|
})
|
|
|
|
type UserFormValues = z.infer<typeof userSchema>
|
|
|
|
export function UserDialog() {
|
|
const [open, setOpen] = useState(false)
|
|
const router = useRouter()
|
|
|
|
const form = useForm<UserFormValues>({
|
|
resolver: zodResolver(userSchema) as any,
|
|
defaultValues: {
|
|
email: '',
|
|
password: '',
|
|
},
|
|
})
|
|
|
|
async function onSubmit(values: UserFormValues) {
|
|
try {
|
|
await createUser(values)
|
|
setOpen(false)
|
|
form.reset()
|
|
router.refresh()
|
|
} catch (error) {
|
|
console.error('Error creating user:', error)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button className="bg-primary hover:bg-primary/90">
|
|
<Plus className="mr-2 h-4 w-4" /> Benutzer neu anlegen
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="glass-dark border-white/10 text-white shadow-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle>Neuen Benutzer anlegen</DialogTitle>
|
|
<DialogDescription className="text-slate-300">
|
|
Geben Sie die E-Mail und optional ein Passwort für den neuen Benutzer ein.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-white">E-Mail</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="user@example.com" className="bg-white/5 border-white/10 text-white" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel className="text-white">Passwort (optional)</FormLabel>
|
|
<FormControl>
|
|
<Input type="password" placeholder="Passwort leer lassen für Zufall" className="bg-white/5 border-white/10 text-white" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<DialogFooter>
|
|
<Button type="submit" className="w-full bg-primary hover:bg-primary/90">
|
|
Benutzer erstellen
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|