1
1
import * as React from 'react' ;
2
- import PrimeReact , { PrimeReactContext , localeOption , ariaLabel } from '../api/Api' ;
2
+ import PrimeReact , { PrimeReactContext , ariaLabel , localeOption } from '../api/Api' ;
3
3
import { useHandleStyle } from '../componentbase/ComponentBase' ;
4
- import { useMergeProps , useMountEffect , useOverlayListener , useUnmountEffect , useUpdateEffect } from '../hooks/Hooks' ;
4
+ import { useDebounce , useMergeProps , useMountEffect , useOverlayListener , useUnmountEffect , useUpdateEffect } from '../hooks/Hooks' ;
5
5
import { ChevronDownIcon } from '../icons/chevrondown' ;
6
6
import { SearchIcon } from '../icons/search' ;
7
7
import { TimesIcon } from '../icons/times' ;
@@ -22,7 +22,7 @@ export const TreeSelect = React.memo(
22
22
const [ focusedState , setFocusedState ] = React . useState ( false ) ;
23
23
const [ overlayVisibleState , setOverlayVisibleState ] = React . useState ( false ) ;
24
24
const [ expandedKeysState , setExpandedKeysState ] = React . useState ( props . expandedKeys ) ;
25
- const [ filterValueState , setFilterValueState ] = React . useState ( '' ) ;
25
+ const [ filterValue , filterValueState , setFilterValueState ] = useDebounce ( '' , props . filterDelay || 0 ) ;
26
26
const elementRef = React . useRef ( null ) ;
27
27
const overlayRef = React . useRef ( null ) ;
28
28
const filterInputRef = React . useRef ( null ) ;
@@ -667,6 +667,7 @@ export const TreeSelect = React.memo(
667
667
expandedKeys = { expandedKeys }
668
668
filter = { props . filter }
669
669
filterBy = { props . filterBy }
670
+ filterDelay = { props . filterDelay }
670
671
filterLocale = { props . filterLocale }
671
672
filterMode = { props . filterMode }
672
673
filterPlaceholder = { props . filterPlaceholder }
@@ -696,7 +697,9 @@ export const TreeSelect = React.memo(
696
697
697
698
const createFilterElement = ( ) => {
698
699
if ( props . filter ) {
699
- const filterValue = ObjectUtils . isNotEmpty ( filteredValue ) ? filteredValue : '' ;
700
+ let filterValue = props . onFilterValueChange ? props . filterValue : filterValue ;
701
+
702
+ filterValue = ObjectUtils . isNotEmpty ( filterValue ) ? filterValue : '' ;
700
703
const filterContainerProps = mergeProps (
701
704
{
702
705
className : cx ( 'filterContainer' )
0 commit comments