-
Notifications
You must be signed in to change notification settings - Fork 14k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Select onChange is being fired without explicit selection #24698
Changes from 1 commit
bd24802
05c3aaa
74161e4
a88148d
6b06ea0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ import React, { | |
useCallback, | ||
useImperativeHandle, | ||
} from 'react'; | ||
import { ensureIsArray, t } from '@superset-ui/core'; | ||
import { ensureIsArray, t, usePrevious } from '@superset-ui/core'; | ||
import { LabeledValue as AntdLabeledValue } from 'antd/lib/select'; | ||
import debounce from 'lodash/debounce'; | ||
import { isEqual } from 'lodash'; | ||
|
@@ -47,13 +47,15 @@ import { | |
getSuffixIcon, | ||
dropDownRenderHelper, | ||
handleFilterOptionHelper, | ||
mapOptions, | ||
} from './utils'; | ||
import { | ||
AsyncSelectProps, | ||
AsyncSelectRef, | ||
SelectOptionsPagePromise, | ||
SelectOptionsType, | ||
SelectOptionsTypePage, | ||
SelectProps, | ||
} from './types'; | ||
import { | ||
StyledCheckOutlined, | ||
|
@@ -113,10 +115,13 @@ const AsyncSelect = forwardRef( | |
mode = 'single', | ||
name, | ||
notFoundContent, | ||
onBlur, | ||
onError, | ||
onChange, | ||
onClear, | ||
onDropdownVisibleChange, | ||
onDeselect, | ||
onSelect, | ||
optionFilterProps = ['label', 'value'], | ||
options, | ||
pageSize = DEFAULT_PAGE_SIZE, | ||
|
@@ -150,10 +155,16 @@ const AsyncSelect = forwardRef( | |
? 'tags' | ||
: 'multiple'; | ||
const allowFetch = !fetchOnlyOnSearch || inputValue; | ||
|
||
const [maxTagCount, setMaxTagCount] = useState( | ||
propsMaxTagCount ?? MAX_TAG_COUNT, | ||
); | ||
const [onChangeCount, setOnChangeCount] = useState(0); | ||
const previousChangeCount = usePrevious(onChangeCount, 0); | ||
|
||
const fireOnChange = useCallback( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Simple counter used to fire the |
||
() => setOnChangeCount(onChangeCount + 1), | ||
[onChangeCount], | ||
); | ||
|
||
useEffect(() => { | ||
if (oneLine) { | ||
|
@@ -209,9 +220,7 @@ const AsyncSelect = forwardRef( | |
: selectOptions; | ||
}, [selectOptions, selectValue]); | ||
|
||
const handleOnSelect = ( | ||
selectedItem: string | number | AntdLabeledValue | undefined, | ||
) => { | ||
const handleOnSelect: SelectProps['onSelect'] = (selectedItem, option) => { | ||
if (isSingleMode) { | ||
setSelectValue(selectedItem); | ||
} else { | ||
|
@@ -229,11 +238,11 @@ const AsyncSelect = forwardRef( | |
}); | ||
} | ||
setInputValue(''); | ||
fireOnChange(); | ||
onSelect?.(selectedItem, option); | ||
}; | ||
|
||
const handleOnDeselect = ( | ||
value: string | number | AntdLabeledValue | undefined, | ||
) => { | ||
const handleOnDeselect: SelectProps['onDeselect'] = (value, option) => { | ||
if (Array.isArray(selectValue)) { | ||
if (isLabeledValue(value)) { | ||
const array = selectValue as AntdLabeledValue[]; | ||
|
@@ -246,6 +255,8 @@ const AsyncSelect = forwardRef( | |
} | ||
} | ||
setInputValue(''); | ||
fireOnChange(); | ||
onDeselect?.(value, option); | ||
}; | ||
|
||
const internalOnError = useCallback( | ||
|
@@ -425,8 +436,51 @@ const AsyncSelect = forwardRef( | |
if (onClear) { | ||
onClear(); | ||
} | ||
fireOnChange(); | ||
}; | ||
|
||
const handleOnBlur = (event: React.FocusEvent<HTMLElement>) => { | ||
const tagsMode = !isSingleMode && allowNewOptions; | ||
const searchValue = inputValue.trim(); | ||
// Searched values will be autoselected during onBlur events when in tags mode. | ||
// We want to make sure a value is only selected if the user has actually selected it | ||
// by pressing Enter or clicking on it. | ||
if ( | ||
tagsMode && | ||
searchValue && | ||
!hasOption(searchValue, selectValue, true) | ||
) { | ||
// The search value will be added so we revert to the previous value | ||
setSelectValue(selectValue || []); | ||
} | ||
onBlur?.(event); | ||
}; | ||
|
||
useEffect(() => { | ||
if (onChangeCount !== previousChangeCount) { | ||
const set = new Set(); | ||
const array = ensureIsArray(selectValue); | ||
array.forEach(item => set.add(getValue(item))); | ||
michael-s-molina marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const options = mapOptions( | ||
fullSelectOptions.filter(opt => set.has(opt.value)), | ||
); | ||
if (isSingleMode) { | ||
// @ts-ignore | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The original typescript definition does not allow |
||
onChange?.(selectValue, options[0]); | ||
} else { | ||
// @ts-ignore | ||
onChange?.(array, options); | ||
} | ||
} | ||
}, [ | ||
fullSelectOptions, | ||
isSingleMode, | ||
onChange, | ||
onChangeCount, | ||
previousChangeCount, | ||
selectValue, | ||
]); | ||
|
||
useEffect(() => { | ||
// when `options` list is updated from component prop, reset states | ||
fetchedQueries.current.clear(); | ||
|
@@ -494,13 +548,13 @@ const AsyncSelect = forwardRef( | |
maxTagCount={maxTagCount} | ||
mode={mappedMode} | ||
notFoundContent={isLoading ? t('Loading...') : notFoundContent} | ||
onBlur={handleOnBlur} | ||
onDeselect={handleOnDeselect} | ||
onDropdownVisibleChange={handleOnDropdownVisibleChange} | ||
onPopupScroll={handlePagination} | ||
onSearch={showSearch ? handleOnSearch : undefined} | ||
onSelect={handleOnSelect} | ||
onClear={handleClear} | ||
onChange={onChange} | ||
options={ | ||
hasCustomLabels(fullSelectOptions) ? undefined : fullSelectOptions | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
div
is to simulate a click outside of the select.