ฉันมีองค์ประกอบสองส่วน: องค์ประกอบหลักที่ฉันต้องการเปลี่ยนสถานะขององค์ประกอบลูก:
class ParentComponent extends Component {
toggleChildMenu() {
?????????
}
render() {
return (
<div>
<button onClick={toggleChildMenu.bind(this)}>
Toggle Menu from Parent
</button>
<ChildComponent />
</div>
);
}
}
และส่วนประกอบของเด็ก :
class ChildComponent extends Component {
constructor(props) {
super(props);
this.state = {
open: false;
}
}
toggleMenu() {
this.setState({
open: !this.state.open
});
}
render() {
return (
<Drawer open={this.state.open}/>
);
}
}
ฉันจำเป็นต้องเปลี่ยนสถานะเปิดของคอมโพเนนต์ลูกจากคอมโพเนนต์หลักหรือเรียกใช้toggleMenu ()ของคอมโพเนนต์ลูกจากคอมโพเนนต์หลักเมื่อคลิกปุ่มในคอมโพเนนต์หลัก