Skip to content

Instantly share code, notes, and snippets.

@iofjuupasli
Last active August 29, 2015 13:57
Show Gist options
  • Save iofjuupasli/9644996 to your computer and use it in GitHub Desktop.
Save iofjuupasli/9644996 to your computer and use it in GitHub Desktop.
Mapping array of many-to-many entities to map with faster access
function manyToManyMap(source, first, second) {
'use strict';
var result = {}, i, item;
for (i = 0; i < source.length; i += 1) {
item = source[i];
if (!result[item[first]]) {
result[item[first]] = {};
}
result[item[first]][item[second]] = item;
}
return result;
}
/*http://jsperf.com/many-to-many-mapping*/
/*global manyToManyMap*/
/*jslint devel: true */
var testArray = [
{first_id: 1, second_id: 1},
{first_id: 2, second_id: 2},
{first_id: 1, second_id: 2},
{first_id: 2, second_id: 1}
];
var testMap = manyToManyMap(testArray, 'first_id', 'second_id');
console.log(testMap[1][1]);
console.log(testMap[1][2]);
console.log(testMap[2][1]);
console.log(testMap[2][2]);
/*
Object {first_id: 1, second_id: 1}
Object {first_id: 1, second_id: 2}
Object {first_id: 2, second_id: 1}
Object {first_id: 2, second_id: 2}
*/
/*jslint nomen: true */
/*global _*/
function manyToManyMap(source, first, second) {
'use strict';
return _.each(_.groupBy(source, first), function (group, key, collection) {
collection[key] = _.indexBy(group, second);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment