| import { parse } from 'next/dist/compiled/stacktrace-parser' |
| import type { StackFrame } from 'next/dist/compiled/stacktrace-parser' |
| import { |
| decorateServerError, |
| type ErrorSourceType, |
| } from '../../shared/lib/error-source' |
|
|
| function getFilesystemFrame(frame: StackFrame): StackFrame { |
| const f: StackFrame = { ...frame } |
|
|
| if (typeof f.file === 'string') { |
| if ( |
| |
| f.file.startsWith('/') || |
| |
| /^[a-z]:\\/i.test(f.file) || |
| |
| f.file.startsWith('\\\\') |
| ) { |
| f.file = `file://${f.file}` |
| } |
| } |
|
|
| return f |
| } |
|
|
| export function getServerError(error: Error, type: ErrorSourceType): Error { |
| if (error.name === 'TurbopackInternalError') { |
| |
| |
| const turbopackInternalError = new Error( |
| 'An unexpected Turbopack error occurred. Please see the output of `next dev` for more details.' |
| ) |
| decorateServerError(turbopackInternalError, type) |
| return turbopackInternalError |
| } |
|
|
| let n: Error |
| try { |
| throw new Error(error.message) |
| } catch (e) { |
| n = e as Error |
| } |
|
|
| n.name = error.name |
| try { |
| n.stack = `${n.toString()}\n${parse(error.stack!) |
| .map(getFilesystemFrame) |
| .map((f) => { |
| let str = ` at ${f.methodName}` |
| if (f.file) { |
| let loc = f.file |
| if (f.lineNumber) { |
| loc += `:${f.lineNumber}` |
| if (f.column) { |
| loc += `:${f.column}` |
| } |
| } |
| str += ` (${loc})` |
| } |
| return str |
| }) |
| .join('\n')}` |
| } catch { |
| n.stack = error.stack |
| } |
|
|
| decorateServerError(n, type) |
| return n |
| } |
|
|