@@ -4,25 +4,6 @@ const aggregator = (paths: any, object: any) => {
4
4
} , { } ) ;
5
5
} ;
6
6
7
- const memoize = ( func : any , resolver ?: any ) => {
8
- if ( typeof func !== 'function' || ( resolver != null && typeof resolver !== 'function' ) ) {
9
- throw new TypeError ( 'Expected a function' ) ;
10
- }
11
- const memoized : any = function ( ...args : any [ ] ) {
12
- const key = resolver ? resolver . apply ( this , args ) : args [ 0 ] ;
13
- const cache = memoized . cache ;
14
-
15
- if ( cache . has ( key ) ) {
16
- return cache . get ( key ) ;
17
- }
18
- const result = func . apply ( this , args ) ;
19
- memoized . cache = cache . set ( key , result ) || cache ;
20
- return result ;
21
- } ;
22
- memoized . cache = new Map ( ) ;
23
- return memoized ;
24
- } ;
25
-
26
7
function assignInWith ( target : any , source : any , customizer : ( targetValue : any , sourceValue : any ) => any ) {
27
8
Object . entries ( source ) . forEach ( ( [ field , value ] ) => {
28
9
target [ field ] = customizer ( target [ field ] , value ) ;
@@ -222,6 +203,7 @@ Morphism = (schema: Schema, items?: any, type?: any): typeof type => {
222
203
} else if ( type ) {
223
204
let finalSchema = getSchemaForType ( type , schema ) ;
224
205
return ( futureInput : any ) => {
206
+ constructed = new type ( ) ;
225
207
return transformItems ( finalSchema , customizer , constructed ) ( futureInput ) ;
226
208
} ;
227
209
}
@@ -233,20 +215,8 @@ const getSchemaForType = (type: any, baseSchema: any) => {
233
215
let finalSchema = Object . assign ( defaultSchema , baseSchema ) ;
234
216
return finalSchema ;
235
217
} ;
236
- /**
237
- * Type Mapper Factory
238
- * @param {type } type Class Type to be registered
239
- * @param {Object } schema Configuration of how properties are computed from the source
240
- * @param {Object | Array } items Object or Collection to be mapped
241
- */
242
- function factory ( type : any , schema ?: any , items ?: any ) {
243
- let finalSchema = getSchemaForType ( type , schema ) ;
244
-
245
- return Morphism ( finalSchema , items , type ) ;
246
- }
247
218
248
- // memoize.Cache = WeakMap;
249
- const _registry = memoize ( factory ) ;
219
+ const _registry : any = { cache : new Map ( ) } ;
250
220
251
221
class MorphismRegistry {
252
222
/**
@@ -263,10 +233,9 @@ class MorphismRegistry {
263
233
} else if ( MorphismRegistry . exists ( type ) ) {
264
234
throw new Error ( `A mapper for ${ type . name } has already been registered` ) ;
265
235
}
266
- /**
267
- * @param {Object | Array } items Object or Collection to be mapped
268
- */
269
- return _registry ( type , schema ) ; // Store the result of the executed function in a WeakMap cache object
236
+ const mapper = Morphism ( schema , null , type ) ;
237
+ _registry . cache . set ( type , mapper ) ;
238
+ return mapper ;
270
239
}
271
240
/**
272
241
*
@@ -284,7 +253,7 @@ class MorphismRegistry {
284
253
return mapper ;
285
254
}
286
255
}
287
- return _registry ( type ) ( data ) ;
256
+ return MorphismRegistry . getMapper ( type ) ( data ) ;
288
257
}
289
258
290
259
static getMapper ( type : any ) {
@@ -305,9 +274,9 @@ class MorphismRegistry {
305
274
} else if ( ! MorphismRegistry . exists ( type ) ) {
306
275
throw new Error ( `The type ${ type . name } is not registered. Register it using \`Mophism.register(${ type . name } , schema)\`` ) ;
307
276
} else {
308
- let fn = factory ( type , schema ) ;
277
+ let fn = Morphism ( schema , null , type ) ;
309
278
_registry . cache . set ( type , fn ) ;
310
- return _registry ( type ) ;
279
+ return fn ;
311
280
}
312
281
}
313
282
0 commit comments