Update Select to work on an array of values; so long as values are contained in options array
This commit is contained in:
parent
92923789e5
commit
17e2680da8
@ -30,13 +30,13 @@ const InputMultiSelect = ({
|
||||
isSearchable={false}
|
||||
closeMenuOnSelect={false}
|
||||
hideSelectedOptions={false}
|
||||
onChange={(inputvalues, { action }) => {
|
||||
onChange={(selectedOptions, action) => {
|
||||
switch (action) {
|
||||
case 'select-option':
|
||||
case 'remove-value':
|
||||
case 'deselect-option':
|
||||
case 'clear':
|
||||
onChange(inputvalues);
|
||||
onChange(selectedOptions);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
@ -46,6 +46,17 @@ const Select = ({
|
||||
value,
|
||||
}) => {
|
||||
const _components = isMulti ? { Option, MultiValue } : {};
|
||||
const selectedOptions = [];
|
||||
|
||||
// Map array of values to an array of selected options
|
||||
if (value && Array.isArray(value)) {
|
||||
value.forEach(val => {
|
||||
const found = options.find(opt => opt.value === val);
|
||||
if (found) {
|
||||
selectedOptions.push(JSON.parse(JSON.stringify(found)));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return (
|
||||
<ReactSelect
|
||||
@ -63,8 +74,14 @@ const Select = ({
|
||||
components={_components}
|
||||
placeholder={placeholder}
|
||||
options={options}
|
||||
value={value}
|
||||
onChange={onChange}
|
||||
value={selectedOptions}
|
||||
onChange={(selectedOptions, { action }) => {
|
||||
const newSelection = selectedOptions.reduce(
|
||||
(acc, curr) => acc.concat([curr.value]),
|
||||
[]
|
||||
);
|
||||
onChange(newSelection, action);
|
||||
}}
|
||||
></ReactSelect>
|
||||
);
|
||||
};
|
||||
@ -77,6 +94,7 @@ Select.defaultProps = {
|
||||
isDisabled: false,
|
||||
isMulti: false,
|
||||
isSearchable: true,
|
||||
value: [],
|
||||
};
|
||||
|
||||
Select.propTypes = {
|
||||
@ -95,18 +113,7 @@ Select.propTypes = {
|
||||
})
|
||||
),
|
||||
placeholder: PropTypes.string,
|
||||
value: PropTypes.oneOfType([
|
||||
PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
value: PropTypes.string,
|
||||
label: PropTypes.string,
|
||||
})
|
||||
),
|
||||
PropTypes.shape({
|
||||
value: PropTypes.string,
|
||||
label: PropTypes.string,
|
||||
}),
|
||||
]),
|
||||
value: PropTypes.arrayOf(PropTypes.string),
|
||||
};
|
||||
|
||||
export default Select;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user