Created
September 5, 2016 00:16
-
-
Save choonkending/2eee176b7116fb834550af5527aad846 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const toggle = (ComposedComponent) => class extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { isActive: false }; | |
this.onToggle = this.onToggle.bind(this); | |
} | |
render() { | |
return ( | |
<ComposedComponent onToggle={onToggle} isActive={this.state.isActive} /> | |
); | |
} | |
onToggle() { | |
this.setState({ isActive: !this.state.isActive }); | |
} | |
}; | |
const ShowHide = ({onToggle, isActive}) => ( | |
<div> | |
<p onClick={onToggle}>title</p> | |
{ isActive && <p>content</p> } | |
</div> | |
); | |
const ConcreteToggle = toggle(ShowHide); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment