h guys , I am making a react app with react select 1.3 version , I need to add a custom function to drop down which includes 2 keys. I noticed latest react select has a function for this
getOptionLabel
I want to find something similar to this function for react select version 1.3 . could anyone able to help me on this ?
this is not supported in react select version 1.3 need a function similar to this
JavaScript
x
2
1
getOptionLabel={(option) => `${option.label}: ${option.rating}`}
2
Advertisement
Answer
You can relabel the options by mapping the original options array to a new one, like this:
JavaScript
1
5
1
const options = colourOptions.map(({ value, label, color }) => ({
2
value,
3
label: `${value}: ${label}, ${color}`
4
}));
5
Since the custom <select>
is now using new objects, you need to make a change to handleChange
so the original options are used in the state:
JavaScript
1
8
1
handleChange = (alteredOptions) => {
2
// map altered options to actual options using the value
3
const selectedOptions = alteredOptions.map((so) =>
4
colourOptions.find((co) => co.value === so.value)
5
);
6
this.setState({ selectedOptions });
7
};
8