Skip to content

Instantly share code, notes, and snippets.

@anevins12
Last active June 14, 2018 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anevins12/fdc78da43655c875b4a5af80bc75e268 to your computer and use it in GitHub Desktop.
Save anevins12/fdc78da43655c875b4a5af80bc75e268 to your computer and use it in GitHub Desktop.
HOC React example
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script>
<script src="//fb.me/react-0.14.3.js"></script>
<script src="//fb.me/react-dom-0.14.3.js"></script>
<title>I'm amazing act React</title>
</head>
<body>
<div id="wrapper"></div>
<script type="text/babel">
function renderComponentWithStyles(PassedComponent, styles) {
return class extends React.Component {
constructor(props) {
super(props);
this.styles = styles;
}
render() {
return (
<PassedComponent style={ this.styles } />
)
}
}
}
const paragraphStyle = {
backgroundColor: 'deeppink'
};
const headingStyle = {
backgroundColor: 'deepskyblue'
};
class Paragraph extends React.Component {
render() {
return (
<p { ...this.props }> Hello World </p>
)
}
}
class Heading extends React.Component {
render() {
return (
<h1 { ...this.props }> Lololololz </h1>
)
}
}
var ParagraphWithStyles = renderComponentWithStyles(Paragraph, paragraphStyle);
var HeadingWithStyles = renderComponentWithStyles(Heading, headingStyle);
class Wrapper extends React.Component {
render() {
return (
<div className="wrapper">
<HeadingWithStyles />
<ParagraphWithStyles />
</div>
)
}
}
ReactDOM.render(
<Wrapper></Wrapper>,
document.getElementById('wrapper')
)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment