92 lines
3.0 KiB
TypeScript
92 lines
3.0 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { authClient } from "@/lib/auth-client"
|
|
import { useRouter } from "next/navigation"
|
|
import { GatoMascota } from "@/components/child/gato-mascota"
|
|
|
|
export default function PairingPage() {
|
|
const [code, setCode] = useState("")
|
|
const [loading, setLoading] = useState(false)
|
|
const [error, setError] = useState("")
|
|
const [paired, setPaired] = useState(false)
|
|
const { data: session } = authClient.useSession()
|
|
const router = useRouter()
|
|
|
|
const handlePairing = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setError("")
|
|
|
|
const res = await fetch("/api/pairing", {
|
|
method: "POST",
|
|
body: JSON.stringify({ pairingCode: code, deviceFingerprint: navigator.userAgent }),
|
|
})
|
|
const data = await res.json()
|
|
|
|
if (data.error) {
|
|
setError(data.error)
|
|
setLoading(false)
|
|
return
|
|
}
|
|
|
|
setPaired(true)
|
|
setLoading(false)
|
|
}
|
|
|
|
if (!session) {
|
|
return (
|
|
<div className="min-h-dvh flex flex-col items-center justify-center p-6 gap-4">
|
|
<p className="text-muted-foreground">Iniciá sesión primero para emparejar</p>
|
|
<button
|
|
onClick={() => router.push("/parent/auth/login")}
|
|
className="bg-primary text-primary-foreground touch-target rounded-xl px-6 py-3 font-display"
|
|
>
|
|
Ir a login
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-dvh flex flex-col items-center justify-center p-6 gap-6">
|
|
<h1 className="text-2xl font-display font-bold">Emparejar iPad</h1>
|
|
|
|
{paired ? (
|
|
<div className="flex flex-col items-center gap-4">
|
|
<GatoMascota mood="celebrate" message="iPad emparejado con éxito" size="lg" />
|
|
<button
|
|
onClick={() => router.push("/parent")}
|
|
className="bg-primary text-primary-foreground touch-target rounded-xl px-6 py-3 font-display"
|
|
>
|
|
Volver al dashboard
|
|
</button>
|
|
</div>
|
|
) : (
|
|
<form onSubmit={handlePairing} className="flex flex-col gap-4 w-full max-w-sm">
|
|
<p className="text-muted-foreground text-center">
|
|
Ingresá el código de 8 caracteres que aparece en el iPad
|
|
</p>
|
|
<input
|
|
type="text"
|
|
value={code}
|
|
onChange={(e) => setCode(e.target.value.toUpperCase())}
|
|
placeholder="Código de 8 letras"
|
|
maxLength={8}
|
|
className="w-full rounded-xl border border-border bg-white px-4 py-3 text-center text-2xl tracking-widest uppercase focus:outline-none focus:ring-2 focus:ring-primary"
|
|
required
|
|
/>
|
|
{error && <p className="text-destructive text-sm text-center">{error}</p>}
|
|
<button
|
|
type="submit"
|
|
disabled={loading || code.length < 8}
|
|
className="bg-secondary text-secondary-foreground touch-target rounded-xl text-lg font-display font-semibold disabled:opacity-50"
|
|
>
|
|
{loading ? "Emparejando..." : "Emparejar"}
|
|
</button>
|
|
</form>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|