blob: 018508b140532f9a23ab91873fba0b8bc5e2ba19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
"use client"
import { useOnboarding } from "./onboarding-context"
import { useAuth } from "@lib/auth-context"
import Link from "next/link"
import { useEffect, useState } from "react"
import { CheckIcon } from "lucide-react"
import { AnimatePresence, motion } from "motion/react"
import { NavMenu } from "./nav-menu"
import { authClient } from "@lib/auth"
export function NameForm() {
const { nextStep, totalSteps, getStepNumberFor } = useOnboarding()
const { user } = useAuth()
const [name, setName] = useState(user?.name ?? "")
useEffect(() => {
if (!name && user?.name) {
setName(user.name)
}
}, [name, user?.name])
function handleNext(): void {
const trimmed = name.trim()
if (!trimmed) {
nextStep()
return
}
nextStep()
void authClient.updateUser({ name: trimmed }).catch((error: unknown) => {
console.error("Failed to update user name during onboarding:", error)
})
}
function handleSubmit(e: React.FormEvent): void {
e.preventDefault()
handleNext()
}
if (!user) {
return (
<div className="flex flex-col gap-6">
<h1 className="text-4xl">You need to sign in to continue</h1>
<Link href="/login">Login</Link>
</div>
)
}
return (
<div className="flex flex-col gap-4 w-full">
<NavMenu>
<p className="text-base text-white/60">
Step {getStepNumberFor("name")} of {totalSteps}
</p>
</NavMenu>
<p className="text-2xl md:text-4xl text-white font-medium">
What should we call you?
</p>
<form onSubmit={handleSubmit} className="flex flex-col group text-white">
<div className="relative flex flex-col">
<input
type="text"
name="name"
autoComplete="name"
autoCorrect="off"
autoCapitalize="none"
spellCheck="false"
className="outline-0 text-2xl h-12 font-normal p-0"
placeholder="John Doe"
value={name}
onChange={(e) => setName(e.target.value)}
/>
<AnimatePresence mode="popLayout">
{name && (
<motion.div
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
initial={{ opacity: 0 }}
key="next"
transition={{ duration: 0.15 }}
className="absolute pointer-events-none inset-0 flex items-center justify-end"
>
<button
type="submit"
className="cursor-pointer transition-colors duration-150 gap-2 pointer-events-auto flex items-center p-2 hover:bg-zinc-100 hover:text-black/90 rounded-lg"
>
<CheckIcon className="w-4 h-4" />
{/* <span className="text-sm">Next</span> */}
</button>
</motion.div>
)}
</AnimatePresence>
</div>
<div className="w-full rounded-full group-focus-within:bg-zinc-400 transition-colors h-px bg-zinc-200" />
</form>
</div>
)
}
|