Created
December 10, 2016 15:58
-
-
Save casprwang/e9ec82a74dfc358d544f4ea3524a4664 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let categories = [ | |
{id: 'animals', 'parent': null}, | |
{id: 'mammals', 'parent': 'animals'}, | |
{id: 'dogs', 'parent': 'animals'}, | |
{id: 'chihuahua', 'parent': 'dogs'}, | |
{id: 'labrador', 'parent': 'dogs'}, | |
{id: 'persian', 'parent': 'cats'}, | |
] | |
let makeTree = (categories, parent) => { | |
let node = {} | |
categories | |
.filter(c => c.parent === parent) | |
.forEach(c => | |
node[c.id] = makeTree(categories, c.id)) | |
return node | |
} | |
console.log( | |
JSON.stringify( | |
makeTree(categories, null) | |
, null, 2) | |
) | |
/* output | |
{ | |
"animals": { | |
"mammals": {}, | |
"dogs": { | |
"chihuahua": {}, | |
"labrador": {} | |
} | |
} | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment