UNPKG

rc-table

Version:
19 lines (18 loc) 655 B
import type { GetRowKey, Key } from '../interface'; export interface FlattenData<RecordType> { record: RecordType; indent: number; index: number; } /** * flat tree data on expanded state * * @export * @template T * @param {*} data : table data * @param {string} childrenColumnName : 指定树形结构的列名 * @param {Set<Key>} expandedKeys : 展开的行对应的keys * @param {GetRowKey<T>} getRowKey : 获取当前rowKey的方法 * @returns flattened data */ export default function useFlattenRecords<T>(data: T[] | readonly T[], childrenColumnName: string, expandedKeys: Set<Key>, getRowKey: GetRowKey<T>): FlattenData<T>[];