Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:46:22 +08:00
commit cc15a2f60e
7 changed files with 2303 additions and 0 deletions

View File

@@ -0,0 +1,631 @@
# React Hook Form Patterns Reference
## Core Hooks
### useForm
Main hook for form management:
```tsx
const form = useForm<FormValues>({
resolver: zodResolver(schema),
defaultValues: { name: '', email: '' },
mode: 'onBlur', // 'onChange' | 'onBlur' | 'onSubmit' | 'onTouched' | 'all'
reValidateMode: 'onChange', // When to re-validate after first error
criteriaMode: 'firstError', // 'firstError' | 'all'
shouldFocusError: true,
shouldUnregister: false,
shouldUseNativeValidation: false,
delayError: 500 // Delay error display (ms)
})
```
### useFieldArray
Manage dynamic field arrays:
```tsx
const { fields, append, prepend, remove, swap, move, insert } = useFieldArray({
control: form.control,
name: 'items',
keyName: 'id' // Custom key name (default: 'id')
})
```
### useWatch
Watch field values without re-rendering entire form:
```tsx
const watchedValue = useWatch({
control: form.control,
name: 'fieldName',
defaultValue: 'default'
})
// Watch multiple fields
const [field1, field2] = useWatch({
control: form.control,
name: ['field1', 'field2']
})
// Watch all fields
const allValues = useWatch({ control: form.control })
```
### useFormState
Access form state without subscribing to all changes:
```tsx
const { isDirty, isValid, errors, isSubmitting } = useFormState({
control: form.control
})
```
### useController
Lower-level field control:
```tsx
const { field, fieldState, formState } = useController({
name: 'fieldName',
control: form.control,
rules: { required: true },
defaultValue: ''
})
```
## Form Validation Modes
### onSubmit (Default)
- Validates on form submission
- Best for simple forms
- Minimal re-renders
- Delayed feedback
```tsx
const form = useForm({ mode: 'onSubmit' })
```
### onBlur
- Validates when field loses focus
- Good balance of UX and performance
- Recommended for most forms
```tsx
const form = useForm({ mode: 'onBlur' })
```
### onChange
- Validates on every keystroke
- Real-time feedback
- More re-renders
- Good for complex validation
```tsx
const form = useForm({ mode: 'onChange' })
```
### onTouched
- Validates after field is touched then on every change
- Progressive enhancement approach
```tsx
const form = useForm({ mode: 'onTouched' })
```
### all
- Validates on all events
- Most feedback but most re-renders
```tsx
const form = useForm({ mode: 'all' })
```
## Form Methods
### Form State Access
```tsx
// Check if form is dirty
form.formState.isDirty
// Check if form is valid
form.formState.isValid
// Check if submitting
form.formState.isSubmitting
// Get all errors
form.formState.errors
// Check if field is touched
form.formState.touchedFields.fieldName
// Get dirty fields
form.formState.dirtyFields
// Submit count
form.formState.submitCount
```
### Form Actions
```tsx
// Submit form
form.handleSubmit(onSubmit, onError)
// Reset form
form.reset() // to default values
form.reset({ name: 'New Name' }) // to specific values
// Set value
form.setValue('fieldName', 'value', {
shouldValidate: true,
shouldDirty: true,
shouldTouch: true
})
// Get value
const value = form.getValues('fieldName')
const allValues = form.getValues()
// Clear errors
form.clearErrors() // all errors
form.clearErrors('fieldName') // specific field
// Set error
form.setError('fieldName', {
type: 'manual',
message: 'Error message'
})
// Trigger validation
form.trigger() // all fields
form.trigger('fieldName') // specific field
form.trigger(['field1', 'field2']) // multiple fields
// Set focus
form.setFocus('fieldName')
```
## Advanced Patterns
### Dependent Fields
```tsx
const faction = form.watch('faction')
<FormField
control={form.control}
name="rank"
render={({ field }) => (
<FormItem>
<FormLabel>Rank</FormLabel>
<Select onValueChange={field.onChange} defaultValue={field.value}>
<FormControl>
<SelectTrigger>
<SelectValue placeholder="Select rank" />
</SelectTrigger>
</FormControl>
<SelectContent>
{getRanksForFaction(faction).map(rank => (
<SelectItem key={rank.id} value={rank.id}>
{rank.name}
</SelectItem>
))}
</SelectContent>
</Select>
<FormMessage />
</FormItem>
)}
/>
```
### Async Validation
```tsx
const schema = z.object({
username: z.string()
.min(3)
.refine(async (username) => {
const available = await checkUsernameAvailability(username)
return available
}, {
message: 'Username already taken'
})
})
// Use mode: 'onBlur' for better UX with async validation
const form = useForm({
resolver: zodResolver(schema),
mode: 'onBlur'
})
```
### Form Context
Share form between multiple components:
```tsx
// Parent component
import { FormProvider } from 'react-hook-form'
const form = useForm()
<FormProvider {...form}>
<ChildComponent1 />
<ChildComponent2 />
</FormProvider>
// Child component
import { useFormContext } from 'react-hook-form'
function ChildComponent() {
const form = useFormContext()
// Use form methods
}
```
### Controlled Components
```tsx
import { Controller } from 'react-hook-form'
<Controller
name="customField"
control={form.control}
render={({ field, fieldState, formState }) => (
<CustomComponent
value={field.value}
onChange={field.onChange}
onBlur={field.onBlur}
error={fieldState.error?.message}
/>
)}
/>
```
### Transform Values on Submit
```tsx
const onSubmit = form.handleSubmit((data) => {
const transformed = {
...data,
age: parseInt(data.age),
tags: data.tags.map(t => t.toLowerCase()),
createdAt: new Date()
}
// Submit transformed data
})
```
### Dirty Field Tracking
```tsx
const dirtyFields = form.formState.dirtyFields
function onSubmit(data: FormValues) {
// Only submit changed fields
const changedData = Object.keys(dirtyFields).reduce((acc, key) => {
acc[key] = data[key]
return acc
}, {} as Partial<FormValues>)
await updateEntity(id, changedData)
}
```
### Multi-Step Form
```tsx
const [step, setStep] = useState(1)
function onSubmit(data: FormValues) {
if (step < 3) {
setStep(step + 1)
} else {
// Final submission
submitData(data)
}
}
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)}>
{step === 1 && <Step1Fields control={form.control} />}
{step === 2 && <Step2Fields control={form.control} />}
{step === 3 && <Step3Fields control={form.control} />}
<div className="flex gap-2">
{step > 1 && (
<Button type="button" onClick={() => setStep(step - 1)}>
Previous
</Button>
)}
<Button type="submit">
{step < 3 ? 'Next' : 'Submit'}
</Button>
</div>
</form>
</Form>
```
### Reset with Default Values
```tsx
// Reset to specific values after successful submission
async function onSubmit(data: FormValues) {
const result = await createEntity(data)
if (result.success) {
form.reset({
name: '',
type: 'default',
// Keep some values
category: data.category
})
}
}
```
### Error Handling
```tsx
async function onSubmit(data: FormValues) {
try {
const result = await submitAction(data)
if (!result.success) {
// Set server errors
if (result.errors) {
Object.entries(result.errors).forEach(([field, message]) => {
form.setError(field as any, {
type: 'server',
message: message as string
})
})
}
// Set root error for general issues
if (result.message) {
form.setError('root', {
type: 'server',
message: result.message
})
}
} else {
toast.success('Saved successfully')
form.reset()
}
} catch (error) {
form.setError('root', {
type: 'server',
message: 'An unexpected error occurred'
})
}
}
// Display root error
{form.formState.errors.root && (
<Alert variant="destructive">
<AlertDescription>
{form.formState.errors.root.message}
</AlertDescription>
</Alert>
)}
```
### Optimistic Updates
```tsx
const [optimisticData, setOptimisticData] = useState<Entity | null>(null)
async function onSubmit(data: FormValues) {
// Show optimistic state
setOptimisticData(data as Entity)
toast.success('Saving...')
try {
const result = await saveEntity(data)
if (result.success) {
// Confirm success
setOptimisticData(result.data)
toast.success('Saved successfully')
} else {
// Revert optimistic state
setOptimisticData(null)
toast.error('Save failed')
}
} catch (error) {
setOptimisticData(null)
toast.error('An error occurred')
}
}
```
### Auto-Save Draft
```tsx
import { useEffect } from 'react'
import { useDebouncedCallback } from 'use-debounce'
const saveDraft = useDebouncedCallback(async (data: FormValues) => {
await saveDraftToStorage(data)
}, 1000)
useEffect(() => {
const subscription = form.watch((data) => {
if (form.formState.isDirty) {
saveDraft(data as FormValues)
}
})
return () => subscription.unsubscribe()
}, [form.watch, form.formState.isDirty])
// Load draft on mount
useEffect(() => {
const draft = loadDraftFromStorage()
if (draft) {
form.reset(draft)
}
}, [])
```
### Conditional Required Fields
```tsx
const schema = z.object({
type: z.enum(['character', 'location']),
characterRace: z.string().optional(),
locationType: z.string().optional()
}).refine(
(data) => {
if (data.type === 'character') {
return data.characterRace !== undefined && data.characterRace.length > 0
}
return true
},
{
message: 'Race is required for characters',
path: ['characterRace']
}
).refine(
(data) => {
if (data.type === 'location') {
return data.locationType !== undefined && data.locationType.length > 0
}
return true
},
{
message: 'Location type is required',
path: ['locationType']
}
)
```
### Field Masking/Formatting
```tsx
<FormField
control={form.control}
name="phone"
render={({ field }) => (
<FormItem>
<FormLabel>Phone</FormLabel>
<FormControl>
<Input
{...field}
onChange={(e) => {
const formatted = formatPhoneNumber(e.target.value)
field.onChange(formatted)
}}
placeholder="(123) 456-7890"
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
function formatPhoneNumber(value: string): string {
const numbers = value.replace(/\D/g, '')
const match = numbers.match(/^(\d{0,3})(\d{0,3})(\d{0,4})$/)
if (!match) return value
const formatted = [match[1], match[2], match[3]]
.filter(Boolean)
.join('-')
return formatted
}
```
## Performance Optimization
### Isolate Re-renders
```tsx
// Bad: Entire form re-renders on field change
const value = form.watch('field')
// Good: Only component re-renders
function WatchedField() {
const value = useWatch({ control: form.control, name: 'field' })
return <div>{value}</div>
}
```
### Use FormField for Each Field
```tsx
// FormField isolates re-renders to individual fields
<FormField
control={form.control}
name="field"
render={({ field }) => (
<FormItem>
<FormControl>
<Input {...field} />
</FormControl>
</FormItem>
)}
/>
```
### Memoize Expensive Computations
```tsx
import { useMemo } from 'react'
const options = useMemo(() => {
return computeExpensiveOptions()
}, [dependencies])
```
## Testing Patterns
```tsx
import { render, screen, waitFor } from '@testing-library/react'
import userEvent from '@testing-library/user-event'
import { MyForm } from './MyForm'
describe('MyForm', () => {
it('submits form with valid data', async () => {
const onSubmit = vi.fn()
render(<MyForm onSubmit={onSubmit} />)
await userEvent.type(screen.getByLabelText(/name/i), 'Test Name')
await userEvent.click(screen.getByRole('button', { name: /submit/i }))
await waitFor(() => {
expect(onSubmit).toHaveBeenCalledWith({
name: 'Test Name'
})
})
})
it('shows validation errors', async () => {
render(<MyForm />)
await userEvent.click(screen.getByRole('button', { name: /submit/i }))
expect(await screen.findByText(/name is required/i)).toBeInTheDocument()
})
it('clears errors on valid input', async () => {
render(<MyForm />)
const input = screen.getByLabelText(/name/i)
await userEvent.click(screen.getByRole('button', { name: /submit/i }))
expect(await screen.findByText(/name is required/i)).toBeInTheDocument()
await userEvent.type(input, 'Valid Name')
await waitFor(() => {
expect(screen.queryByText(/name is required/i)).not.toBeInTheDocument()
})
})
})
```

