Is there an Underscore.js function that can map one object to another object, based on the other object's properties?
(Kind of how AutoMapper works in .NET.)
For example:
var objectA = { 'name': 'Jonathan', 'city': 'Sydney' };
var objectB = { 'name': 'Jonathan Conway', 'city': 'Sydney', 'errors': [] }
_.mapperMethod(objectB);
=> { 'name': 'Jonathan Conway', 'city': 'Sydney' };
Is there an Underscore.js function that can map one object to another object, based on the other object's properties?
(Kind of how AutoMapper works in .NET.)
For example:
var objectA = { 'name': 'Jonathan', 'city': 'Sydney' };
var objectB = { 'name': 'Jonathan Conway', 'city': 'Sydney', 'errors': [] }
_.mapperMethod(objectB);
=> { 'name': 'Jonathan Conway', 'city': 'Sydney' };
Share
Improve this question
edited Aug 9, 2013 at 14:46
stuartd
73.4k16 gold badges138 silver badges168 bronze badges
asked Aug 9, 2013 at 6:04
JonathanJonathan
32.9k40 gold badges143 silver badges209 bronze badges
0
3 Answers
Reset to default 11Possibly _.extend()
:
_.extend(objectA, objectB);
console.log(objectA);
// { 'name': 'Jonathan Conway', 'city': 'Sydney', 'errors': [] }
If you don't want to pick up additional keys, you can use it with _.keys()
and _.pick()
:
var keys = _.keys(objectA);
_.extend(objectA, _.pick(objectB, keys));
console.log(objectA);
// { 'name': 'Jonathan Conway', 'city': 'Sydney' }
Below is my auto mapper
var sourceObj, desObj;
var map: function (source, destination) {
var desKeys = _.keys(destination), functions;
_.extend(destination, _.pick(source, desKeys));
sourceObj = source;
desObj = destination;
functions = {
forMember: function (sourceKey, desKey) {
var keys = sourceKey.split('.'), sourceValue = sourceObj, index = 0;
// incase sourceKey is a nested object like objectA.Value
if (keys.length) {
while (index < keys.length) {
sourceValue = sourceValue[keys[index]];
index++;
}
desObj[desKey] = sourceValue;
}
else {
desObj[desKey] = sourceObj[sourceKey];
}
return functions;
}
};
return functions;
}
var mapList: function (listSource, listDestination) {
_.each(listDestination, function(destination, i){
var source = listSource[i];
map(source,destination);
});
functions = {
forMember: function (sourceKey, desKey) {
_.each(listDestination, function(destination, i){
var source = listSource[i];
map(source,destination)
.forMember(sourceKey, desKey);
});
return functions;
}
};
return functions;
}
and how to use it
var source = {
Name: 'Nguyen Tran',
Age: '30',
Address: {
Street: '121 Le Van Viet',
City: 'HCM'
}
};
var destination = {
Name: 'test',
age: '25',
Street: '',
City: ''
};
autoMapper.map(source, destination)
.forMember('Age', 'age')
.forMember('Address.Street', 'Street')
.forMember('Address.City', 'City')
Hope this work for you.
In the last couple of months, I have managed to create a pretty plete AutoMapper library port for TypeScript / JavaScript: AutoMapperTS. The port does - amongst many other features - support flattening / nesting and asynchronous mappings.
For more information about the AutoMapperTS library, including how to install it using NPM and Bower, please check out the library on GitHub: http://b.ldmn.nl/AutoMapperTS