Created
September 8, 2015 23:32
-
-
Save jsdf/658bb65211eb2bce54d7 to your computer and use it in GitHub Desktop.
Utility function to walk react element children and expand to an array of every element in tree (without removing children from elements)
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'; | |
export default function flattenReactChildrenToArray(nodeChildren, accumulated = []) { | |
React.Children.forEach(nodeChildren, (childNode) => { | |
accumulated.push(childNode); | |
if (childNode && childNode.props && childNode.props.children) { | |
flattenReactChildrenToArray(childNode.props.children, accumulated); | |
} | |
}); | |
return accumulated; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment