I'm trying to combine objects which share the same module key value, i.e. "credit cards". I need to return a single object per unique module with an array of distinct companies. The id and prod keys aren't important.
Here's the object I need to transform:
const data = [
{module: "credit_cards", id: "1", company: "ABC", prod: "1"},
{module: "credit_cards", id: "2", company: "XYZ", prod: "2"},
{module: "credit_cards", id: "3", company: "EFG", prod: "2"},
{module: "credit_cards", id: "2", company: "XYZ", prod: "2"},
{module: "mortgages", id: "4", company: "EFG", prod: "3"}
]
I need to return something like this:
const result = [
{module: "credit_cards", company: ["ABC", "XYZ", "EFG"]},
{module: "mortgages", company: ["EFG"]}
]
So far, I've tried this function:
const result = data.reduce(function(r, e) {
return Object.keys(e).forEach(function(k) {
if(!r[k]) r[k] = [].concat(e[k])
else r[k] = r[k].concat(e[k])
}), r
}, {})
But it just concatenated all the key/values together...
Any help would be awesome, thanks :)
company, while the others' keys areco_code, what's the logic behind that?