We want to be able to notify an event when the search term of the searchable select gets updated.
165 lines
5.0 KiB
TypeScript
165 lines
5.0 KiB
TypeScript
import React, {
|
|
forwardRef,
|
|
useEffect,
|
|
useImperativeHandle,
|
|
useRef,
|
|
useState,
|
|
} from "react";
|
|
import { useCombobox } from "downshift";
|
|
import classNames from "classnames";
|
|
import { useCunningham } from ":/components/Provider";
|
|
import {
|
|
getOptionsFilter,
|
|
optionToString,
|
|
optionToValue,
|
|
SelectMonoAux,
|
|
SubProps,
|
|
} from ":/components/Forms/Select/mono-common";
|
|
import { SelectHandle } from ":/components/Forms/Select";
|
|
import { isOptionWithRender } from ":/components/Forms/Select/utils";
|
|
|
|
export const SelectMonoSearchable = forwardRef<SelectHandle, SubProps>(
|
|
({ showLabelWhenSelected = true, ...props }, ref) => {
|
|
const { t } = useCunningham();
|
|
const [optionsToDisplay, setOptionsToDisplay] = useState(props.options);
|
|
const [hasInputFocused, setHasInputFocused] = useState(false);
|
|
const [inputFilter, setInputFilter] = useState<string>();
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
const downshiftReturn = useCombobox({
|
|
...props.downshiftProps,
|
|
items: optionsToDisplay,
|
|
itemToString: optionToString,
|
|
onInputValueChange: (e) => {
|
|
setInputFilter(e.inputValue);
|
|
if (!e.inputValue) {
|
|
downshiftReturn.selectItem(null);
|
|
}
|
|
},
|
|
});
|
|
const [labelAsPlaceholder, setLabelAsPlaceholder] = useState(
|
|
!downshiftReturn.selectedItem,
|
|
);
|
|
useEffect(() => {
|
|
if (hasInputFocused || downshiftReturn.inputValue) {
|
|
setLabelAsPlaceholder(false);
|
|
return;
|
|
}
|
|
setLabelAsPlaceholder(!downshiftReturn.selectedItem);
|
|
}, [
|
|
downshiftReturn.selectedItem,
|
|
hasInputFocused,
|
|
downshiftReturn.inputValue,
|
|
]);
|
|
|
|
// When component is controlled, this useEffect will update the local selected item.
|
|
useEffect(() => {
|
|
if (inputFilter) {
|
|
return;
|
|
}
|
|
|
|
const selectedItem = downshiftReturn.selectedItem
|
|
? optionToValue(downshiftReturn.selectedItem)
|
|
: undefined;
|
|
|
|
const optionToSelect = props.options.find(
|
|
(option) => optionToValue(option) === props.value,
|
|
);
|
|
|
|
// Already selected
|
|
if (optionToSelect && selectedItem === props.value) {
|
|
return;
|
|
}
|
|
|
|
downshiftReturn.selectItem(optionToSelect ?? null);
|
|
}, [props.value, props.options, inputFilter]);
|
|
|
|
// Even there is already a value selected, when opening the combobox menu we want to display all available choices.
|
|
useEffect(() => {
|
|
if (downshiftReturn.isOpen) {
|
|
setOptionsToDisplay(
|
|
inputFilter
|
|
? props.options.filter(getOptionsFilter(inputFilter))
|
|
: props.options,
|
|
);
|
|
} else {
|
|
setInputFilter(undefined);
|
|
}
|
|
}, [downshiftReturn.isOpen, props.options, inputFilter]);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
blur: () => {
|
|
downshiftReturn.closeMenu();
|
|
inputRef.current?.blur();
|
|
},
|
|
}));
|
|
|
|
useEffect(() => {
|
|
props.onSearchInputChange?.({ target: { value: inputFilter } });
|
|
}, [inputFilter]);
|
|
|
|
const onInputBlur = () => {
|
|
setHasInputFocused(false);
|
|
if (downshiftReturn.selectedItem) {
|
|
// Here the goal is to make sure that when the input in blurred then the input value
|
|
// has exactly the selectedItem label. Which is not the case by default.
|
|
downshiftReturn.selectItem(downshiftReturn.selectedItem);
|
|
} else {
|
|
// We want the input to be empty when no item is selected.
|
|
downshiftReturn.setInputValue("");
|
|
}
|
|
};
|
|
|
|
const inputProps = downshiftReturn.getInputProps({
|
|
ref: inputRef,
|
|
disabled: props.disabled,
|
|
});
|
|
|
|
const renderCustomSelectedOption = !showLabelWhenSelected;
|
|
|
|
return (
|
|
<SelectMonoAux
|
|
{...props}
|
|
downshiftReturn={{
|
|
...downshiftReturn,
|
|
wrapperProps: {
|
|
onClick: () => {
|
|
inputRef.current?.focus();
|
|
// This is important because if we don't check that: when clicking on the toggle button
|
|
// when the menu is open, it will close and reopen immediately.
|
|
if (!downshiftReturn.isOpen) {
|
|
downshiftReturn.openMenu();
|
|
}
|
|
},
|
|
},
|
|
toggleButtonProps: downshiftReturn.getToggleButtonProps({
|
|
disabled: props.disabled,
|
|
"aria-label": t("components.forms.select.toggle_button_aria_label"),
|
|
}),
|
|
}}
|
|
labelAsPlaceholder={labelAsPlaceholder}
|
|
options={optionsToDisplay}
|
|
>
|
|
<input
|
|
{...inputProps}
|
|
className={classNames({
|
|
"c__select__inner__value__input--hidden":
|
|
renderCustomSelectedOption && !hasInputFocused,
|
|
})}
|
|
onFocus={() => {
|
|
setHasInputFocused(true);
|
|
}}
|
|
onBlur={() => {
|
|
onInputBlur();
|
|
}}
|
|
/>
|
|
|
|
{renderCustomSelectedOption &&
|
|
!hasInputFocused &&
|
|
downshiftReturn.selectedItem &&
|
|
isOptionWithRender(downshiftReturn.selectedItem) &&
|
|
downshiftReturn.selectedItem.render()}
|
|
</SelectMonoAux>
|
|
);
|
|
},
|
|
);
|