'use client' import { infer as zInfer } from 'zod' import { useState, useTransition } from 'react' import { useForm } from 'react-hook-form' import { zodResolver } from '@hookform/resolvers/zod' import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from '@/components/ui/form' import { Input } from '@/components/ui/input' import { CardWrapper } from '@/components/auth/CardWrapper' import { useI18n } from '@/locales/client' import { Button } from '@/components/ui/button' import FormError from '@/components/FormError' import FormSuccess from '@/components/FormSuccess' import { register } from '@/actions/register' import { RegisterSchema } from '@/schemas' import { AUTH_LOGIN_URL } from '@/config/routes' export const RegisterForm = () => { // const [currentPassword, setCurrentPassword] = useState('') // const [password, setPassword] = useState('') // const [passwordConfirmation, setPasswordConfirmation] = useState('') const [error, setError] = useState('') const [success, setSuccess] = useState('') const [isPending, startTransition] = useTransition() const t = useI18n() const form = useForm>({ resolver: zodResolver(RegisterSchema), defaultValues: { email: '', password: '', name: '', }, }) const onSubmit = (values: zInfer) => { setError('') setSuccess('') startTransition(() => { register(values).then((data) => { // @ts-ignore setError(t(data?.error)) // @ts-ignore setSuccess(t(data?.success)) }) }) } return (
{/*Name*/} ( {t('form.label.name')} )}/> {/*Email*/} ( {t('form.label.email')} )}/> {/*Password*/} ( {t('form.label.password')} )}/>
) }