Skip to content

Commit 6b767b1

Browse files
committed
fix: off topic
1 parent e230c2d commit 6b767b1

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

src/OptionList.tsx

+7-10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import LegacyContext from './LegacyContext';
1010
import TreeSelectContext from './TreeSelectContext';
1111
import type { Key, SafeKey } from './interface';
1212
import { getAllKeys, isCheckDisabled } from './utils/valueUtil';
13+
import { useEvent } from 'rc-util';
1314

1415
const HIDDEN_STYLE = {
1516
width: 0,
@@ -241,17 +242,13 @@ const OptionList: React.ForwardRefRenderFunction<ReviseRefOptionListProps> = (_,
241242
onKeyUp: () => {},
242243
}));
243244

245+
const syncLoadData = useEvent(loadData);
246+
244247
const loadDataFun = useMemo(
245-
() => (searchValue ? null : (loadData as any)),
246-
[loadData, searchValue, treeExpandedKeys || expandedKeys],
247-
(
248-
[prevLoadData, preSearchValue],
249-
[nextLoadData, nextSearchValue, nextExcludeSearchExpandedKeys],
250-
) =>
251-
// `loadData` changed
252-
prevLoadData !== nextLoadData ||
253-
// `searchValue` changed and not in search mode
254-
(preSearchValue !== nextSearchValue && !!(nextSearchValue || nextExcludeSearchExpandedKeys)),
248+
() => (searchValue ? null : (syncLoadData as any)),
249+
[searchValue, treeExpandedKeys || expandedKeys],
250+
([preSearchValue], [nextSearchValue, nextExcludeSearchExpandedKeys]) =>
251+
preSearchValue !== nextSearchValue && !!(nextSearchValue || nextExcludeSearchExpandedKeys),
255252
);
256253

257254
// ========================== Render ==========================

0 commit comments

Comments
 (0)