thibault
thibault
Explore posts from servers
Aarktype
Created by thibault on 3/17/2025 in #questions
How to set an error message
Hey guys, I am trying to move this zod schema with arktype:
const userZodSchema = z.object({
name: z
.string({
required_error: "name is required",
invalid_type_error: "name must of type string",
})
.trim()
.min(3, "name must be at least 3 characters")
.max(255, "name must be at most 255 characters"),
});
const userZodSchema = z.object({
name: z
.string({
required_error: "name is required",
invalid_type_error: "name must of type string",
})
.trim()
.min(3, "name must be at least 3 characters")
.max(255, "name must be at most 255 characters"),
});
so far I have come up with this, but how would I set the error message ?:
const userArktypeSchema = type({
name: '0<string.trim.preformatted<255'
});
const userArktypeSchema = type({
name: '0<string.trim.preformatted<255'
});
here is a typescript playground: https://www.typescriptlang.org/play/?ssl=15&ssc=1&pln=19&pc=1#code/JYWwDg9gTgLgBAbxgTzAUwL5wGZQiOAcgEMoBrFdQgbgChRJZEAvLXfI5iAExttoDGEAHYBneAFdRaKAC0eAZQEALNCGJwAvHGYA6CACMAVmgEwAFAlpw4w4iDQAuHdZtxd4qMGEBzS67c4KDQARwlgYO4AfRk8KGcAIjsHOGBRINDwyISAGgC3bwA3YgAbYGjKNBioOMTktDgQKXgIbDhKuE9vH1z8jABKfN0YLxBzQcDdEG9zAGYcuCT7BqbxOAMG4ngStGI12bgVUmIzGVEEibcp4gAPcwAmAFZHhaWU1fgNuC3GiDWnx6HZTHU5Qc79PIDOiCERrKQyACC5EqSlU6i07VQaH8NnqzkIAAYADxdXzDUa6MDBbDQdQwGBobhEgGEWgDfgcoA
4 replies
TtRPC
Created by thibault on 10/10/2024 in #❓-help
Basic error handling patterns
Hello guys I am playing around with trpc and I don't know how to do error handling at a route level. I did read the docs about error handling but I don't know if my approach to this problem is good. How do you guys would handle errors in trpc ? For example I have this sign up route. And the way I am doing error handling is by re throwing a TRPCError in the catch clause. Which doesn't seems right.
signUp: publicProcedure
.input(signUpSchema)
.mutation(async ({ ctx, input }) => {
try {
// ...

// could throw on duplicate email.
await ctx.db.insert(userTable).values(...);

// ...
} catch (e) {
if (isPgError(e) && e.constraint_name === "user_email_unique") {
throw new TRPCError({
code: "CONFLICT",
message: "this email is already used",
});
}

throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: e instanceof Error ? e.message : "unhandled error",
});
}
}),
signUp: publicProcedure
.input(signUpSchema)
.mutation(async ({ ctx, input }) => {
try {
// ...

// could throw on duplicate email.
await ctx.db.insert(userTable).values(...);

// ...
} catch (e) {
if (isPgError(e) && e.constraint_name === "user_email_unique") {
throw new TRPCError({
code: "CONFLICT",
message: "this email is already used",
});
}

throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: e instanceof Error ? e.message : "unhandled error",
});
}
}),
I also try to use the middleware approach but that doesn't work since trpc override the error constructor.
signUp: publicProcedure
.input(signUpSchema)
.use(async ({ctx, next})=>{
const res = await next();

// does not work since the instance of res.error is no longer PostgresError but TRPCError
if(!res.ok && isPgError(res.error) && res.error.constraint_name === "user_email_unique") {
throw new TRPCError({
code: "CONFLICT",
message: "this email is already used",
});
}

throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: res.error instanceof Error ? res.error.message : "unhandled error",
});
})
.mutation(async ({ ctx, input }) => {
// ...

// could throw on duplicate email.
await ctx.db.insert(userTable).values(...);

// ...
}),
signUp: publicProcedure
.input(signUpSchema)
.use(async ({ctx, next})=>{
const res = await next();

// does not work since the instance of res.error is no longer PostgresError but TRPCError
if(!res.ok && isPgError(res.error) && res.error.constraint_name === "user_email_unique") {
throw new TRPCError({
code: "CONFLICT",
message: "this email is already used",
});
}

throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: res.error instanceof Error ? res.error.message : "unhandled error",
});
})
.mutation(async ({ ctx, input }) => {
// ...

// could throw on duplicate email.
await ctx.db.insert(userTable).values(...);

// ...
}),
2 replies