codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

React Component Event Handlers

David Feng
codeburst
Published in
3 min readJul 30, 2017

--

closeModal(e) {
e.preventDefault();
this.setState({currentModal: ""});
}
showModal1(e) {
e.preventDefault();
this.setState({currentModal: "modal1"});
}
showModal2(e) {
e.preventDefault();
this.setState({currentModal: "modal2"});
}
<button onClick={this.showModal1}>
Open modal1
</button>
<button onClick={this.showModal2}>
Open modal2
</button>

<Modal
show={this.state.currentModal === 'modal1'}
closeModal={this.closeModal} >
This is modal1
</Modal>
...
switchModal(modalName) {
this.setState({currentModal: modalName});
}
<button onClick={this.switchModal("modal1")}>
Open modal1
</button>
<button onClick={this.switchModal("modal2")}>
Open modal2
</button>

<Modal
show={this.state.currentModal === 'modal1'}
closeModal={this.switchModal("")} >
This is modal1
</Modal>
...
<button onClick={ e => this.switchModal("modal1") }>
Open modal1
</button>
<button onClick={ e => this.switchModal("modal2") }>
Open modal2
</button>

<Modal
show={this.state.currentModal === 'modal1'}
closeModal={ e => this.switchModal("") } >
This is modal1
</Modal>
switchModal(modalName) {
return ( e => {
e.preventDefault();
this.setState({shownModal: modalName});
});
}
<button onClick={this.switchModal("modal1")}>
Open modal1
</button>
<button onClick={this.switchModal("modal2")}>
Open modal2
</button>

<Modal
show={this.state.currentModal === 'modal1'}
closeModal={this.switchModal("")} >
This is modal1
</Modal>
...
<Component onClick={...} ... />

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

No responses yet

Write a response