-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
deepCyclicCopyReplaceable.ts
171 lines (147 loc) · 4.45 KB
/
deepCyclicCopyReplaceable.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
/**
* 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 {plugins} from 'pretty-format';
const builtInObject: Array<unknown> = [
Array,
Date,
Float32Array,
Float64Array,
Int16Array,
Int32Array,
Int8Array,
Map,
Set,
RegExp,
Uint16Array,
Uint32Array,
Uint8Array,
Uint8ClampedArray,
];
if (typeof Buffer !== 'undefined') {
builtInObject.push(Buffer);
}
export const SERIALIZABLE_PROPERTIES = Symbol.for(
'@jest/serializableProperties',
);
const isBuiltInObject = (object: any) =>
builtInObject.includes(object.constructor);
const isMap = (value: any): value is Map<unknown, unknown> =>
value.constructor === Map;
export default function deepCyclicCopyReplaceable<T>(
value: T,
cycles = new WeakMap<any, any>(),
): T {
if (typeof value !== 'object' || value === null) {
return value;
} else if (cycles.has(value)) {
return cycles.get(value);
} else if (Array.isArray(value)) {
return deepCyclicCopyArray(value, cycles);
} else if (isMap(value)) {
return deepCyclicCopyMap(value, cycles);
} else if (isBuiltInObject(value)) {
return value;
} else if (plugins.DOMElement.test(value)) {
return (value as unknown as Element).cloneNode(true) as unknown as T;
} else {
return deepCyclicCopyObject(value, cycles);
}
}
function deepCyclicCopyObject<T>(object: T, cycles: WeakMap<any, unknown>): T {
const newObject = Object.create(Object.getPrototypeOf(object));
let descriptors: Record<string | symbol, PropertyDescriptor> = {};
let obj = object;
do {
const serializableProperties = getSerializableProperties(obj);
if (serializableProperties === undefined) {
descriptors = Object.assign(
{},
Object.getOwnPropertyDescriptors(obj),
descriptors,
);
} else {
for (const property of serializableProperties) {
if (!descriptors[property]) {
descriptors[property] = Object.getOwnPropertyDescriptor(
obj,
property,
)!;
}
}
}
} while (
(obj = Object.getPrototypeOf(obj)) &&
obj !== Object.getPrototypeOf({})
);
cycles.set(object, newObject);
const newDescriptors = [
...Object.keys(descriptors),
...Object.getOwnPropertySymbols(descriptors),
].reduce(
//@ts-expect-error because typescript do not support symbol key in object
//https://github.com/microsoft/TypeScript/issues/1863
(newDescriptors: {[x: string]: PropertyDescriptor}, key: string) => {
const enumerable = descriptors[key].enumerable;
newDescriptors[key] = {
configurable: true,
enumerable,
value: deepCyclicCopyReplaceable(
// this accesses the value or getter, depending. We just care about the value anyways, and this allows us to not mess with accessors
// it has the side effect of invoking the getter here though, rather than copying it over
(object as Record<string | symbol, unknown>)[key],
cycles,
),
writable: true,
};
return newDescriptors;
},
{},
);
//@ts-expect-error because typescript do not support symbol key in object
//https://github.com/microsoft/TypeScript/issues/1863
return Object.defineProperties(newObject, newDescriptors);
}
function deepCyclicCopyArray<T>(
array: Array<T>,
cycles: WeakMap<any, unknown>,
): T {
const newArray = new (Object.getPrototypeOf(array).constructor)(array.length);
const length = array.length;
cycles.set(array, newArray);
for (let i = 0; i < length; i++) {
newArray[i] = deepCyclicCopyReplaceable(array[i], cycles);
}
return newArray;
}
function deepCyclicCopyMap<T>(
map: Map<unknown, unknown>,
cycles: WeakMap<any, unknown>,
): T {
const newMap = new Map();
cycles.set(map, newMap);
for (const [key, value] of map) {
newMap.set(key, deepCyclicCopyReplaceable(value, cycles));
}
return newMap as any;
}
function getSerializableProperties<T>(
obj: T,
): Array<string | symbol> | undefined {
if (typeof obj !== 'object' || obj === null) {
return;
}
const serializableProperties: unknown = (obj as Record<string | symbol, any>)[
SERIALIZABLE_PROPERTIES
];
if (!Array.isArray(serializableProperties)) {
return;
}
return serializableProperties.filter(
(key): key is string | symbol =>
typeof key === 'string' || typeof key === 'symbol',
);
}