1
0
mirror of https://github.com/barthuijgen/factorio-sites.git synced 2025-04-05 09:55:35 +02:00
2021-03-10 23:49:49 +01:00

14 lines
421 B
TypeScript

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const parseDatabaseError = (reason: any): Record<string, string> | null => {
const errors: Record<string, string> = {};
console.log(reason);
if (reason.code === "P2002") {
reason.meta.target.forEach((field: string) => {
errors[field] = `${field} is already taken`;
});
}
return Object.keys(errors).length ? errors : null;
};