-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataExchange.js
133 lines (122 loc) · 3.14 KB
/
dataExchange.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
const arr = [
{
"id":1702434700081,
"key":"file_1",
"defaultValue":"",
"inputDisabled":false,
"type":3,
"description":"",
"placeholder":"",
"children":[
{
"id":1702434703641,
"key":"items",
"defaultValue":"",
"dataDisabled":false,
"type":4,
"description":"",
"placeholder":"",
"children":[
{
"id":1702434707667,
"key":"file_1",
"defaultValue":"",
"inputDisabled":false,
"type":1,
"description":"",
"placeholder":"",
"children":[
]
},
{
"id":1702434707860,
"key":"file_2",
"defaultValue":"",
"inputDisabled":false,
"type":1,
"description":"",
"placeholder":"",
"children":[
]
}
]
}
]
},
{
"id":1702434700763,
"key":"file_2",
"defaultValue":"",
"inputDisabled":false,
"type":4,
"description":"",
"placeholder":"",
"children":[
{
"id":1702434712013,
"key":"file_1",
"defaultValue":"",
"inputDisabled":false,
"type":1,
"description":"",
"placeholder":"",
"children":[
]
},
{
"id":1702434712208,
"key":"file_2",
"defaultValue":"",
"inputDisabled":false,
"type":1,
"description":"",
"placeholder":"",
"children":[
]
}
]
},
{
"id":1702434701380,
"key":"file_3",
"defaultValue":"",
"inputDisabled":false,
"type":1,
"description":"",
"placeholder":"",
"children":[
]
}
]
function exchangeData (list, params) {
list.forEach(item => {
if ([1, 2, 5].includes(item.type)) {
params[item.key] = item.defaultValue
} else if (item.type === 3) {
let currentObj = []
let paramsObj = {}
let paramsArray = []
if (item.children.length) {
const newParams = exchangeData (item.children, paramsObj)
const keys = Object.keys(newParams)
if (keys.includes('items')) {
paramsArray.push(newParams.items)
}
currentObj = paramsArray
}
params[item.key] = currentObj
} else if (item.type === 4) {
let currentObj = {}
let paramsObj = {}
if (item.children.length) {
const newParams = exchangeData (item.children, paramsObj)
currentObj = newParams
}
params[item.key] = currentObj
}
})
return params;
}
let params = {}
const dataPa = exchangeData(arr, params)
console.log(JSON.stringify(dataPa))