|
|
import isError from '../../lib/is-error' |
|
|
|
|
|
function formatObject(arg: unknown, depth: number) { |
|
|
switch (typeof arg) { |
|
|
case 'object': |
|
|
if (arg === null) { |
|
|
return 'null' |
|
|
} else if (Array.isArray(arg)) { |
|
|
let result = '[' |
|
|
if (depth < 1) { |
|
|
for (let i = 0; i < arg.length; i++) { |
|
|
if (result !== '[') { |
|
|
result += ',' |
|
|
} |
|
|
if (Object.prototype.hasOwnProperty.call(arg, i)) { |
|
|
result += formatObject(arg[i], depth + 1) |
|
|
} |
|
|
} |
|
|
} else { |
|
|
result += arg.length > 0 ? '...' : '' |
|
|
} |
|
|
result += ']' |
|
|
return result |
|
|
} else if (arg instanceof Error) { |
|
|
return arg + '' |
|
|
} else { |
|
|
const keys = Object.keys(arg) |
|
|
let result = '{' |
|
|
if (depth < 1) { |
|
|
for (let i = 0; i < keys.length; i++) { |
|
|
const key = keys[i] |
|
|
const desc = Object.getOwnPropertyDescriptor(arg, 'key') |
|
|
if (desc && !desc.get && !desc.set) { |
|
|
const jsonKey = JSON.stringify(key) |
|
|
if (jsonKey !== '"' + key + '"') { |
|
|
result += jsonKey + ': ' |
|
|
} else { |
|
|
result += key + ': ' |
|
|
} |
|
|
result += formatObject(desc.value, depth + 1) |
|
|
} |
|
|
} |
|
|
} else { |
|
|
result += keys.length > 0 ? '...' : '' |
|
|
} |
|
|
result += '}' |
|
|
return result |
|
|
} |
|
|
case 'string': |
|
|
return JSON.stringify(arg) |
|
|
case 'number': |
|
|
case 'bigint': |
|
|
case 'boolean': |
|
|
case 'symbol': |
|
|
case 'undefined': |
|
|
case 'function': |
|
|
default: |
|
|
return String(arg) |
|
|
} |
|
|
} |
|
|
|
|
|
export function formatConsoleArgs(args: unknown[]): string { |
|
|
let message: string |
|
|
let idx: number |
|
|
if (typeof args[0] === 'string') { |
|
|
message = args[0] |
|
|
idx = 1 |
|
|
} else { |
|
|
message = '' |
|
|
idx = 0 |
|
|
} |
|
|
let result = '' |
|
|
let startQuote = false |
|
|
for (let i = 0; i < message.length; ++i) { |
|
|
const char = message[i] |
|
|
if (char !== '%' || i === message.length - 1 || idx >= args.length) { |
|
|
result += char |
|
|
continue |
|
|
} |
|
|
|
|
|
const code = message[++i] |
|
|
switch (code) { |
|
|
case 'c': { |
|
|
|
|
|
|
|
|
result = startQuote ? `${result}]` : `[${result}` |
|
|
startQuote = !startQuote |
|
|
idx++ |
|
|
break |
|
|
} |
|
|
case 'O': |
|
|
case 'o': { |
|
|
result += formatObject(args[idx++], 0) |
|
|
break |
|
|
} |
|
|
case 'd': |
|
|
case 'i': { |
|
|
result += parseInt(args[idx++] as any, 10) |
|
|
break |
|
|
} |
|
|
case 'f': { |
|
|
result += parseFloat(args[idx++] as any) |
|
|
break |
|
|
} |
|
|
case 's': { |
|
|
result += String(args[idx++]) |
|
|
break |
|
|
} |
|
|
default: |
|
|
result += '%' + code |
|
|
} |
|
|
} |
|
|
|
|
|
for (; idx < args.length; idx++) { |
|
|
result += (idx > 0 ? ' ' : '') + formatObject(args[idx], 0) |
|
|
} |
|
|
|
|
|
return result |
|
|
} |
|
|
|
|
|
export function parseConsoleArgs(args: unknown[]): { |
|
|
environmentName: string | null |
|
|
error: Error | null |
|
|
} { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( |
|
|
args.length > 3 && |
|
|
typeof args[0] === 'string' && |
|
|
args[0].startsWith('%c%s%c') && |
|
|
typeof args[1] === 'string' && |
|
|
typeof args[2] === 'string' && |
|
|
typeof args[3] === 'string' |
|
|
) { |
|
|
const environmentName = args[2] |
|
|
const maybeError = args[4] |
|
|
|
|
|
return { |
|
|
environmentName: environmentName.trim(), |
|
|
error: isError(maybeError) ? maybeError : null, |
|
|
} |
|
|
} |
|
|
|
|
|
return { |
|
|
environmentName: null, |
|
|
error: null, |
|
|
} |
|
|
} |
|
|
|