|
@@ -44,27 +44,27 @@ export function translateDataToTreeAll (data, parentKey, parentIDKey) {
|
|
|
let translator = (parent, children) => {
|
|
|
parent.forEach((parent) => {
|
|
|
parent.children = [];
|
|
|
- // children.forEach((current, index) => {
|
|
|
- // if (current[parentKey] === parent[parentIDKey]) {
|
|
|
- // const temp = JSON.parse(JSON.stringify(children));
|
|
|
- // temp.splice(index, 1);
|
|
|
- // translator([current], temp);
|
|
|
- // typeof parent.children !== "undefined"
|
|
|
- // ? parent.children.push(current)
|
|
|
- // : (parent.children = [current]);
|
|
|
- // }
|
|
|
- // });
|
|
|
- for (let i = 0; i < children.length;) {
|
|
|
- if (children[i][parentKey] === parent[parentIDKey]) {
|
|
|
- const temp = children.splice(i, 1)
|
|
|
- typeof parent.children !== 'undefined'
|
|
|
- ? parent.children.push(...temp)
|
|
|
- : (parent.children = temp)
|
|
|
- translator(temp, children)
|
|
|
- } else {
|
|
|
- i++
|
|
|
+ children.forEach((current, index) => {
|
|
|
+ if (current[parentKey] === parent[parentIDKey]) {
|
|
|
+ const temp = JSON.parse(JSON.stringify(children));
|
|
|
+ temp.splice(index, 1);
|
|
|
+ translator([current], temp);
|
|
|
+ typeof parent.children !== "undefined"
|
|
|
+ ? parent.children.push(current)
|
|
|
+ : (parent.children = [current]);
|
|
|
}
|
|
|
- }
|
|
|
+ });
|
|
|
+ // for (let i = 0; i < children.length;) {
|
|
|
+ // if (children[i][parentKey] === parent[parentIDKey]) {
|
|
|
+ // const temp = children.splice(i, 1)
|
|
|
+ // typeof parent.children !== 'undefined'
|
|
|
+ // ? parent.children.push(...temp)
|
|
|
+ // : (parent.children = temp)
|
|
|
+ // translator(temp, children)
|
|
|
+ // } else {
|
|
|
+ // i++
|
|
|
+ // }
|
|
|
+ // }
|
|
|
});
|
|
|
};
|
|
|
translator(parent, children);
|