Created
November 27, 2017 21:08
-
-
Save mathisonian/8878ff5a9b43f9ffcc9fe0cb5ae71f72 to your computer and use it in GitHub Desktop.
injecting props in Idyll component
This file contains hidden or 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'; | |
class MyComponent extends React.PureComponent { | |
unwrapChildren() { | |
return this.props.children.map((c) => { | |
if (c => c.type.name && c.type.name.toLowerCase() === 'wrapper') { | |
return c.props.children[0]; | |
} | |
return c; | |
}); | |
} | |
getModifiedChildren() { | |
const unwrapped = this.unwrapChildren(); | |
return React.Children.map(this.props.children, (child, i) => { | |
const c = unwrapped[i]; | |
// The component was wrapped, so return | |
// it with a modified child | |
if (child !== c) { | |
return React.cloneElement(child, { | |
children: React.cloneElement(c, { | |
myCustomProp: 'custom value', | |
}) | |
}); | |
} else { | |
return React.cloneElement(child, { | |
myCustomProp: 'custom value', | |
}); | |
} | |
}) | |
} | |
render () { | |
return ( | |
<div> | |
{this.getModifiedChildren()} | |
</div> | |
) | |
} | |
} | |
MyComponent.defaultProps = { | |
children: [] | |
}; | |
export default MyComponent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment