@@ -160,18 +160,18 @@ const OptionList: React.ForwardRefRenderFunction<ReviseRefOptionListProps> = (_,
160
160
} , [ searchValue ] ) ;
161
161
162
162
// ========================= Disabled =========================
163
- const disabledCacheRef = React . useRef < Map < string , boolean > > ( new Map ( ) ) ;
163
+ // Cache disabled states in React state to ensure re-render when cache updates
164
+ const [ disabledCache , setDisabledCache ] = React . useState < Map < string , boolean > > ( ( ) => new Map ( ) ) ;
164
165
165
- // Clear cache if `leftMaxCount` changed
166
166
React . useEffect ( ( ) => {
167
167
if ( leftMaxCount ) {
168
- disabledCacheRef . current . clear ( ) ;
168
+ setDisabledCache ( new Map ( ) ) ;
169
169
}
170
170
} , [ leftMaxCount ] ) ;
171
171
172
172
function getDisabledWithCache ( node : DataNode ) {
173
173
const value = node [ fieldNames . value ] ;
174
- if ( ! disabledCacheRef . current . has ( value ) ) {
174
+ if ( ! disabledCache . has ( value ) ) {
175
175
const entity = valueEntities . get ( value ) ;
176
176
const isLeaf = ( entity . children || [ ] ) . length === 0 ;
177
177
@@ -184,12 +184,12 @@ const OptionList: React.ForwardRefRenderFunction<ReviseRefOptionListProps> = (_,
184
184
) ;
185
185
186
186
const checkableChildrenCount = checkableChildren . length ;
187
- disabledCacheRef . current . set ( value , checkableChildrenCount > leftMaxCount ) ;
187
+ disabledCache . set ( value , checkableChildrenCount > leftMaxCount ) ;
188
188
} else {
189
- disabledCacheRef . current . set ( value , false ) ;
189
+ disabledCache . set ( value , false ) ;
190
190
}
191
191
}
192
- return disabledCacheRef . current . get ( value ) ;
192
+ return disabledCache . get ( value ) ;
193
193
}
194
194
195
195
const nodeDisabled = useEvent ( ( node : DataNode ) => {
0 commit comments