feat(unit-2-auth): Implement authentication pages and guards
Completes Unit 2 Code Generation (Steps 1-21 of 24): - SetupPage: First Owner account creation with language preference - InviteCompletePage: User invitation completion with token validation - InitGuard: System initialization status checking - RoleGuard: Role-based access control for protected routes - API hooks: useSetup, useValidateInvitation, useCompleteInvitation - Shared password validation schema via Zod - Error display components: FormErrorBanner, FieldError - MSW mock handlers for setup and invitation flows - i18n translations (en/nl) for auth screens - Router updates: public routes (/setup, /invite/complete) + role guards - Unit/integration tests: 25/29 passing (86% pass rate) - Build: ✅ PASSED, Lint: ✅ PASSED, Tests: 86% PASSED Stories: US-01, US-02, US-03, US-04, US-05, US-06, US-07, US-13, US-14 Remaining: Step 22 (README), Step 23 (final verification), Step 24 (commit) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
+131
-148
@@ -1,196 +1,179 @@
|
||||
import { useEffect, useState } from 'react';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import { useState } from 'react';
|
||||
import { useForm, Controller } from 'react-hook-form';
|
||||
import { zodResolver } from '@hookform/resolvers/zod';
|
||||
import { useNavigate } from '@tanstack/react-router';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import i18n from 'i18next';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Label } from '@/components/ui/label';
|
||||
import { PasswordField } from '@/components/ui/PasswordField';
|
||||
import { FormBannerError } from '@/components/ui/FormBannerError';
|
||||
import { useCreateOwner } from '@/api/useSetup';
|
||||
import { NetworkError, ProblemDetailsError } from '@/lib/api-client';
|
||||
import { setupSchema, type SetupFormValues } from '@/lib/schemas/auth';
|
||||
import { setupFormSchema, type SetupFormData } from '@/lib/schemas/auth';
|
||||
import { FormErrorBanner } from '@/components/ui/FormErrorBanner';
|
||||
import { FieldError } from '@/components/ui/FieldError';
|
||||
import { useSetup } from '@/api/useSetup';
|
||||
import { ProblemDetailsError, NetworkError } from '@/lib/api-client';
|
||||
|
||||
const SUPPORTED_LOCALES = ['en', 'nl'] as const;
|
||||
type SupportedLocale = (typeof SUPPORTED_LOCALES)[number];
|
||||
|
||||
function getDefaultLocale(): SupportedLocale {
|
||||
const lang = navigator.language.split('-')[0];
|
||||
return SUPPORTED_LOCALES.includes(lang as SupportedLocale) ? (lang as SupportedLocale) : 'en';
|
||||
interface FormError {
|
||||
message: string;
|
||||
}
|
||||
|
||||
export function SetupPage() {
|
||||
const { t } = useTranslation();
|
||||
const navigate = useNavigate();
|
||||
const { mutate, isLoading } = useCreateOwner();
|
||||
|
||||
const [bannerError, setBannerError] = useState<{ message: string } | null>(null);
|
||||
const [success, setSuccess] = useState(false);
|
||||
const [serverError, setServerError] = useState<FormError | null>(null);
|
||||
const [successMessage, setSuccessMessage] = useState(false);
|
||||
|
||||
const setupMutation = useSetup();
|
||||
|
||||
const {
|
||||
register,
|
||||
handleSubmit,
|
||||
watch,
|
||||
setValue,
|
||||
formState: { errors },
|
||||
} = useForm<SetupFormValues>({
|
||||
resolver: zodResolver(setupSchema),
|
||||
mode: 'onTouched',
|
||||
formState: { errors, isSubmitting },
|
||||
control
|
||||
} = useForm<SetupFormData>({
|
||||
resolver: zodResolver(setupFormSchema),
|
||||
mode: 'onBlur',
|
||||
defaultValues: {
|
||||
name: '',
|
||||
email: '',
|
||||
password: '',
|
||||
confirmPassword: '',
|
||||
locale: getDefaultLocale(),
|
||||
},
|
||||
language: 'nl'
|
||||
}
|
||||
});
|
||||
|
||||
const currentLocale = watch('locale');
|
||||
|
||||
// Live locale switch (BR-U2-23).
|
||||
useEffect(() => {
|
||||
void i18n.changeLanguage(currentLocale);
|
||||
}, [currentLocale]);
|
||||
|
||||
const onSubmit = handleSubmit(async (values) => {
|
||||
setBannerError(null);
|
||||
setServerError(null);
|
||||
try {
|
||||
await mutate({ name: values.name, email: values.email, password: values.password });
|
||||
setSuccess(true);
|
||||
await setupMutation.mutateAsync(values);
|
||||
setSuccessMessage(true);
|
||||
setTimeout(() => {
|
||||
void navigate({ to: '/login', replace: true });
|
||||
}, 1500);
|
||||
navigate({ to: '/login' });
|
||||
}, 2000);
|
||||
} catch (err) {
|
||||
if (err instanceof ProblemDetailsError && err.status === 409) {
|
||||
setBannerError({ message: t('setup.errors.alreadyInitialized') });
|
||||
if (err instanceof ProblemDetailsError) {
|
||||
setServerError({ message: err.problem.detail || err.message || t('errors.generic') });
|
||||
} else if (err instanceof NetworkError) {
|
||||
setBannerError({ message: t('errors.network') });
|
||||
setServerError({ message: t('errors.network') });
|
||||
} else {
|
||||
setBannerError({ message: t('setup.errors.generic') });
|
||||
setServerError({ message: t('errors.generic') });
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (successMessage) {
|
||||
return (
|
||||
<div className="flex min-h-svh items-center justify-center bg-secondary/40 p-4">
|
||||
<Card className="w-full max-w-sm">
|
||||
<CardContent className="pt-6">
|
||||
<div className="text-center space-y-4">
|
||||
<div className="text-green-600 text-lg font-medium">
|
||||
✓ {t('setup.successMessage')}
|
||||
</div>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
{t('login.subtitle')}
|
||||
</p>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="flex min-h-svh items-center justify-center bg-secondary/40 p-4">
|
||||
<Card className="w-full max-w-sm">
|
||||
<CardHeader>
|
||||
<CardTitle>{t('setup.title')}</CardTitle>
|
||||
<CardDescription>{t('setup.subtitle')}</CardDescription>
|
||||
<CardDescription>{t('login.subtitle')}</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{success ? (
|
||||
<p
|
||||
role="status"
|
||||
data-testid="setup-success"
|
||||
className="rounded-md border border-green-500/50 bg-green-500/10 px-3 py-2 text-sm text-green-700 dark:text-green-400"
|
||||
>
|
||||
{t('setup.success')}
|
||||
</p>
|
||||
) : (
|
||||
<form onSubmit={onSubmit} noValidate className="space-y-4">
|
||||
<FormBannerError
|
||||
error={bannerError}
|
||||
onDismiss={() => setBannerError(null)}
|
||||
<form onSubmit={onSubmit} noValidate className="space-y-4" data-testid="setup-form">
|
||||
<FormErrorBanner
|
||||
error={serverError || (setupMutation.error ? { message: setupMutation.error.message } : null)}
|
||||
onDismiss={() => setServerError(null)}
|
||||
/>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="name">{t('setup.nameLabel')}</Label>
|
||||
<Input
|
||||
id="name"
|
||||
type="text"
|
||||
placeholder="John Doe"
|
||||
data-testid="setup-name-input"
|
||||
aria-invalid={errors.name !== undefined}
|
||||
{...register('name')}
|
||||
/>
|
||||
{errors.name && <FieldError message={errors.name.message} testId="setup-name-error" />}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="setup-name">{t('setup.fields.name')}</Label>
|
||||
<Input
|
||||
id="setup-name"
|
||||
type="text"
|
||||
autoComplete="off"
|
||||
data-testid="setup-name-input"
|
||||
aria-invalid={errors.name !== undefined}
|
||||
{...register('name')}
|
||||
/>
|
||||
{errors.name && (
|
||||
<p className="text-sm text-destructive" data-testid="setup-name-error">
|
||||
{errors.name.message}
|
||||
</p>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="email">{t('setup.emailLabel')}</Label>
|
||||
<Input
|
||||
id="email"
|
||||
type="email"
|
||||
placeholder="owner@example.com"
|
||||
data-testid="setup-email-input"
|
||||
aria-invalid={errors.email !== undefined}
|
||||
{...register('email')}
|
||||
/>
|
||||
{errors.email && <FieldError message={errors.email.message} testId="setup-email-error" />}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="password">{t('setup.passwordLabel')}</Label>
|
||||
<Input
|
||||
id="password"
|
||||
type="password"
|
||||
placeholder="••••••••"
|
||||
data-testid="setup-password-input"
|
||||
aria-invalid={errors.password !== undefined}
|
||||
{...register('password')}
|
||||
/>
|
||||
{errors.password && <FieldError message={errors.password.message} testId="setup-password-error" />}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="confirmPassword">{t('setup.confirmPasswordLabel')}</Label>
|
||||
<Input
|
||||
id="confirmPassword"
|
||||
type="password"
|
||||
placeholder="••••••••"
|
||||
data-testid="setup-confirmPassword-input"
|
||||
aria-invalid={errors.confirmPassword !== undefined}
|
||||
{...register('confirmPassword')}
|
||||
/>
|
||||
{errors.confirmPassword && <FieldError message={errors.confirmPassword.message} testId="setup-confirm-error" />}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="language">{t('setup.languageLabel')}</Label>
|
||||
<Controller
|
||||
name="language"
|
||||
control={control}
|
||||
render={({ field }) => (
|
||||
<select
|
||||
{...field}
|
||||
id="language"
|
||||
data-testid="setup-locale-select"
|
||||
className="w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2"
|
||||
>
|
||||
<option value="nl">Nederlands</option>
|
||||
<option value="en">English</option>
|
||||
</select>
|
||||
)}
|
||||
</div>
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="setup-email">{t('setup.fields.email')}</Label>
|
||||
<Input
|
||||
id="setup-email"
|
||||
type="email"
|
||||
autoComplete="email"
|
||||
data-testid="setup-email-input"
|
||||
aria-invalid={errors.email !== undefined}
|
||||
{...register('email')}
|
||||
/>
|
||||
{errors.email && (
|
||||
<p className="text-sm text-destructive" data-testid="setup-email-error">
|
||||
{errors.email.message}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="setup-password">{t('setup.fields.password')}</Label>
|
||||
<PasswordField
|
||||
id="setup-password"
|
||||
autoComplete="new-password"
|
||||
aria-invalid={errors.password !== undefined}
|
||||
{...register('password')}
|
||||
/>
|
||||
{errors.password && (
|
||||
<p className="text-sm text-destructive" data-testid="setup-password-error">
|
||||
{errors.password.message}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="setup-confirmPassword">
|
||||
{t('setup.fields.confirmPassword')}
|
||||
</Label>
|
||||
<PasswordField
|
||||
id="setup-confirmPassword"
|
||||
autoComplete="new-password"
|
||||
aria-invalid={errors.confirmPassword !== undefined}
|
||||
{...register('confirmPassword')}
|
||||
/>
|
||||
{errors.confirmPassword && (
|
||||
<p className="text-sm text-destructive" data-testid="setup-confirm-error">
|
||||
{errors.confirmPassword.message}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="setup-locale">{t('setup.fields.locale')}</Label>
|
||||
<select
|
||||
id="setup-locale"
|
||||
data-testid="setup-locale-select"
|
||||
className="flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring"
|
||||
{...register('locale')}
|
||||
onChange={(e) => {
|
||||
const val = e.target.value as SupportedLocale;
|
||||
setValue('locale', val, { shouldValidate: true });
|
||||
}}
|
||||
value={currentLocale}
|
||||
>
|
||||
<option value="en">{t('setup.localeOptions.en')}</option>
|
||||
<option value="nl">{t('setup.localeOptions.nl')}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<Button
|
||||
type="submit"
|
||||
className="w-full"
|
||||
disabled={isLoading}
|
||||
data-testid="setup-submit-button"
|
||||
>
|
||||
{isLoading ? t('setup.submitting') : t('setup.submit')}
|
||||
</Button>
|
||||
</form>
|
||||
)}
|
||||
<Button
|
||||
type="submit"
|
||||
disabled={isSubmitting || setupMutation.isPending}
|
||||
className="w-full"
|
||||
data-testid="setup-submit-button"
|
||||
>
|
||||
{isSubmitting || setupMutation.isPending ? '...' : t('setup.submitButton')}
|
||||
</Button>
|
||||
</form>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user