skidy
PPrisma
•Created by skidy on 3/31/2025 in #help-and-questions
Custom error becomes normal error
what's the probably reason why my custom classes throws normal error in nextjs ?
export default class ServerError extends Error {
issues: IError;
constructor(message: string, issues: IError) {
super(message);
this.name = "ServerError";
this.issues = issues;
Object.setPrototypeOf(this, ServerError.prototype);
}
}
export default class ServerError extends Error {
issues: IError;
constructor(message: string, issues: IError) {
super(message);
this.name = "ServerError";
this.issues = issues;
Object.setPrototypeOf(this, ServerError.prototype);
}
}
@/lib/db.ts
export const prisma =
globalForPrisma.prisma ||
new PrismaClient().$extends({
query: {
user: {
create: ({ args, query }) => {
if (args.data.username) {
args.data.usernameUpdatedAt = new Date();
}
return query(args);
},
update: async ({ args, query }) => {
if (args.data.username) {
const oldUser = await prisma.user.findUnique({
where: args.where,
select: {
usernameUpdatedAt: true,
},
});
if (oldUser?.usernameUpdatedAt) {
const oneWeekAgo = new Date();
oneWeekAgo.setDate(oneWeekAgo.getDate() - 7);
if (oldUser.usernameUpdatedAt > oneWeekAgo) {
// throws the error
throw new ServerError(
"Username can only be updated once a week",
{
errors: [
{
code: "user/username-too-frequent",
message: "Username can only be updated once a week",
},
],
},
);
}
args.data.usernameUpdatedAt = new Date();
} else {
args.data.usernameUpdatedAt = new Date();
}
}
return query(args);
},
},
},
});
@/lib/db.ts
export const prisma =
globalForPrisma.prisma ||
new PrismaClient().$extends({
query: {
user: {
create: ({ args, query }) => {
if (args.data.username) {
args.data.usernameUpdatedAt = new Date();
}
return query(args);
},
update: async ({ args, query }) => {
if (args.data.username) {
const oldUser = await prisma.user.findUnique({
where: args.where,
select: {
usernameUpdatedAt: true,
},
});
if (oldUser?.usernameUpdatedAt) {
const oneWeekAgo = new Date();
oneWeekAgo.setDate(oneWeekAgo.getDate() - 7);
if (oldUser.usernameUpdatedAt > oneWeekAgo) {
// throws the error
throw new ServerError(
"Username can only be updated once a week",
{
errors: [
{
code: "user/username-too-frequent",
message: "Username can only be updated once a week",
},
],
},
);
}
args.data.usernameUpdatedAt = new Date();
} else {
args.data.usernameUpdatedAt = new Date();
}
}
return query(args);
},
},
},
});
3 replies
PPrisma
•Created by skidy on 3/3/2025 in #help-and-questions
Case insensitive for unique constraint
how do i make the name case insensitive
@@unique([userId, name])
@@unique([userId, name])
6 replies
PPrisma
•Created by skidy on 2/24/2025 in #help-and-questions
prisma validation
what's the best approach for validating data before creation if prisma currently can't validate nested writes?
7 replies