When using Lodash _.groupBy method on an objects keys, I want to preserve the keys.
Suppose I have the object:
foods = {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
},
broccoli: {
type: 'vegetable',
value: 2
}
}
I would like to do a transformation to get the output
transformedFood = {
fruit: {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
}
},
vegetable: {
broccoli: {
type: 'vegetable',
value: 2
}
}
}
Doing transformedFood = _.groupBy(foods, 'type')
gives the following output:
transformedFood = {
fruit: {
{
type: 'fruit',
value: 0
},
{
type: 'fruit',
value: 1
}
},
vegetable: {
{
type: 'vegetable',
value: 2
}
}
}
Notice how the original keys are lost. Anyone know of an elegant way to do this, ideally in a single line lodash function?
When using Lodash _.groupBy method on an objects keys, I want to preserve the keys.
Suppose I have the object:
foods = {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
},
broccoli: {
type: 'vegetable',
value: 2
}
}
I would like to do a transformation to get the output
transformedFood = {
fruit: {
apple: {
type: 'fruit',
value: 0
},
banana: {
type: 'fruit',
value: 1
}
},
vegetable: {
broccoli: {
type: 'vegetable',
value: 2
}
}
}
Doing transformedFood = _.groupBy(foods, 'type')
gives the following output:
transformedFood = {
fruit: {
{
type: 'fruit',
value: 0
},
{
type: 'fruit',
value: 1
}
},
vegetable: {
{
type: 'vegetable',
value: 2
}
}
}
Notice how the original keys are lost. Anyone know of an elegant way to do this, ideally in a single line lodash function?
Share Improve this question asked Nov 5, 2014 at 4:29 leejt489leejt489 6156 silver badges13 bronze badges2 Answers
Reset to default 8var transformedFood = _.transform(foods, function(result, item, name){
result[item.type] = result[item.type] || {};
result[item.type][name] = item;
});
http://jsbin./purenogija/1/edit?js,console
If you use lodash fp, don't forget the last argument accumulator
.