174 lines
7.1 KiB
TypeScript
174 lines
7.1 KiB
TypeScript
'use client';
|
|
import IconLockDots from '@/components/icon/icon-lock-dots';
|
|
import IconMail from '@/components/icon/icon-mail';
|
|
import IconEye from '@/components/icon/icon-eye';
|
|
import IconUser from '@/components/icon/icon-user';
|
|
import { useRouter } from 'next/navigation';
|
|
import React, { useState } from 'react';
|
|
import axios from 'axios';
|
|
import Cookies from 'universal-cookie';
|
|
import { buildApiUrl } from '@/utils/BaseUrl.utils';
|
|
|
|
const cookies = new Cookies();
|
|
|
|
const SignupForm = () => {
|
|
const router = useRouter();
|
|
|
|
const [formData, setFormData] = useState({
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
confirmPassword: '',
|
|
});
|
|
const [loading, setLoading] = useState(false);
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [errors, setErrors] = useState<{ name?: string; email?: string; password?: string; confirmPassword?: string }>({});
|
|
const [generalError, setGeneralError] = useState('');
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const { name, value } = e.target;
|
|
setFormData((prev) => ({ ...prev, [name]: value }));
|
|
setErrors((prev) => ({ ...prev, [name]: '' }));
|
|
setGeneralError('');
|
|
};
|
|
|
|
const validate = () => {
|
|
const newErrors: { name?: string; email?: string; password?: string; confirmPassword?: string } = {};
|
|
if (!formData.name.trim()) newErrors.name = 'Name is required';
|
|
if (!formData.email.trim()) newErrors.email = 'Email is required';
|
|
if (!formData.password.trim()) newErrors.password = 'Password is required';
|
|
if (formData.password !== formData.confirmPassword) newErrors.confirmPassword = 'Passwords do not match';
|
|
return newErrors;
|
|
};
|
|
|
|
const submitForm = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
const validation = validate();
|
|
if (Object.keys(validation).length > 0) {
|
|
setErrors(validation);
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
setGeneralError('');
|
|
|
|
try {
|
|
const payload = { name: formData.name, email: formData.email, password: formData.password };
|
|
const response = await axios.post(buildApiUrl('auth/register'), payload);
|
|
|
|
if (response.data.success && response.data.data?.token) {
|
|
cookies.set('token', response.data.data.token, { path: '/' });
|
|
cookies.set('user', JSON.stringify(response.data.data.user), { path: '/' });
|
|
router.push('/');
|
|
return;
|
|
}
|
|
|
|
setGeneralError(response.data.message || 'Unable to register');
|
|
} catch (error: any) {
|
|
console.error('Signup error', error);
|
|
const serverMessage = error.response?.data?.message || error.response?.data?.error || error.message;
|
|
setGeneralError(serverMessage || 'Unable to register');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<form className="space-y-5 dark:text-white" onSubmit={submitForm}>
|
|
{generalError && <p className="text-red-500 text-sm mt-1">{generalError}</p>}
|
|
<div>
|
|
<label htmlFor="Name">Name</label>
|
|
<div className="relative text-white-dark">
|
|
<input
|
|
id="Name"
|
|
name="name"
|
|
type="text"
|
|
placeholder="Enter Name"
|
|
className="form-input ps-10 placeholder:text-white-dark"
|
|
value={formData.name}
|
|
onChange={handleChange}
|
|
/>
|
|
<span className="absolute start-4 top-1/2 -translate-y-1/2">
|
|
<IconUser fill={true} />
|
|
</span>
|
|
</div>
|
|
{errors.name && <p className="text-red-500 text-sm mt-1">{errors.name}</p>}
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="Email">Email</label>
|
|
<div className="relative text-white-dark">
|
|
<input
|
|
id="Email"
|
|
name="email"
|
|
type="email"
|
|
placeholder="Enter Email"
|
|
className="form-input ps-10 placeholder:text-white-dark"
|
|
value={formData.email}
|
|
onChange={handleChange}
|
|
/>
|
|
<span className="absolute start-4 top-1/2 -translate-y-1/2">
|
|
<IconMail fill={true} />
|
|
</span>
|
|
</div>
|
|
{errors.email && <p className="text-red-500 text-sm mt-1">{errors.email}</p>}
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="Password">Password</label>
|
|
<div className="relative text-white-dark">
|
|
<input
|
|
id="Password"
|
|
name="password"
|
|
type={showPassword ? 'text' : 'password'}
|
|
placeholder="Enter Password"
|
|
className="form-input ps-10 pe-10 placeholder:text-white-dark"
|
|
value={formData.password}
|
|
onChange={handleChange}
|
|
/>
|
|
<span className="absolute start-4 top-1/2 -translate-y-1/2">
|
|
<IconLockDots fill={true} />
|
|
</span>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className={`absolute end-4 top-1/2 -translate-y-1/2 hover:text-black dark:hover:text-white ${showPassword ? 'text-black dark:text-white' : ''}`}
|
|
>
|
|
<IconEye />
|
|
</button>
|
|
</div>
|
|
{errors.password && <p className="text-red-500 text-sm mt-1">{errors.password}</p>}
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="ConfirmPassword">Confirm Password</label>
|
|
<div className="relative text-white-dark">
|
|
<input
|
|
id="ConfirmPassword"
|
|
name="confirmPassword"
|
|
type={showPassword ? 'text' : 'password'}
|
|
placeholder="Confirm Password"
|
|
className="form-input ps-10 placeholder:text-white-dark"
|
|
value={formData.confirmPassword}
|
|
onChange={handleChange}
|
|
/>
|
|
<span className="absolute start-4 top-1/2 -translate-y-1/2">
|
|
<IconLockDots />
|
|
</span>
|
|
</div>
|
|
{errors.confirmPassword && <p className="text-red-500 text-sm mt-1">{errors.confirmPassword}</p>}
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
className="btn btn-gradient !mt-6 w-full border-0 uppercase shadow-[0_10px_20px_-10px_rgba(67,97,238,0.44)]"
|
|
disabled={loading}
|
|
>
|
|
{loading ? 'Signing up...' : 'Sign up'}
|
|
</button>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default SignupForm;
|