PromucFlow_constructor/app/client/src/utils/treeUtils.ts
Rishabh Rathod 136308fd7c
fix: table search text dependency deletion (#11608)
* Replace BindingPaths with ReactivePaths and remove non-bindable property path from bindingPaths to reduce confusion.
2022-04-12 13:09:26 +00:00

36 lines
889 B
TypeScript

type Tree = {
children?: Tree[];
[key: string]: any;
};
export const traverseTree = (tree: Tree, callback: (tree: Tree) => void) => {
callback(tree);
if (tree.children) {
tree.children.forEach((b) => traverseTree(b, callback));
}
};
export const mapTree = (tree: Tree, callback: (tree: Tree) => Tree) => {
const mapped = callback(tree);
if (tree.children && tree.children.length) {
const children: Tree[] = tree.children.map((branch) =>
mapTree(branch, callback),
);
return { ...mapped, children };
}
return { ...mapped };
};
/**
* This function sorts the object's value which is array of string.
*
* @param {Record<string, Array<string>>} data
* @return {*}
*/
export const sortObjectWithArray = (data: Record<string, Array<string>>) => {
Object.entries(data).map(([key, value]) => {
data[key] = value.sort();
});
return data;
};