View File

@@ -0,0 +1,784 @@
# Zod Validation Reference
## Basic Types
### Strings
```typescript
// Basic string
z.string()
// With constraints
z.string().min(3, "Minimum 3 characters")
z.string().max(100, "Maximum 100 characters")
z.string().length(10, "Must be exactly 10 characters")
// Email
z.string().email("Invalid email address")
// URL
z.string().url("Invalid URL")
// UUID
z.string().uuid("Invalid UUID")
// CUID
z.string().cuid("Invalid CUID")
// Regex pattern
z.string().regex(/^[a-zA-Z]+$/, "Letters only")
// DateTime ISO
z.string().datetime("Invalid datetime")
// IP Address
z.string().ip("Invalid IP address")
z.string().ip({ version: 'v4' }) // IPv4 only
z.string().ip({ version: 'v6' }) // IPv6 only
// Trim whitespace
z.string().trim()
// Transform to lowercase
z.string().toLowerCase()
// Transform to uppercase
z.string().toUpperCase()
// Empty strings as null
z.string().nullable()
// Starts with
z.string().startsWith("prefix", "Must start with 'prefix'")
// Ends with
z.string().endsWith("suffix", "Must end with 'suffix'")
// Includes
z.string().includes("substring", "Must contain 'substring'")
```
### Numbers
```typescript
// Basic number
z.number()
// Integer only
z.number().int("Must be an integer")
// Positive numbers
z.number().positive("Must be positive")
// Non-negative (includes 0)
z.number().nonnegative("Must be 0 or greater")
// Negative numbers
z.number().negative("Must be negative")
// Non-positive (includes 0)
z.number().nonpositive("Must be 0 or less")
// Range
z.number().min(0, "Minimum is 0")
z.number().max(100, "Maximum is 100")
z.number().gte(0).lte(100) // Greater/less than or equal
// Multiple of
z.number().multipleOf(5, "Must be multiple of 5")
// Finite (not Infinity or NaN)
z.number().finite("Must be finite")
// Safe integer
z.number().safe("Must be safe integer")
```
### Booleans
```typescript
// Basic boolean
z.boolean()
// Coerce from string
z.coerce.boolean() // "true", "false", "1", "0" → boolean
```
### Dates
```typescript
// Date object
z.date()
// Min/max dates
z.date().min(new Date("2020-01-01"), "Too early")
z.date().max(new Date("2030-12-31"), "Too late")
// Coerce from string or number
z.coerce.date()
```
### Enums
```typescript
// String enum
z.enum(['character', 'location', 'item'])
// With error message
z.enum(['character', 'location', 'item'], {
errorMap: () => ({ message: "Invalid entity type" })
})
// Native enum
enum Role {
Admin = 'ADMIN',
User = 'USER'
}
z.nativeEnum(Role)
```
### Literals
```typescript
// Single literal value
z.literal('admin')
z.literal(42)
z.literal(true)
// Union of literals
z.union([
z.literal('small'),
z.literal('medium'),
z.literal('large')
])
```
## Complex Types
### Objects
```typescript
// Basic object
z.object({
name: z.string(),
age: z.number()
})
// Nested objects
z.object({
user: z.object({
name: z.string(),
email: z.string().email()
}),
address: z.object({
street: z.string(),
city: z.string()
})
})
// Optional properties
z.object({
name: z.string(),
nickname: z.string().optional()
})
// Partial (all properties optional)
const schema = z.object({ name: z.string(), age: z.number() })
const partialSchema = schema.partial()
// Pick specific keys
schema.pick({ name: true })
// Omit specific keys
schema.omit({ age: true })
// Extend object
const baseSchema = z.object({ name: z.string() })
const extendedSchema = baseSchema.extend({
age: z.number()
})
// Merge objects
const merged = schema1.merge(schema2)
// Passthrough (allow unknown keys)
z.object({ name: z.string() }).passthrough()
// Strict (reject unknown keys)
z.object({ name: z.string() }).strict()
// Catchall (type for unknown keys)
z.object({ name: z.string() }).catchall(z.string())
```
### Arrays
```typescript
// Basic array
z.array(z.string())
// Array with min/max length
z.array(z.string()).min(1, "At least one item required")
z.array(z.string()).max(10, "Maximum 10 items")
z.array(z.string()).length(5, "Must have exactly 5 items")
// Non-empty array
z.array(z.string()).nonempty("Cannot be empty")
// Array of objects
z.array(z.object({
id: z.string(),
name: z.string()
}))
```
### Tuples
```typescript
// Fixed-length array with specific types
z.tuple([z.string(), z.number(), z.boolean()])
// With rest parameter
z.tuple([z.string(), z.number()]).rest(z.string())
```
### Records
```typescript
// Object with string keys and specific value type
z.record(z.string()) // Record<string, string>
z.record(z.number()) // Record<string, number>
// With specific key type
z.record(z.enum(['a', 'b', 'c']), z.number())
```
### Maps & Sets
```typescript
// Map
z.map(z.string(), z.number()) // Map<string, number>
// Set
z.set(z.string()) // Set<string>
z.set(z.number()).min(3, "At least 3 items")
```
### Unions
```typescript
// Union of types
z.union([z.string(), z.number()])
// Discriminated union
z.discriminatedUnion('type', [
z.object({ type: z.literal('character'), race: z.string() }),
z.object({ type: z.literal('location'), region: z.string() })
])
```
### Intersections
```typescript
// Combine multiple schemas
const Name = z.object({ name: z.string() })
const Age = z.object({ age: z.number() })
const Person = z.intersection(Name, Age)
// or
const Person = Name.and(Age)
```
## Optional and Nullable
```typescript
// Optional (can be undefined)
z.string().optional() // string | undefined
// Nullable (can be null)
z.string().nullable() // string | null
// Both
z.string().nullish() // string | null | undefined
// With default value
z.string().default("default value")
z.number().default(0)
// Default from function
z.date().default(() => new Date())
```
## Refinements
### Basic Refinement
```typescript
// Custom validation
z.string().refine(
(val) => val.length > 5,
{ message: "Must be more than 5 characters" }
)
// Multiple refinements
z.string()
.refine((val) => val.includes('@'), "Must include @")
.refine((val) => val.endsWith('.com'), "Must end with .com")
```
### Async Refinement
```typescript
z.string().refine(
async (username) => {
const exists = await checkUsername(username)
return !exists
},
{ message: "Username already taken" }
)
```
### Cross-Field Validation
```typescript
z.object({
password: z.string().min(8),
confirmPassword: z.string()
}).refine(
(data) => data.password === data.confirmPassword,
{
message: "Passwords must match",
path: ["confirmPassword"] // Error shown on this field
}
)
// Multiple cross-field validations
z.object({
startDate: z.date(),
endDate: z.date(),
type: z.enum(['event', 'period'])
}).refine(
(data) => data.startDate < data.endDate,
{
message: "End date must be after start date",
path: ["endDate"]
}
).refine(
(data) => {
if (data.type === 'event') {
return data.startDate.getTime() === data.endDate.getTime()
}
return true
},
{
message: "Events must have same start and end date",
path: ["endDate"]
}
)
```
### Superrefine (Advanced)
```typescript
z.object({
age: z.number(),
faction: z.string()
}).superrefine((data, ctx) => {
if (data.age < 18 && data.faction === 'military') {
ctx.addIssue({
code: z.ZodIssueCode.custom,
message: "Must be 18+ to join military",
path: ["age"]
})
}
if (data.age > 1000 && !data.faction.startsWith('ancient')) {
ctx.addIssue({
code: z.ZodIssueCode.custom,
message: "Ancient beings must join ancient factions",
path: ["faction"]
})
}
})
```
## Transformations
```typescript
// Transform string to number
z.string().transform((val) => parseInt(val))
// Transform and validate
z.string()
.transform((val) => val.trim())
.pipe(z.string().min(1))
// Transform dates
z.string().transform((val) => new Date(val))
// Coerce types
z.coerce.number() // "123" → 123
z.coerce.boolean() // "true" → true
z.coerce.date() // "2023-01-01" → Date
// Chain transformations
z.string()
.transform((val) => val.trim())
.transform((val) => val.toLowerCase())
.transform((val) => val.split(','))
```
## Preprocess
```typescript
// Transform before validation
z.preprocess(
(val) => {
if (typeof val === 'string') {
return val.trim()
}
return val
},
z.string().min(1)
)
// Normalize dates
z.preprocess(
(val) => {
if (val instanceof Date) return val
if (typeof val === 'string') return new Date(val)
return val
},
z.date()
)
```
## Custom Error Messages
```typescript
// Field-level messages
z.string({
required_error: "Name is required",
invalid_type_error: "Name must be a string"
})
// Constraint messages
z.string()
.min(3, { message: "Minimum 3 characters" })
.max(100, { message: "Maximum 100 characters" })
// Error map for entire schema
const schema = z.object({
name: z.string(),
age: z.number()
}, {
errorMap: (issue, ctx) => {
if (issue.code === z.ZodIssueCode.invalid_type) {
return { message: "Please provide a valid value" }
}
return { message: ctx.defaultError }
}
})
```
## Parsing and Validation
```typescript
// Parse (throws on error)
try {
const result = schema.parse(data)
// result is typed
} catch (error) {
if (error instanceof z.ZodError) {
console.log(error.errors)
}
}
// Safe parse (returns result object)
const result = schema.safeParse(data)
if (result.success) {
console.log(result.data) // typed data
} else {
console.log(result.error) // ZodError
}
// Parse async
const result = await schema.parseAsync(data)
// Safe parse async
const result = await schema.safeParseAsync(data)
```
## Error Handling
```typescript
// Get all errors
const result = schema.safeParse(data)
if (!result.success) {
result.error.issues.forEach(issue => {
console.log(issue.path) // ['field', 'name']
console.log(issue.message) // "Invalid value"
console.log(issue.code) // ZodIssueCode
})
}
// Flatten errors for forms
const result = schema.safeParse(data)
if (!result.success) {
const flattened = result.error.flatten()
console.log(flattened.fieldErrors) // { name: ["error"], age: ["error"] }
console.log(flattened.formErrors) // ["general error"]
}
// Format errors for React Hook Form
const result = schema.safeParse(data)
if (!result.success) {
const errors = result.error.flatten().fieldErrors
Object.entries(errors).forEach(([field, messages]) => {
form.setError(field as any, {
type: 'validation',
message: messages?.[0] || 'Invalid value'
})
})
}
```
## Common Patterns for Worldbuilding
### Character Schema
```typescript
const characterSchema = z.object({
name: z.string()
.min(2, "Name too short")
.max(100, "Name too long")
.regex(/^[a-zA-Z\s'-]+$/, "Invalid characters in name"),
race: z.string().min(1, "Race required"),
age: z.number()
.int("Age must be whole number")
.min(0, "Age cannot be negative")
.max(10000, "Age unrealistic"),
faction: z.string().optional(),
attributes: z.object({
strength: z.number().min(0).max(100),
intelligence: z.number().min(0).max(100),
charisma: z.number().min(0).max(100)
}).optional(),
biography: z.string()
.max(5000, "Biography too long")
.optional(),
relationships: z.array(z.object({
characterId: z.string().uuid(),
type: z.enum(['ally', 'enemy', 'neutral', 'family']),
description: z.string().optional()
})).optional()
})
```
### Location Schema
```typescript
const locationSchema = z.object({
name: z.string().min(2).max(200),
type: z.enum([
'city', 'town', 'village', 'dungeon', 'forest',
'mountain', 'ocean', 'desert', 'ruins', 'landmark'
]),
region: z.string().optional(),
coordinates: z.object({
x: z.number(),
y: z.number(),
z: z.number().optional()
}).optional(),
climate: z.enum([
'tropical', 'temperate', 'arctic', 'desert', 'varied'
]).optional(),
population: z.number()
.int()
.nonnegative()
.optional(),
government: z.string().optional(),
description: z.string().max(10000).optional(),
pointsOfInterest: z.array(z.object({
name: z.string(),
description: z.string(),
type: z.string()
})).optional()
}).refine(
(data) => {
// Cities should have population
if (data.type === 'city' && !data.population) {
return false
}
return true
},
{
message: "Cities must have population defined",
path: ["population"]
}
)
```
### Timeline Event Schema
```typescript
const eventSchema = z.object({
title: z.string().min(1).max(200),
date: z.union([
z.date(),
z.object({
year: z.number(),
month: z.number().min(1).max(12).optional(),
day: z.number().min(1).max(31).optional()
})
]),
endDate: z.union([
z.date(),
z.object({
year: z.number(),
month: z.number().min(1).max(12).optional(),
day: z.number().min(1).max(31).optional()
})
]).optional(),
location: z.string().optional(),
participants: z.array(z.string()).optional(),
description: z.string().max(5000).optional(),
consequences: z.string().max(5000).optional(),
relatedEvents: z.array(z.string()).optional(),
tags: z.array(z.string()).optional()
}).refine(
(data) => {
// If endDate exists, validate it's after startDate
if (data.endDate) {
// Compare dates/objects appropriately
return true // Implement comparison logic
}
return true
},
{
message: "End date must be after start date",
path: ["endDate"]
}
)
```
### Item/Artifact Schema
```typescript
const itemSchema = z.object({
name: z.string().min(1).max(200),
type: z.enum([
'weapon', 'armor', 'artifact', 'consumable',
'tool', 'treasure', 'document', 'other'
]),
rarity: z.enum([
'common', 'uncommon', 'rare', 'epic', 'legendary', 'unique'
]),
owner: z.string().uuid().optional(),
location: z.string().uuid().optional(),
properties: z.record(z.string(), z.any()).optional(),
magicalEffects: z.array(z.object({
name: z.string(),
description: z.string(),
potency: z.number().min(1).max(10).optional()
})).optional(),
value: z.number().nonnegative().optional(),
weight: z.number().nonnegative().optional(),
history: z.string().max(5000).optional(),
requiresAttunement: z.boolean().default(false)
}).refine(
(data) => {
// Magical items should have magical effects
if (data.requiresAttunement && (!data.magicalEffects || data.magicalEffects.length === 0)) {
return false
}
return true
},
{
message: "Items requiring attunement must have magical effects",
path: ["magicalEffects"]
}
)
```
## Type Inference
```typescript
// Infer TypeScript type from schema
type Character = z.infer<typeof characterSchema>
// Infer input type (before transformations)
type CharacterInput = z.input<typeof characterSchema>
// Infer output type (after transformations)
type CharacterOutput = z.output<typeof characterSchema>
// Use in React Hook Form
const form = useForm<Character>({
resolver: zodResolver(characterSchema)
})
```
## Schema Composition
```typescript
// Base entity schema
const baseEntitySchema = z.object({
id: z.string().uuid(),
name: z.string().min(1).max(200),
description: z.string().max(5000).optional(),
tags: z.array(z.string()).optional(),
createdAt: z.date(),
updatedAt: z.date()
})
// Extend for specific entities
const characterSchema = baseEntitySchema.extend({
type: z.literal('character'),
race: z.string(),
age: z.number().optional()
})
const locationSchema = baseEntitySchema.extend({
type: z.literal('location'),
coordinates: z.object({ x: z.number(), y: z.number() }).optional()
})
// Union of all entity types
const entitySchema = z.discriminatedUnion('type', [
characterSchema,
locationSchema
])
```