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
|
import { z } from 'zod'
export const registerSchema = z.object({
name: z
.string()
.trim()
.min(2, 'Name must be at least 2 characters')
.max(50, 'Name must be at most 50 characters')
.regex(/^[a-zA-Z\s'-]+$/, 'Name can only contain letters, spaces, hyphens, and apostrophes'),
email: z
.string()
.trim()
.toLowerCase()
.email('Invalid email format')
.max(254, 'Email must be at most 254 characters'),
password: z
.string()
.min(8, 'Password must be at least 8 characters')
.max(128, 'Password must be at most 128 characters')
.regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d@$!%*?&]{8,}$/,
'Password must contain at least one uppercase letter, one lowercase letter, and one number')
})
export const loginSchema = z.object({
email: z
.string()
.trim()
.toLowerCase()
.email('Invalid email format')
.max(254, 'Email must be at most 254 characters'),
password: z
.string()
.max(128, 'Password must be at most 128 characters')
})
// Profile update schema (reusing name and email from registerSchema)
export const updateProfileSchema = z.object({
name: registerSchema.shape.name,
email: registerSchema.shape.email,
})
// Password change schema (reusing password validation from registerSchema)
export const updatePasswordSchema = z.object({
currentPassword: z.string().min(1, 'Current password is required'),
newPassword: registerSchema.shape.password,
})
export const passwordChangeSchema = updatePasswordSchema.extend({
confirmPassword: z.string()
}).refine((data) => data.newPassword === data.confirmPassword, {
message: "Passwords don't match",
path: ["confirmPassword"],
})
// Type inference from schemas
export type RegisterInput = z.infer<typeof registerSchema>
export type LoginInput = z.infer<typeof loginSchema>
export type UpdateProfileInput = z.infer<typeof updateProfileSchema>
export type UpdatePasswordInput = z.infer<typeof updatePasswordSchema>
export type PasswordChangeInput = z.infer<typeof passwordChangeSchema>
export const emailSchema = z.object({
email: z
.string()
.trim()
.toLowerCase()
.email('Invalid email format')
.max(254, 'Email must be at most 254 characters')
})
export function formatZodError(error: z.ZodError) {
return error.errors.map(err => ({
field: err.path.join('.'),
message: err.message
}))
}
export function getFirstErrorMessage(error: z.ZodError): string {
return error.errors[0]?.message || 'Validation failed'
}
|