mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
748 B
23 lines
748 B
export async function extractSdkResponseErrorMsg(e: Error & { response: any }) { |
|
if (!e || !e.response) return e.message |
|
let msg |
|
let errors: any[] | null = null |
|
if (e.response.data instanceof Blob) { |
|
try { |
|
const parsedData = JSON.parse(await e.response.data.text()) |
|
msg = parsedData.msg |
|
errors = parsedData.errors |
|
} catch { |
|
msg = 'Some internal error occurred' |
|
} |
|
} else { |
|
msg = e.response.data.msg || e.response.data.message || 'Some internal error occurred' |
|
errors = e.response.data.errors |
|
} |
|
|
|
if (Array.isArray(errors) && errors.length) { |
|
return errors.map((e: any) => (e.instancePath ? `${e.instancePath} - ` : '') + e.message).join(', ') |
|
} |
|
|
|
return msg || 'Some error occurred' |
|
}
|
|
|