68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import type { Ref } from 'vue';
|
|
import { computed } from 'vue';
|
|
import type { DataNode, SimpleModeConfig } from '../interface';
|
|
import { convertChildrenToData } from '../utils/legacyUtil';
|
|
import type { DefaultOptionType } from '../TreeSelect';
|
|
import type { VueNode } from '../../_util/type';
|
|
|
|
function parseSimpleTreeData(
|
|
treeData: DataNode[],
|
|
{ id, pId, rootPId }: SimpleModeConfig,
|
|
): DataNode[] {
|
|
const keyNodes = {};
|
|
const rootNodeList = [];
|
|
|
|
// Fill in the map
|
|
const nodeList = treeData.map(node => {
|
|
const clone = { ...node };
|
|
const key = clone[id];
|
|
keyNodes[key] = clone;
|
|
clone.key = clone.key || key;
|
|
return clone;
|
|
});
|
|
|
|
// Connect tree
|
|
nodeList.forEach(node => {
|
|
const parentKey = node[pId];
|
|
const parent = keyNodes[parentKey];
|
|
|
|
// Fill parent
|
|
if (parent) {
|
|
parent.children = parent.children || [];
|
|
parent.children.push(node);
|
|
}
|
|
|
|
// Fill root tree node
|
|
if (parentKey === rootPId || (!parent && rootPId === null)) {
|
|
rootNodeList.push(node);
|
|
}
|
|
});
|
|
|
|
return rootNodeList;
|
|
}
|
|
|
|
/**
|
|
* Convert `treeData` or `children` into formatted `treeData`.
|
|
* Will not re-calculate if `treeData` or `children` not change.
|
|
*/
|
|
export default function useTreeData(
|
|
treeData: Ref<DataNode[]>,
|
|
children: Ref<VueNode[]>,
|
|
simpleMode: Ref<boolean | SimpleModeConfig>,
|
|
): Ref<DefaultOptionType[]> {
|
|
return computed(() => {
|
|
if (treeData.value) {
|
|
return simpleMode.value
|
|
? parseSimpleTreeData(treeData.value, {
|
|
id: 'id',
|
|
pId: 'pId',
|
|
rootPId: null,
|
|
...(simpleMode.value !== true ? simpleMode.value : {}),
|
|
})
|
|
: treeData.value;
|
|
}
|
|
|
|
return convertChildrenToData(children.value);
|
|
});
|
|
}
|