Initial commit
This commit is contained in:
402
templates/async-validation.tsx
Normal file
402
templates/async-validation.tsx
Normal file
@@ -0,0 +1,402 @@
|
||||
/**
|
||||
* Async Validation Example
|
||||
*
|
||||
* Demonstrates:
|
||||
* - Async validation with API calls
|
||||
* - Debouncing to prevent excessive requests
|
||||
* - Loading states
|
||||
* - Error handling for async validation
|
||||
* - Request cancellation
|
||||
*/
|
||||
|
||||
import { useForm } from 'react-hook-form'
|
||||
import { zodResolver } from '@hookform/resolvers/zod'
|
||||
import { z } from 'zod'
|
||||
import { useState, useRef, useEffect } from 'react'
|
||||
|
||||
/**
|
||||
* Pattern 1: Async Validation in Zod Schema
|
||||
*/
|
||||
const usernameSchema = z.string()
|
||||
.min(3, 'Username must be at least 3 characters')
|
||||
.max(20, 'Username must not exceed 20 characters')
|
||||
.regex(/^[a-zA-Z0-9_]+$/, 'Username can only contain letters, numbers, and underscores')
|
||||
.refine(async (username) => {
|
||||
// Check if username is available via API
|
||||
const response = await fetch(`/api/check-username?username=${encodeURIComponent(username)}`)
|
||||
const { available } = await response.json()
|
||||
return available
|
||||
}, {
|
||||
message: 'Username is already taken',
|
||||
})
|
||||
|
||||
const signupSchemaWithAsync = z.object({
|
||||
username: usernameSchema,
|
||||
email: z.string().email('Invalid email address'),
|
||||
password: z.string().min(8, 'Password must be at least 8 characters'),
|
||||
})
|
||||
|
||||
type SignupFormData = z.infer<typeof signupSchemaWithAsync>
|
||||
|
||||
export function AsyncValidationForm() {
|
||||
const {
|
||||
register,
|
||||
handleSubmit,
|
||||
formState: { errors, isSubmitting, isValidating },
|
||||
} = useForm<SignupFormData>({
|
||||
resolver: zodResolver(signupSchemaWithAsync),
|
||||
mode: 'onBlur', // Validate on blur to avoid validating on every keystroke
|
||||
defaultValues: {
|
||||
username: '',
|
||||
email: '',
|
||||
password: '',
|
||||
},
|
||||
})
|
||||
|
||||
const onSubmit = async (data: SignupFormData) => {
|
||||
console.log('Form data:', data)
|
||||
}
|
||||
|
||||
return (
|
||||
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4 max-w-md mx-auto">
|
||||
<h2 className="text-2xl font-bold">Sign Up</h2>
|
||||
|
||||
<div>
|
||||
<label htmlFor="username" className="block text-sm font-medium mb-1">
|
||||
Username
|
||||
</label>
|
||||
<input
|
||||
id="username"
|
||||
{...register('username')}
|
||||
className="w-full px-3 py-2 border rounded-md"
|
||||
/>
|
||||
{isValidating && (
|
||||
<span className="text-sm text-blue-600 mt-1 block">
|
||||
Checking availability...
|
||||
</span>
|
||||
)}
|
||||
{errors.username && (
|
||||
<span role="alert" className="text-sm text-red-600 mt-1 block">
|
||||
{errors.username.message}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="email" className="block text-sm font-medium mb-1">
|
||||
Email
|
||||
</label>
|
||||
<input
|
||||
id="email"
|
||||
type="email"
|
||||
{...register('email')}
|
||||
className="w-full px-3 py-2 border rounded-md"
|
||||
/>
|
||||
{errors.email && (
|
||||
<span role="alert" className="text-sm text-red-600 mt-1 block">
|
||||
{errors.email.message}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="password" className="block text-sm font-medium mb-1">
|
||||
Password
|
||||
</label>
|
||||
<input
|
||||
id="password"
|
||||
type="password"
|
||||
{...register('password')}
|
||||
className="w-full px-3 py-2 border rounded-md"
|
||||
/>
|
||||
{errors.password && (
|
||||
<span role="alert" className="text-sm text-red-600 mt-1 block">
|
||||
{errors.password.message}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
disabled={isSubmitting || isValidating}
|
||||
className="w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 disabled:bg-gray-400"
|
||||
>
|
||||
{isSubmitting ? 'Signing up...' : 'Sign Up'}
|
||||
</button>
|
||||
</form>
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Pattern 2: Manual Async Validation with Debouncing and Cancellation
|
||||
* Better performance - more control over when validation happens
|
||||
*/
|
||||
const manualValidationSchema = z.object({
|
||||
username: z.string()
|
||||
.min(3, 'Username must be at least 3 characters')
|
||||
.max(20, 'Username must not exceed 20 characters')
|
||||
.regex(/^[a-zA-Z0-9_]+$/, 'Username can only contain letters, numbers, and underscores'),
|
||||
email: z.string().email('Invalid email address'),
|
||||
})
|
||||
|
||||
type ManualValidationData = z.infer<typeof manualValidationSchema>
|
||||
|
||||
export function DebouncedAsyncValidationForm() {
|
||||
const {
|
||||
register,
|
||||
handleSubmit,
|
||||
watch,
|
||||
setError,
|
||||
clearErrors,
|
||||
formState: { errors, isSubmitting },
|
||||
} = useForm<ManualValidationData>({
|
||||
resolver: zodResolver(manualValidationSchema),
|
||||
defaultValues: {
|
||||
username: '',
|
||||
email: '',
|
||||
},
|
||||
})
|
||||
|
||||
const [isCheckingUsername, setIsCheckingUsername] = useState(false)
|
||||
const [isCheckingEmail, setIsCheckingEmail] = useState(false)
|
||||
const abortControllerRef = useRef<AbortController | null>(null)
|
||||
const timeoutRef = useRef<NodeJS.Timeout | null>(null)
|
||||
|
||||
const username = watch('username')
|
||||
const email = watch('email')
|
||||
|
||||
// Debounced username validation
|
||||
useEffect(() => {
|
||||
// Clear previous timeout
|
||||
if (timeoutRef.current) {
|
||||
clearTimeout(timeoutRef.current)
|
||||
}
|
||||
|
||||
// Skip if username is too short (already handled by Zod)
|
||||
if (!username || username.length < 3) {
|
||||
setIsCheckingUsername(false)
|
||||
return
|
||||
}
|
||||
|
||||
// Debounce: wait 500ms after user stops typing
|
||||
timeoutRef.current = setTimeout(async () => {
|
||||
// Cancel previous request
|
||||
if (abortControllerRef.current) {
|
||||
abortControllerRef.current.abort()
|
||||
}
|
||||
|
||||
// Create new abort controller
|
||||
abortControllerRef.current = new AbortController()
|
||||
|
||||
setIsCheckingUsername(true)
|
||||
clearErrors('username')
|
||||
|
||||
try {
|
||||
const response = await fetch(
|
||||
`/api/check-username?username=${encodeURIComponent(username)}`,
|
||||
{ signal: abortControllerRef.current.signal }
|
||||
)
|
||||
|
||||
const { available } = await response.json()
|
||||
|
||||
if (!available) {
|
||||
setError('username', {
|
||||
type: 'async',
|
||||
message: 'Username is already taken',
|
||||
})
|
||||
}
|
||||
} catch (error: any) {
|
||||
if (error.name !== 'AbortError') {
|
||||
console.error('Username check error:', error)
|
||||
}
|
||||
} finally {
|
||||
setIsCheckingUsername(false)
|
||||
}
|
||||
}, 500) // 500ms debounce
|
||||
|
||||
return () => {
|
||||
if (timeoutRef.current) {
|
||||
clearTimeout(timeoutRef.current)
|
||||
}
|
||||
}
|
||||
}, [username, setError, clearErrors])
|
||||
|
||||
// Debounced email validation
|
||||
useEffect(() => {
|
||||
if (timeoutRef.current) {
|
||||
clearTimeout(timeoutRef.current)
|
||||
}
|
||||
|
||||
// Basic email validation first (handled by Zod)
|
||||
if (!email || !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) {
|
||||
setIsCheckingEmail(false)
|
||||
return
|
||||
}
|
||||
|
||||
timeoutRef.current = setTimeout(async () => {
|
||||
setIsCheckingEmail(true)
|
||||
clearErrors('email')
|
||||
|
||||
try {
|
||||
const response = await fetch(
|
||||
`/api/check-email?email=${encodeURIComponent(email)}`
|
||||
)
|
||||
|
||||
const { available } = await response.json()
|
||||
|
||||
if (!available) {
|
||||
setError('email', {
|
||||
type: 'async',
|
||||
message: 'Email is already registered',
|
||||
})
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Email check error:', error)
|
||||
} finally {
|
||||
setIsCheckingEmail(false)
|
||||
}
|
||||
}, 500)
|
||||
|
||||
return () => {
|
||||
if (timeoutRef.current) {
|
||||
clearTimeout(timeoutRef.current)
|
||||
}
|
||||
}
|
||||
}, [email, setError, clearErrors])
|
||||
|
||||
const onSubmit = async (data: ManualValidationData) => {
|
||||
// Final check before submission
|
||||
if (isCheckingUsername || isCheckingEmail) {
|
||||
return
|
||||
}
|
||||
|
||||
console.log('Form data:', data)
|
||||
}
|
||||
|
||||
return (
|
||||
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4 max-w-md mx-auto">
|
||||
<h2 className="text-2xl font-bold">Create Account</h2>
|
||||
|
||||
<div>
|
||||
<label htmlFor="username" className="block text-sm font-medium mb-1">
|
||||
Username
|
||||
</label>
|
||||
<div className="relative">
|
||||
<input
|
||||
id="username"
|
||||
{...register('username')}
|
||||
className="w-full px-3 py-2 border rounded-md"
|
||||
/>
|
||||
{isCheckingUsername && (
|
||||
<div className="absolute right-3 top-2.5">
|
||||
<svg
|
||||
className="animate-spin h-5 w-5 text-blue-600"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<circle
|
||||
className="opacity-25"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
stroke="currentColor"
|
||||
strokeWidth="4"
|
||||
></circle>
|
||||
<path
|
||||
className="opacity-75"
|
||||
fill="currentColor"
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
||||
></path>
|
||||
</svg>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{errors.username && (
|
||||
<span role="alert" className="text-sm text-red-600 mt-1 block">
|
||||
{errors.username.message}
|
||||
</span>
|
||||
)}
|
||||
{!errors.username && username.length >= 3 && !isCheckingUsername && (
|
||||
<span className="text-sm text-green-600 mt-1 block">
|
||||
Username is available ✓
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="email" className="block text-sm font-medium mb-1">
|
||||
Email
|
||||
</label>
|
||||
<div className="relative">
|
||||
<input
|
||||
id="email"
|
||||
type="email"
|
||||
{...register('email')}
|
||||
className="w-full px-3 py-2 border rounded-md"
|
||||
/>
|
||||
{isCheckingEmail && (
|
||||
<div className="absolute right-3 top-2.5">
|
||||
<svg
|
||||
className="animate-spin h-5 w-5 text-blue-600"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<circle
|
||||
className="opacity-25"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
stroke="currentColor"
|
||||
strokeWidth="4"
|
||||
></circle>
|
||||
<path
|
||||
className="opacity-75"
|
||||
fill="currentColor"
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
||||
></path>
|
||||
</svg>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{errors.email && (
|
||||
<span role="alert" className="text-sm text-red-600 mt-1 block">
|
||||
{errors.email.message}
|
||||
</span>
|
||||
)}
|
||||
{!errors.email && email && !isCheckingEmail && (
|
||||
<span className="text-sm text-green-600 mt-1 block">
|
||||
Email is available ✓
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
disabled={isSubmitting || isCheckingUsername || isCheckingEmail}
|
||||
className="w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 disabled:bg-gray-400"
|
||||
>
|
||||
{isSubmitting ? 'Creating account...' : 'Create Account'}
|
||||
</button>
|
||||
</form>
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Mock API endpoints for testing
|
||||
*/
|
||||
export async function checkUsernameAvailability(username: string): Promise<boolean> {
|
||||
// Simulate API delay
|
||||
await new Promise(resolve => setTimeout(resolve, 1000))
|
||||
|
||||
// Mock: usernames starting with 'test' are taken
|
||||
return !username.toLowerCase().startsWith('test')
|
||||
}
|
||||
|
||||
export async function checkEmailAvailability(email: string): Promise<boolean> {
|
||||
await new Promise(resolve => setTimeout(resolve, 1000))
|
||||
|
||||
// Mock: emails with 'test' are taken
|
||||
return !email.toLowerCase().includes('test')
|
||||
}
|
||||
Reference in New Issue
Block a user