Skip to content

Commit 73919e4

Browse files
committed
fix: add new constructed object when anonymous function is given instead of mutated one
fix #24
1 parent 38cb181 commit 73919e4

File tree

1 file changed

+8
-39
lines changed

1 file changed

+8
-39
lines changed

src/morphism.ts

+8-39
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,6 @@ const aggregator = (paths: any, object: any) => {
44
}, {});
55
};
66

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-
267
function assignInWith(target: any, source: any, customizer: (targetValue: any, sourceValue: any) => any) {
278
Object.entries(source).forEach(([field, value]) => {
289
target[field] = customizer(target[field], value);
@@ -222,6 +203,7 @@ Morphism = (schema: Schema, items?: any, type?: any): typeof type => {
222203
} else if (type) {
223204
let finalSchema = getSchemaForType(type, schema);
224205
return (futureInput: any) => {
206+
constructed = new type();
225207
return transformItems(finalSchema, customizer, constructed)(futureInput);
226208
};
227209
}
@@ -233,20 +215,8 @@ const getSchemaForType = (type: any, baseSchema: any) => {
233215
let finalSchema = Object.assign(defaultSchema, baseSchema);
234216
return finalSchema;
235217
};
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-
}
247218

248-
// memoize.Cache = WeakMap;
249-
const _registry = memoize(factory);
219+
const _registry: any = { cache: new Map() };
250220

251221
class MorphismRegistry {
252222
/**
@@ -263,10 +233,9 @@ class MorphismRegistry {
263233
} else if (MorphismRegistry.exists(type)) {
264234
throw new Error(`A mapper for ${type.name} has already been registered`);
265235
}
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;
270239
}
271240
/**
272241
*
@@ -284,7 +253,7 @@ class MorphismRegistry {
284253
return mapper;
285254
}
286255
}
287-
return _registry(type)(data);
256+
return MorphismRegistry.getMapper(type)(data);
288257
}
289258

290259
static getMapper(type: any) {
@@ -305,9 +274,9 @@ class MorphismRegistry {
305274
} else if (!MorphismRegistry.exists(type)) {
306275
throw new Error(`The type ${type.name} is not registered. Register it using \`Mophism.register(${type.name}, schema)\``);
307276
} else {
308-
let fn = factory(type, schema);
277+
let fn = Morphism(schema, null, type);
309278
_registry.cache.set(type, fn);
310-
return _registry(type);
279+
return fn;
311280
}
312281
}
313282

0 commit comments

Comments
 (0)