Last active
August 29, 2015 13:57
-
-
Save iofjuupasli/9644996 to your computer and use it in GitHub Desktop.
Mapping array of many-to-many entities to map with faster access
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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} | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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