2022-05-07 14:31:54 +08:00
|
|
|
|
import type { DataNode, Key } from 'rc-tree/lib/interface';
|
2023-10-11 17:03:15 +08:00
|
|
|
|
import { fillFieldNames } from 'rc-tree/lib/utils/treeUtil';
|
|
|
|
|
|
|
|
|
|
import type { TreeProps } from '../Tree';
|
2018-06-04 11:20:17 +08:00
|
|
|
|
|
|
|
|
|
enum Record {
|
|
|
|
|
None,
|
|
|
|
|
Start,
|
|
|
|
|
End,
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
type FieldNames = TreeProps['fieldNames'];
|
|
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
|
function traverseNodesKey(
|
2019-08-12 13:22:36 +08:00
|
|
|
|
treeData: DataNode[],
|
2020-04-17 23:31:39 +08:00
|
|
|
|
callback: (key: Key | number | null, node: DataNode) => boolean,
|
2023-10-11 17:03:15 +08:00
|
|
|
|
fieldNames: Required<NonNullable<FieldNames>>,
|
2018-12-07 16:17:45 +08:00
|
|
|
|
) {
|
2023-10-11 17:03:15 +08:00
|
|
|
|
const { key: fieldKey, children: fieldChildren } = fieldNames;
|
|
|
|
|
|
|
|
|
|
function processNode(dataNode: DataNode & FieldNames[keyof FieldNames]) {
|
|
|
|
|
const key = dataNode[fieldKey];
|
|
|
|
|
const children = dataNode[fieldChildren];
|
2019-08-12 13:22:36 +08:00
|
|
|
|
if (callback(key, dataNode) !== false) {
|
2023-10-11 17:03:15 +08:00
|
|
|
|
traverseNodesKey(children || [], callback, fieldNames);
|
2018-07-30 12:05:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-12 13:22:36 +08:00
|
|
|
|
treeData.forEach(processNode);
|
2018-07-30 12:05:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-04 11:20:17 +08:00
|
|
|
|
/** 计算选中范围,只考虑expanded情况以优化性能 */
|
2020-06-19 15:45:52 +08:00
|
|
|
|
export function calcRangeKeys({
|
|
|
|
|
treeData,
|
|
|
|
|
expandedKeys,
|
|
|
|
|
startKey,
|
|
|
|
|
endKey,
|
2023-10-11 17:03:15 +08:00
|
|
|
|
fieldNames,
|
2020-06-19 15:45:52 +08:00
|
|
|
|
}: {
|
|
|
|
|
treeData: DataNode[];
|
|
|
|
|
expandedKeys: Key[];
|
|
|
|
|
startKey?: Key;
|
|
|
|
|
endKey?: Key;
|
2023-10-11 17:03:15 +08:00
|
|
|
|
fieldNames?: FieldNames;
|
2020-06-19 15:45:52 +08:00
|
|
|
|
}): Key[] {
|
2020-04-17 23:31:39 +08:00
|
|
|
|
const keys: Key[] = [];
|
2018-06-04 11:20:17 +08:00
|
|
|
|
let record: Record = Record.None;
|
|
|
|
|
|
|
|
|
|
if (startKey && startKey === endKey) {
|
|
|
|
|
return [startKey];
|
|
|
|
|
}
|
|
|
|
|
if (!startKey || !endKey) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 23:31:39 +08:00
|
|
|
|
function matchKey(key: Key) {
|
2018-06-04 11:20:17 +08:00
|
|
|
|
return key === startKey || key === endKey;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
traverseNodesKey(
|
|
|
|
|
treeData,
|
|
|
|
|
(key: Key) => {
|
|
|
|
|
if (record === Record.End) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-06-04 11:20:17 +08:00
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
if (matchKey(key)) {
|
|
|
|
|
// Match test
|
|
|
|
|
keys.push(key);
|
2018-06-04 11:20:17 +08:00
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
if (record === Record.None) {
|
|
|
|
|
record = Record.Start;
|
|
|
|
|
} else if (record === Record.Start) {
|
|
|
|
|
record = Record.End;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-06-04 11:20:17 +08:00
|
|
|
|
} else if (record === Record.Start) {
|
2023-10-11 17:03:15 +08:00
|
|
|
|
// Append selection
|
|
|
|
|
keys.push(key);
|
2018-06-04 11:20:17 +08:00
|
|
|
|
}
|
2023-10-11 17:03:15 +08:00
|
|
|
|
return expandedKeys.includes(key);
|
|
|
|
|
},
|
|
|
|
|
fillFieldNames(fieldNames),
|
|
|
|
|
);
|
2018-06-04 11:20:17 +08:00
|
|
|
|
|
|
|
|
|
return keys;
|
|
|
|
|
}
|
2019-04-09 14:20:59 +08:00
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
export function convertDirectoryKeysToNodes(
|
|
|
|
|
treeData: DataNode[],
|
|
|
|
|
keys: Key[],
|
|
|
|
|
fieldNames?: FieldNames,
|
|
|
|
|
) {
|
2020-04-17 23:31:39 +08:00
|
|
|
|
const restKeys: Key[] = [...keys];
|
2019-08-12 13:22:36 +08:00
|
|
|
|
const nodes: DataNode[] = [];
|
2023-10-11 17:03:15 +08:00
|
|
|
|
traverseNodesKey(
|
|
|
|
|
treeData,
|
|
|
|
|
(key: Key, node: DataNode) => {
|
|
|
|
|
const index = restKeys.indexOf(key);
|
|
|
|
|
if (index !== -1) {
|
|
|
|
|
nodes.push(node);
|
|
|
|
|
restKeys.splice(index, 1);
|
|
|
|
|
}
|
2019-04-09 14:20:59 +08:00
|
|
|
|
|
2023-10-11 17:03:15 +08:00
|
|
|
|
return !!restKeys.length;
|
|
|
|
|
},
|
|
|
|
|
fillFieldNames(fieldNames),
|
|
|
|
|
);
|
2019-04-09 14:20:59 +08:00
|
|
|
|
return nodes;
|
2019-05-07 14:57:32 +08:00
|
|
|
|
}
|