aitasker / frontend /src /components /auth /AuthModal.tsx
minhhungg's picture
feat: upload dataset and simulation files to Hugging Face
675f6bd
Raw
History Blame Contribute Delete
20.2 kB
import { useState, useEffect } from 'react';
import { Formik, Form, Field, ErrorMessage } from 'formik';
import * as Yup from 'yup';
import { useAuth } from '@hooks/use-auth';
import { RegisterRoleSwitcher } from '@components/layout/RoleSwitcher';
import { Button } from '@components/ui/button';
import { Input, Label } from '@components/ui/input';
import { Checkbox } from '@components/ui/Checkbox';
import type { UserRoleItem } from '@t/enums';
import { CheckCircle2, XCircle, Loader2, Target, Settings, Search, Eye, EyeOff, X } from 'lucide-react';
// ── Validation Schemas ───────────────────────────────────────────────────────
const loginSchema = Yup.object({
email: Yup.string()
.email('Please enter a valid email address.')
.required('Email is required.'),
password: Yup.string()
.min(5, 'Password must be at least 5 characters.')
.required('Password is required.'),
});
const registerSchema = Yup.object({
fullName: Yup.string()
.min(2, 'Full name must be at least 2 characters.')
.required('Full name is required.'),
email: Yup.string()
.email('Please enter a valid email address.')
.required('Email is required.'),
password: Yup.string()
.min(6, 'Password must be at least 6 characters.')
.required('Password is required.'),
phone: Yup.string()
.matches(/^[0-9+\-\s()]*$/, 'Please enter a valid phone number.')
.nullable(),
});
// ── Types ────────────────────────────────────────────────────────────────────
interface AuthModalProps {
isOpen: boolean;
onClose: () => void;
initialMode?: 'signin' | 'signup';
}
export default function AuthModal({ isOpen, onClose, initialMode = 'signin' }: AuthModalProps) {
const [showPassword, setShowPassword] = useState(false);
const [mode, setMode] = useState<'signin' | 'signup'>(initialMode);
const { login, register, isAuthenticated } = useAuth();
const rememberedEmail = typeof window !== 'undefined' ? localStorage.getItem('aitasker-remembered-email') || '' : '';
useEffect(() => {
if (isOpen) {
setMode(initialMode);
setShowPassword(false);
}
}, [isOpen, initialMode]);
// Auto-close upon successful authentication
useEffect(() => {
if (isAuthenticated && isOpen) onClose();
}, [isAuthenticated, isOpen, onClose]);
if (!isOpen) return null;
const loginError = login.isError
? ((login.error as any)?.response?.data?.message ?? 'Invalid email or password.')
: null;
const registerError = register.isError
? ((register.error as any)?.response?.data?.message ?? 'Something went wrong. Please try again.')
: null;
return (
<div className="fixed inset-0 z-[100] flex items-center justify-center bg-black/40 backdrop-blur-sm p-4">
<div className="relative w-full max-w-[448px] md:max-w-[800px] lg:max-w-[900px] bg-surface rounded-xl border border-outline-variant shadow-xl animate-in fade-in zoom-in-95 duration-200 overflow-hidden max-h-[90vh] flex flex-col md:flex-row">
{/* Left Side: Image Container / Graphic */}
<div className="hidden md:flex md:w-5/12 bg-primary relative overflow-hidden flex-col items-center justify-center p-8 border-r border-slate-800">
{/* Dot Grid Background */}
<div
className="absolute inset-0 z-0 opacity-20 pointer-events-none"
style={{ backgroundImage: 'radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px)', backgroundSize: '24px 24px' }}
></div>
{/* Background decorative elements */}
<div className="absolute top-0 right-0 -mr-20 -mt-20 w-64 h-64 bg-accent rounded-full mix-blend-multiply filter blur-3xl opacity-20 animate-pulse"></div>
<div className="absolute bottom-0 left-0 -ml-20 -mb-20 w-64 h-64 bg-blue-500 rounded-full mix-blend-multiply filter blur-3xl opacity-20 animate-pulse" style={{ animationDelay: '2s' }}></div>
<div className="relative w-full max-w-[280px] aspect-[4/5] mt-8 flex items-center justify-center">
{/* Main Match Card */}
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-full bg-surface/10 backdrop-blur-xl border border-white/10 rounded-3xl p-6 shadow-2xl z-20 hover:scale-105 transition-transform duration-500">
<div className="flex items-center gap-4 mb-6">
<div className="w-12 h-12 rounded-xl bg-gradient-to-tr from-accent to-emerald-400 p-[2px] shadow-accent-glow">
<div className="w-full h-full bg-primary-dark rounded-xl flex items-center justify-center">
<Target className="w-6 h-6 text-accent" />
</div>
</div>
<div>
<h4 className="text-white font-headline text-base font-bold">AITasker</h4>
<p className="text-accent text-xs font-mono mt-0.5">Automated Quality</p>
</div>
</div>
<div className="space-y-4">
<div>
<div className="flex justify-between text-xs text-slate-400 mb-1 font-medium">
<span>Vetted Experts</span>
<span className="text-white">100%</span>
</div>
<div className="h-1.5 w-full bg-white/10 rounded-full overflow-hidden"><div className="h-full bg-accent w-full rounded-full"></div></div>
</div>
<div>
<div className="flex justify-between text-xs text-slate-400 mb-1 font-medium">
<span>Escrow Protection</span>
<span className="text-white">Active</span>
</div>
<div className="h-1.5 w-full bg-white/10 rounded-full overflow-hidden"><div className="h-full bg-blue-400 w-full rounded-full"></div></div>
</div>
</div>
</div>
{/* Floating Tech Pill 1 */}
<div className="absolute top-[10%] left-[-10%] bg-surface/10 backdrop-blur-md border border-white/10 rounded-full px-4 py-2.5 flex items-center gap-2 shadow-[0_8px_32px_rgba(0,0,0,0.2)] transform -rotate-6 hover:rotate-0 hover:scale-105 transition-transform z-10">
<div className="w-6 h-6 rounded-full bg-purple-500/20 flex items-center justify-center">
<Settings className="w-3 h-3 text-purple-400" />
</div>
<span className="text-white text-xs font-headline font-bold">Smart Match</span>
</div>
{/* Floating Tech Pill 2 */}
<div className="absolute bottom-[10%] right-[-10%] bg-surface/10 backdrop-blur-md border border-white/10 rounded-full px-4 py-2.5 flex items-center gap-2 shadow-[0_8px_32px_rgba(0,0,0,0.2)] transform rotate-3 hover:rotate-0 hover:scale-105 transition-transform z-30">
<div className="w-6 h-6 rounded-full bg-blue-500/20 flex items-center justify-center">
<Search className="w-3 h-3 text-blue-400" />
</div>
<span className="text-white text-xs font-headline font-bold">Expert AI</span>
</div>
</div>
</div>
{/* Right Side: Form Area */}
<div className="w-full md:w-7/12 p-6 sm:p-10 overflow-y-auto relative">
{/* Close Button */}
<button
onClick={onClose}
aria-label="Close modal"
className="absolute top-4 right-4 p-2 rounded-full text-on-surface-variant hover:bg-surface-container-low hover:text-on-surface transition-colors z-50"
>
<X className="w-5 h-5" />
</button>
<div className="mb-8 md:mt-2 text-center md:text-left">
<h2 className="font-headline text-3xl font-bold text-primary mb-2">
{mode === 'signin' && 'Sign In'}
{mode === 'signup' && 'Create Account'}
</h2>
<p className="text-sm text-on-surface-variant">
{mode === 'signin' && 'Please enter your details below.'}
{mode === 'signup' && 'Get started by filling out the form below.'}
</p>
</div>
{/* ── Sign In Form ── */}
{mode === 'signin' && (
<Formik
initialValues={{ email: rememberedEmail, password: '', rememberMe: !!rememberedEmail }}
validationSchema={loginSchema}
onSubmit={(values, { setSubmitting }) => {
if (values.rememberMe) {
localStorage.setItem('aitasker-remembered-email', values.email);
} else {
localStorage.removeItem('aitasker-remembered-email');
}
login.mutate({ email: values.email, password: values.password }, {
onSettled: () => setSubmitting(false),
onSuccess: () => onClose(),
});
}}
>
{({ isSubmitting }) => (
<Form className="space-y-4" noValidate>
<div>
<Label htmlFor="email">Email address</Label>
<Field name="email">
{({ field, meta }: any) => (
<Input
{...field}
id="email"
type="email"
placeholder="you@example.com"
disabled={login.isPending}
onFocus={() => login.isError && login.reset()}
error={meta.touched && !!meta.error}
/>
)}
</Field>
<ErrorMessage name="email" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
<div>
<Label htmlFor="password">Password</Label>
<Field name="password">
{({ field, meta }: any) => (
<div className="relative">
<Input
{...field}
id="password"
type={showPassword ? "text" : "password"}
placeholder="••••••••"
disabled={login.isPending}
onFocus={() => login.isError && login.reset()}
error={meta.touched && !!meta.error}
className="pr-10"
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
aria-label={showPassword ? "Hide password" : "Show password"}
className="absolute inset-y-0 right-0 pr-3 flex items-center text-on-surface-variant hover:text-primary transition-colors focus:outline-none"
>
{showPassword ? (
<EyeOff className="h-5 w-5" />
) : (
<Eye className="h-5 w-5" />
)}
</button>
</div>
)}
</Field>
<ErrorMessage name="password" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
<div className="flex items-center justify-between">
<div className="flex items-center">
<Field name="rememberMe" type="checkbox">
{({ field }: any) => (
<Checkbox id="remember-me" {...field} />
)}
</Field>
<Label className="ml-2 mb-0" htmlFor="remember-me">Remember me</Label>
</div>
<a href="#" className="font-label-sm text-label-sm text-primary-container hover:text-primary transition-colors">Forgot Password?</a>
</div>
{loginError && <div className="bg-error-container text-on-error-container font-label-sm text-sm p-2 rounded-md text-center text-red-600">{loginError}</div>}
<Button
type="submit"
disabled={login.isPending || isSubmitting}
className="w-full py-3 px-4 rounded-lg shadow-sm hover:shadow-md mt-2"
>
{login.isPending ? 'Signing in...' : 'Sign in'}
</Button>
</Form>
)}
</Formik>
)}
{/* ── Sign Up Form ── */}
{mode === 'signup' && (
<div className="space-y-4">
<Formik
initialValues={{ fullName: '', email: '', password: '', phone: undefined, selfTechnical: false, role: 'CLIENT_CEO' as UserRoleItem }}
validationSchema={registerSchema}
onSubmit={(values, { setSubmitting }) => {
const { role, ...rest } = values;
register.mutate({ ...rest, roles: role }, {
onSettled: () => setSubmitting(false),
onSuccess: () => onClose(),
});
}}
>
{({ isSubmitting, values, setFieldValue }) => (
<Form className="space-y-4" noValidate>
<RegisterRoleSwitcher
value={values.role}
onChange={(role) => setFieldValue('role', role)}
/>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<Label htmlFor="fullName">Full name</Label>
<Field name="fullName">
{({ field, meta }: any) => (
<Input
{...field}
id="fullname"
type="text"
placeholder="Jane Doe"
disabled={register.isPending}
onFocus={() => register.isError && register.reset()}
error={meta.touched && !!meta.error}
/>
)}
</Field>
<ErrorMessage name="fullName" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
<div>
<Label htmlFor="email">Email address</Label>
<Field name="email">
{({ field, meta }: any) => (
<Input
{...field}
id="email"
type="email"
placeholder="you@example.com"
disabled={register.isPending}
onFocus={() => register.isError && register.reset()}
error={meta.touched && !!meta.error}
/>
)}
</Field>
<ErrorMessage name="email" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
<div>
<Label htmlFor="password">Password</Label>
<Field name="password">
{({ field, meta }: any) => (
<div className="relative">
<Input
{...field}
id="password"
type={showPassword ? "text" : "password"}
placeholder="••••••••"
disabled={register.isPending}
onFocus={() => register.isError && register.reset()}
error={meta.touched && !!meta.error}
className="pr-10"
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
aria-label={showPassword ? "Hide password" : "Show password"}
className="absolute inset-y-0 right-0 pr-3 flex items-center text-on-surface-variant hover:text-primary transition-colors focus:outline-none"
>
{showPassword ? (
<EyeOff className="h-5 w-5" />
) : (
<Eye className="h-5 w-5" />
)}
</button>
</div>
)}
</Field>
<ErrorMessage name="password" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
<div>
<Label htmlFor="phone">
Phone number <span className="text-on-surface-variant font-normal">(optional)</span>
</Label>
<Field name="phone">
{({ field, meta }: any) => (
<Input
{...field}
id="phone"
type="tel"
placeholder="+1 (555) 000-0000"
disabled={register.isPending}
onFocus={() => register.isError && register.reset()}
error={meta.touched && !!meta.error}
/>
)}
</Field>
<ErrorMessage name="phone" component="p" className="mt-1 text-xs font-semibold text-error" />
</div>
{values.role === 'CLIENT_CEO' && (
<div className="md:col-span-2 flex items-center gap-2 mt-2">
<Field name="selfTechnical" type="checkbox">
{({ field }: any) => (
<Checkbox id="selfTechnical" {...field} />
)}
</Field>
<Label className="mb-0" htmlFor="selfTechnical">I have technical expertise</Label>
</div>
)}
</div>
{registerError && <div className="bg-error-container text-on-error-container font-label-sm text-sm p-2 rounded-md text-center text-red-600">{registerError}</div>}
<Button
type="submit"
disabled={register.isPending || isSubmitting}
className="w-full py-3 px-4 rounded-lg shadow-sm hover:shadow-md mt-2"
>
{register.isPending ? 'Creating account...' : (
<span className="flex items-center justify-center">
Sign up as <span className="text-accent font-extrabold ml-1.5 uppercase tracking-wide">{values.role === 'EXPERT' ? 'Expert' : 'Client'}</span>
</span>
)}
</Button>
</Form>
)}
</Formik>
</div>
)}
{/* ── Shared Social / Footer ── */}
{/* Mode Toggler */}
<p className="mt-6 text-center font-label-md text-label-md text-on-surface-variant">
{mode === 'signin' ? "Don't have an account? " : "Already have an account? "}
<button
type="button"
onClick={() => setMode(mode === 'signin' ? 'signup' : 'signin')}
className="font-bold text-primary hover:underline"
>
{mode === 'signin' ? 'Sign up' : 'Sign in'}
</button>
</p>
</div>
</div>
</div>
);
}