Skip to content

Instantly share code, notes, and snippets.

@kentcdodds
Last active September 30, 2021 06:14
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kentcdodds/ab67e3a2c11cb6c7c8a97a10b4b94d5b to your computer and use it in GitHub Desktop.
Save kentcdodds/ab67e3a2c11cb6c7c8a97a10b4b94d5b to your computer and use it in GitHub Desktop.
// handy method to create a Higher Order Component out of a
// Render Prop Component (like a Context.Consumer).
// handles, statics, displayName, refs, and value forwarding
function createHOCFromRenderProp({prop, Consumer}) {
return Component => {
function Wrapper(props, ref) {
return (
<Consumer>
{value => <Component {...{...props, [prop]: value, ref}} />}
</Consumer>
)
}
const upperProp = prop.slice(0, 1).toUpperCase() + prop.slice(1)
const componentName = Component.displayName || Component.name
Wrapper.displayName = `with${upperProp}(${componentName})`
// import hoistNonReactStatics from 'hoist-non-react-statics'
return hoistNonReactStatics(React.forwardRef(Wrapper), Component)
}
}
const withToggle = createHOCFromRenderProp({
prop: 'toggle',
Consumer: Toggle.Consumer,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment