You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
import * as React from 'react';
|
|
import { Key, GetRowKey } from '../interface';
|
|
|
|
interface MapCache<RecordType> {
|
|
data?: readonly RecordType[];
|
|
childrenColumnName?: string;
|
|
kvMap?: Map<Key, RecordType>;
|
|
getRowKey?: Function;
|
|
}
|
|
|
|
export default function useLazyKVMap<RecordType>(
|
|
data: readonly RecordType[],
|
|
childrenColumnName: string,
|
|
getRowKey: GetRowKey<RecordType>,
|
|
) {
|
|
const mapCacheRef = React.useRef<MapCache<RecordType>>({});
|
|
|
|
function getRecordByKey(key: Key): RecordType {
|
|
if (
|
|
!mapCacheRef.current ||
|
|
mapCacheRef.current.data !== data ||
|
|
mapCacheRef.current.childrenColumnName !== childrenColumnName ||
|
|
mapCacheRef.current.getRowKey !== getRowKey
|
|
) {
|
|
const kvMap = new Map<Key, RecordType>();
|
|
|
|
/* eslint-disable no-inner-declarations */
|
|
function dig(records: readonly RecordType[]) {
|
|
records.forEach((record, index) => {
|
|
const rowKey = getRowKey(record, index);
|
|
kvMap.set(rowKey, record);
|
|
|
|
if (record && typeof record === 'object' && childrenColumnName in record) {
|
|
dig((record as any)[childrenColumnName] || []);
|
|
}
|
|
});
|
|
}
|
|
/* eslint-enable */
|
|
|
|
dig(data);
|
|
|
|
mapCacheRef.current = {
|
|
data,
|
|
childrenColumnName,
|
|
kvMap,
|
|
getRowKey,
|
|
};
|
|
}
|
|
|
|
return mapCacheRef.current.kvMap!.get(key)!;
|
|
}
|
|
|
|
return [getRecordByKey];
|
|
}
|
|
|