@@ -10,6 +10,7 @@ import LegacyContext from './LegacyContext';
10
10
import TreeSelectContext from './TreeSelectContext' ;
11
11
import type { Key , SafeKey } from './interface' ;
12
12
import { getAllKeys , isCheckDisabled } from './utils/valueUtil' ;
13
+ import { useEvent } from 'rc-util' ;
13
14
14
15
const HIDDEN_STYLE = {
15
16
width : 0 ,
@@ -241,17 +242,13 @@ const OptionList: React.ForwardRefRenderFunction<ReviseRefOptionListProps> = (_,
241
242
onKeyUp : ( ) => { } ,
242
243
} ) ) ;
243
244
245
+ const syncLoadData = useEvent ( loadData ) ;
246
+
244
247
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 ) ,
255
252
) ;
256
253
257
254
// ========================== Render ==========================
0 commit comments