Files
meal-planner/src/app/(app)/caregiver/login/page.tsx

155 lines
4.6 KiB
TypeScript

'use client'
import React, { useState, useEffect } from 'react'
import { useRouter } from 'next/navigation'
import { Loader2 } from 'lucide-react'
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 { Alert, AlertDescription } from '@/components/ui/alert'
export default function CaregiverLoginPage() {
const router = useRouter()
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [error, setError] = useState<string | null>(null)
const [loading, setLoading] = useState(false)
const [checking, setChecking] = useState(true)
useEffect(() => {
const checkAuth = async () => {
try {
const res = await fetch('/api/users/me', { credentials: 'include' })
if (res.ok) {
const data = await res.json()
if (data.user) {
router.push('/caregiver/dashboard')
return
}
}
} catch {
// Not logged in
}
setChecking(false)
}
checkAuth()
}, [router])
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setError(null)
setLoading(true)
try {
const res = await fetch('/api/users/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ email, password }),
credentials: 'include',
})
const data = await res.json()
if (!res.ok) {
throw new Error(data.errors?.[0]?.message || 'Login failed')
}
const user = data.user
const hasCaregiverRole =
user?.roles?.includes('super-admin') ||
user?.tenants?.some(
(t: { roles?: string[] }) =>
t.roles?.includes('caregiver') || t.roles?.includes('admin'),
)
if (!hasCaregiverRole) {
await fetch('/api/users/logout', {
method: 'POST',
credentials: 'include',
})
throw new Error('You do not have caregiver access')
}
router.push('/caregiver/dashboard')
} catch (err) {
setError(err instanceof Error ? err.message : 'Login failed')
} finally {
setLoading(false)
}
}
if (checking) {
return (
<div className="min-h-screen flex items-center justify-center bg-muted/50">
<Loader2 className="h-8 w-8 animate-spin text-primary" />
</div>
)
}
return (
<div className="min-h-screen flex items-center justify-center bg-muted/50 p-4">
<div className="w-full max-w-md">
<div className="text-center mb-8">
<h1 className="text-2xl font-bold tracking-tight">Meal Planner</h1>
<p className="text-muted-foreground">Caregiver Portal</p>
</div>
<Card>
<CardHeader>
<CardTitle>Login</CardTitle>
<CardDescription>Enter your credentials to access the caregiver portal</CardDescription>
</CardHeader>
<CardContent>
{error && (
<Alert variant="destructive" className="mb-4">
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
type="email"
id="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
required
autoComplete="email"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
type="password"
id="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Enter your password"
required
autoComplete="current-password"
/>
</div>
<Button type="submit" className="w-full" size="lg" disabled={loading}>
{loading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Logging in...
</>
) : (
'Login'
)}
</Button>
</form>
</CardContent>
</Card>
</div>
</div>
)
}