-
Notifications
You must be signed in to change notification settings - Fork 72
/
array2Object.js
79 lines (75 loc) · 1.37 KB
/
array2Object.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const data = [
{
id: 1,
parent: 2,
},
{
id: 2,
parent: null,
},
{
id: 3,
parent: 2,
},
{
id: 4,
parent: 1,
},
{
id: 5,
parent: 2,
},
{
id: 6,
parent: 4,
},
{
id: 7,
parent: 3,
},
{
id: 8,
parent: 3,
},
];
/**
* 将上面的数组转换为对象
* @param {*} arr
* @returns Object
*/
const array2Object = arr => {
const findParent = node => {
const [parent] = arr.filter(item => item.id === node.parent);
return parent;
};
const [root] = arr.filter(item => item.parent == null);
const childNodes = arr.filter(item => item.parent != null);
for (let item of childNodes) {
const parent = findParent(item);
if (!parent.children) {
parent.children = [item];
} else {
parent.children.push(item);
}
}
return root;
};
/**
* 用 Map 优化事件复杂度
* @param {*} arr
*/
const array2Object2 = arr => {
const map = arr.reduce((prev, next) => Object.assign(prev, { [next.id]: next }), {});
const [root] = arr.filter(item => item.parent == null);
const childNodes = arr.filter(item => item.parent != null);
for (let item of childNodes) {
const parent = map[item.parent];
if (!parent.children) {
parent.children = [item];
} else {
parent.children.push(item);
}
}
return root;
};
console.log(array2Object2(data));