Last active
September 25, 2017 13:08
-
-
Save michaelrambeau/e10213a26b30ad48c003f628c90a36c6 to your computer and use it in GitHub Desktop.
HoC vs render() prop. https://cdb.reacttraining.com/use-a-render-prop-50de598f11ce
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' | |
import ReactDOM from 'react-dom' | |
const withMouse = (Component) => { | |
return class extends React.Component { | |
state = { x: 0, y: 0 } | |
handleMouseMove = (event) => { | |
this.setState({ | |
x: event.clientX, | |
y: event.clientY | |
}) | |
} | |
render() { | |
return ( | |
<div style={{ height: '100%' }} onMouseMove={this.handleMouseMove}> | |
<Component {...this.props} mouse={this.state}/> | |
</div> | |
) | |
} | |
} | |
} | |
const App = React.createClass({ | |
render() { | |
// Instead of maintaining our own state, | |
// we get the mouse position as a prop! | |
const { x, y } = this.props.mouse | |
return ( | |
<div style={{ height: '100%' }}> | |
<h1>The mouse position is ({x}, {y})</h1> | |
</div> | |
) | |
} | |
}) | |
// Just wrap your component in withMouse and | |
// it'll get the mouse prop! | |
const AppWithMouse = withMouse(App) | |
ReactDOM.render(<AppWithMouse/>, document.getElementById('app')) |
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' | |
import ReactDOM from 'react-dom' | |
import PropTypes from 'prop-types' | |
// Instead of using a HOC, we can share code using a | |
// regular component with a render prop! | |
class Mouse extends React.Component { | |
static propTypes = { | |
render: PropTypes.func.isRequired | |
} | |
state = { x: 0, y: 0 } | |
handleMouseMove = (event) => { | |
this.setState({ | |
x: event.clientX, | |
y: event.clientY | |
}) | |
} | |
render() { | |
return ( | |
<div style={{ height: '100%' }} onMouseMove={this.handleMouseMove}> | |
{this.props.render(this.state)} | |
</div> | |
) | |
} | |
} | |
const App = React.createClass({ | |
render() { | |
return ( | |
<div style={{ height: '100%' }}> | |
<Mouse render={({ x, y }) => ( | |
// The render prop gives us the state we need | |
// to render whatever we want here. | |
<h1>The mouse position is ({x}, {y})</h1> | |
)}/> | |
</div> | |
) | |
} | |
}) | |
ReactDOM.render(<App/>, document.getElementById('app')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment