mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
21 lines
473 B
TypeScript
21 lines
473 B
TypeScript
import { arrayToTree as _arrayToTree } from 'performant-array-to-tree'
|
|
import { omit } from 'radash'
|
|
|
|
export function arrayToTree(data: any) {
|
|
const rowTree = _arrayToTree(data, {
|
|
parentId: 'pid',
|
|
dataField: null,
|
|
})
|
|
|
|
const transform = (node: any) => {
|
|
if (node.children.length > 0) {
|
|
return ({
|
|
...node,
|
|
children: node.children.map(transform),
|
|
})
|
|
}
|
|
return omit(node, ['children'])
|
|
}
|
|
return rowTree.map(transform)
|
|
}
|