-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
index.ts
545 lines (496 loc) · 13.3 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import styles from 'tinyrainbow'
import {
printIteratorEntries,
printIteratorValues,
printListItems,
printObjectProperties,
} from './collections'
import AsymmetricMatcher from './plugins/AsymmetricMatcher'
import DOMCollection from './plugins/DOMCollection'
import DOMElement from './plugins/DOMElement'
import Immutable from './plugins/Immutable'
import ReactElement from './plugins/ReactElement'
import ReactTestComponent from './plugins/ReactTestComponent'
import type {
Colors,
Config,
NewPlugin,
Options,
OptionsReceived,
Plugin,
Plugins,
Refs,
Theme,
} from './types'
export type {
Colors,
CompareKeys,
Config,
Options,
OptionsReceived,
OldPlugin,
NewPlugin,
Plugin,
Plugins,
PrettyFormatOptions,
Printer,
Refs,
Theme,
} from './types'
const toString = Object.prototype.toString
const toISOString = Date.prototype.toISOString
const errorToString = Error.prototype.toString
const regExpToString = RegExp.prototype.toString
/**
* Explicitly comparing typeof constructor to function avoids undefined as name
* when mock identity-obj-proxy returns the key as the value for any key.
*/
function getConstructorName(val: new (...args: Array<any>) => unknown) {
return (typeof val.constructor === 'function' && val.constructor.name) || 'Object'
}
/** Is val is equal to global window object? Works even if it does not exist :) */
function isWindow(val: unknown) {
return typeof window !== 'undefined' && val === window
}
// eslint-disable-next-line regexp/no-super-linear-backtracking
const SYMBOL_REGEXP = /^Symbol\((.*)\)(.*)$/
const NEWLINE_REGEXP = /\n/g
class PrettyFormatPluginError extends Error {
constructor(message: string, stack: string) {
super(message)
this.stack = stack
this.name = this.constructor.name
}
}
function isToStringedArrayType(toStringed: string): boolean {
return (
toStringed === '[object Array]'
|| toStringed === '[object ArrayBuffer]'
|| toStringed === '[object DataView]'
|| toStringed === '[object Float32Array]'
|| toStringed === '[object Float64Array]'
|| toStringed === '[object Int8Array]'
|| toStringed === '[object Int16Array]'
|| toStringed === '[object Int32Array]'
|| toStringed === '[object Uint8Array]'
|| toStringed === '[object Uint8ClampedArray]'
|| toStringed === '[object Uint16Array]'
|| toStringed === '[object Uint32Array]'
)
}
function printNumber(val: number): string {
return Object.is(val, -0) ? '-0' : String(val)
}
function printBigInt(val: bigint): string {
return String(`${val}n`)
}
function printFunction(val: Function, printFunctionName: boolean): string {
if (!printFunctionName) {
return '[Function]'
}
return `[Function ${val.name || 'anonymous'}]`
}
function printSymbol(val: symbol): string {
return String(val).replace(SYMBOL_REGEXP, 'Symbol($1)')
}
function printError(val: Error): string {
return `[${errorToString.call(val)}]`
}
/**
* The first port of call for printing an object, handles most of the
* data-types in JS.
*/
function printBasicValue(
val: any,
printFunctionName: boolean,
escapeRegex: boolean,
escapeString: boolean,
): string | null {
if (val === true || val === false) {
return `${val}`
}
if (val === undefined) {
return 'undefined'
}
if (val === null) {
return 'null'
}
const typeOf = typeof val
if (typeOf === 'number') {
return printNumber(val)
}
if (typeOf === 'bigint') {
return printBigInt(val)
}
if (typeOf === 'string') {
if (escapeString) {
return `"${val.replaceAll(/"|\\/g, '\\$&')}"`
}
return `"${val}"`
}
if (typeOf === 'function') {
return printFunction(val, printFunctionName)
}
if (typeOf === 'symbol') {
return printSymbol(val)
}
const toStringed = toString.call(val)
if (toStringed === '[object WeakMap]') {
return 'WeakMap {}'
}
if (toStringed === '[object WeakSet]') {
return 'WeakSet {}'
}
if (
toStringed === '[object Function]'
|| toStringed === '[object GeneratorFunction]'
) {
return printFunction(val, printFunctionName)
}
if (toStringed === '[object Symbol]') {
return printSymbol(val)
}
if (toStringed === '[object Date]') {
return Number.isNaN(+val) ? 'Date { NaN }' : toISOString.call(val)
}
if (toStringed === '[object Error]') {
return printError(val)
}
if (toStringed === '[object RegExp]') {
if (escapeRegex) {
// https://github.com/benjamingr/RegExp.escape/blob/main/polyfill.js
return regExpToString.call(val).replaceAll(/[$()*+.?[\\\]^{|}]/g, '\\$&')
}
return regExpToString.call(val)
}
if (val instanceof Error) {
return printError(val)
}
return null
}
/**
* Handles more complex objects ( such as objects with circular references.
* maps and sets etc )
*/
function printComplexValue(
val: any,
config: Config,
indentation: string,
depth: number,
refs: Refs,
hasCalledToJSON?: boolean,
): string {
if (refs.includes(val)) {
return '[Circular]'
}
refs = [...refs]
refs.push(val)
const hitMaxDepth = ++depth > config.maxDepth
const min = config.min
if (
config.callToJSON
&& !hitMaxDepth
&& val.toJSON
&& typeof val.toJSON === 'function'
&& !hasCalledToJSON
) {
return printer(val.toJSON(), config, indentation, depth, refs, true)
}
const toStringed = toString.call(val)
if (toStringed === '[object Arguments]') {
return hitMaxDepth
? '[Arguments]'
: `${min ? '' : 'Arguments '}[${printListItems(
val,
config,
indentation,
depth,
refs,
printer,
)}]`
}
if (isToStringedArrayType(toStringed)) {
return hitMaxDepth
? `[${val.constructor.name}]`
: `${
min
? ''
: !config.printBasicPrototype && val.constructor.name === 'Array'
? ''
: `${val.constructor.name} `
}[${printListItems(val, config, indentation, depth, refs, printer)}]`
}
if (toStringed === '[object Map]') {
return hitMaxDepth
? '[Map]'
: `Map {${printIteratorEntries(
val.entries(),
config,
indentation,
depth,
refs,
printer,
' => ',
)}}`
}
if (toStringed === '[object Set]') {
return hitMaxDepth
? '[Set]'
: `Set {${printIteratorValues(
val.values(),
config,
indentation,
depth,
refs,
printer,
)}}`
}
// Avoid failure to serialize global window object in jsdom test environment.
// For example, not even relevant if window is prop of React element.
return hitMaxDepth || isWindow(val)
? `[${getConstructorName(val)}]`
: `${
min
? ''
: !config.printBasicPrototype && getConstructorName(val) === 'Object'
? ''
: `${getConstructorName(val)} `
}{${printObjectProperties(
val,
config,
indentation,
depth,
refs,
printer,
)}}`
}
function isNewPlugin(plugin: Plugin): plugin is NewPlugin {
return (plugin as NewPlugin).serialize != null
}
function printPlugin(
plugin: Plugin,
val: any,
config: Config,
indentation: string,
depth: number,
refs: Refs,
): string {
let printed
try {
printed = isNewPlugin(plugin)
? plugin.serialize(val, config, indentation, depth, refs, printer)
: plugin.print(
val,
valChild => printer(valChild, config, indentation, depth, refs),
(str) => {
const indentationNext = indentation + config.indent
return (
indentationNext
+ str.replaceAll(NEWLINE_REGEXP, `\n${indentationNext}`)
)
},
{
edgeSpacing: config.spacingOuter,
min: config.min,
spacing: config.spacingInner,
},
config.colors,
)
}
catch (error: any) {
throw new PrettyFormatPluginError(error.message, error.stack)
}
if (typeof printed !== 'string') {
throw new TypeError(
`pretty-format: Plugin must return type "string" but instead returned "${typeof printed}".`,
)
}
return printed
}
function findPlugin(plugins: Plugins, val: unknown) {
for (const plugin of plugins) {
try {
if (plugin.test(val)) {
return plugin
}
}
catch (error: any) {
throw new PrettyFormatPluginError(error.message, error.stack)
}
}
return null
}
function printer(
val: unknown,
config: Config,
indentation: string,
depth: number,
refs: Refs,
hasCalledToJSON?: boolean,
): string {
const plugin = findPlugin(config.plugins, val)
if (plugin !== null) {
return printPlugin(plugin, val, config, indentation, depth, refs)
}
const basicResult = printBasicValue(
val,
config.printFunctionName,
config.escapeRegex,
config.escapeString,
)
if (basicResult !== null) {
return basicResult
}
return printComplexValue(
val,
config,
indentation,
depth,
refs,
hasCalledToJSON,
)
}
const DEFAULT_THEME: Theme = {
comment: 'gray',
content: 'reset',
prop: 'yellow',
tag: 'cyan',
value: 'green',
}
const DEFAULT_THEME_KEYS = Object.keys(DEFAULT_THEME) as Array<
keyof typeof DEFAULT_THEME
>
export const DEFAULT_OPTIONS: Options = {
callToJSON: true,
compareKeys: undefined,
escapeRegex: false,
escapeString: true,
highlight: false,
indent: 2,
maxDepth: Number.POSITIVE_INFINITY,
maxWidth: Number.POSITIVE_INFINITY,
min: false,
plugins: [],
printBasicPrototype: true,
printFunctionName: true,
theme: DEFAULT_THEME,
} satisfies Options
function validateOptions(options: OptionsReceived) {
for (const key of Object.keys(options)) {
if (!Object.prototype.hasOwnProperty.call(DEFAULT_OPTIONS, key)) {
throw new Error(`pretty-format: Unknown option "${key}".`)
}
}
if (options.min && options.indent !== undefined && options.indent !== 0) {
throw new Error(
'pretty-format: Options "min" and "indent" cannot be used together.',
)
}
}
function getColorsHighlight(): Colors {
return DEFAULT_THEME_KEYS.reduce((colors, key) => {
const value = DEFAULT_THEME[key]
const color = value && (styles as any)[value]
if (
color
&& typeof color.close === 'string'
&& typeof color.open === 'string'
) {
colors[key] = color
}
else {
throw new Error(
`pretty-format: Option "theme" has a key "${key}" whose value "${value}" is undefined in ansi-styles.`,
)
}
return colors
}, Object.create(null))
}
function getColorsEmpty(): Colors {
return DEFAULT_THEME_KEYS.reduce((colors, key) => {
colors[key] = { close: '', open: '' }
return colors
}, Object.create(null))
}
function getPrintFunctionName(options?: OptionsReceived) {
return options?.printFunctionName ?? DEFAULT_OPTIONS.printFunctionName
}
function getEscapeRegex(options?: OptionsReceived) {
return options?.escapeRegex ?? DEFAULT_OPTIONS.escapeRegex
}
function getEscapeString(options?: OptionsReceived) {
return options?.escapeString ?? DEFAULT_OPTIONS.escapeString
}
function getConfig(options?: OptionsReceived): Config {
return {
callToJSON: options?.callToJSON ?? DEFAULT_OPTIONS.callToJSON,
colors: options?.highlight ? getColorsHighlight() : getColorsEmpty(),
compareKeys:
typeof options?.compareKeys === 'function' || options?.compareKeys === null
? options.compareKeys
: DEFAULT_OPTIONS.compareKeys,
escapeRegex: getEscapeRegex(options),
escapeString: getEscapeString(options),
indent: options?.min
? ''
: createIndent(options?.indent ?? DEFAULT_OPTIONS.indent),
maxDepth: options?.maxDepth ?? DEFAULT_OPTIONS.maxDepth,
maxWidth: options?.maxWidth ?? DEFAULT_OPTIONS.maxWidth,
min: options?.min ?? DEFAULT_OPTIONS.min,
plugins: options?.plugins ?? DEFAULT_OPTIONS.plugins,
printBasicPrototype: options?.printBasicPrototype ?? true,
printFunctionName: getPrintFunctionName(options),
spacingInner: options?.min ? ' ' : '\n',
spacingOuter: options?.min ? '' : '\n',
}
}
function createIndent(indent: number): string {
return Array.from({ length: indent + 1 }).join(' ')
}
/**
* Returns a presentation string of your `val` object
* @param val any potential JavaScript object
* @param options Custom settings
*/
export function format(val: unknown, options?: OptionsReceived): string {
if (options) {
validateOptions(options)
if (options.plugins) {
const plugin = findPlugin(options.plugins, val)
if (plugin !== null) {
return printPlugin(plugin, val, getConfig(options), '', 0, [])
}
}
}
const basicResult = printBasicValue(
val,
getPrintFunctionName(options),
getEscapeRegex(options),
getEscapeString(options),
)
if (basicResult !== null) {
return basicResult
}
return printComplexValue(val, getConfig(options), '', 0, [])
}
export const plugins: {
AsymmetricMatcher: NewPlugin
DOMCollection: NewPlugin
DOMElement: NewPlugin
Immutable: NewPlugin
ReactElement: NewPlugin
ReactTestComponent: NewPlugin
} = {
AsymmetricMatcher,
DOMCollection,
DOMElement,
Immutable,
ReactElement,
ReactTestComponent,
}