Background:
I am trying to get the current value of a color picker when I click my onSubmit
button. The color picker is in a separate component.
Problem:
When I change the color via the color picker, I am getting an error message that says: TypeError: _this.props.setSelectedColor is not a function
Component that has Color Picker Inside of It:
JavaScript
x
17
17
1
function myFunctionA(props) {
2
3
const [selectedColor, setSelectedColor] = useState(null)
4
5
const handleSubmit = useCallback(() => {
6
console.log(selectedColor);
7
});
8
9
return (
10
<>
11
<Form onSubmit={handleSubmit}>
12
<MyColorPicker setSelectedColor/>
13
</Form>
14
</>
15
)
16
}
17
Color Picker Code:
JavaScript
1
23
23
1
class MyBlockPicker extends React.Component {
2
state = {
3
background: this.props.background,
4
};
5
6
handleChangeComplete = (color) => {
7
console.log(color);
8
this.setState({ background: color.hex });
9
this.props.setSelectedColor(color.hex)
10
};
11
12
render() {
13
return (
14
<BlockPicker
15
color={this.state.background}
16
onChangeComplete={this.handleChangeComplete}
17
/>
18
);
19
}
20
}
21
22
export default MyBlockPicker;
23
Any ideas on how to fix?
Advertisement
Answer
If you want to pass a function down to a child you need to do it like this:
JavaScript
1
2
1
<MyColorPicker setSelectedColor={setSelectedColor} />
2