-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Description
Description
I have a few components that rely on React.Children.map to eventually compare child.type to the expected child component. This code works fine in all my React projects that use ordinary react (like Create React App), but doesn't work in Gatsby or NextJS (perhaps something to do with SSR) All my code is on the same version of React and Node (listed below)
Here is a basic example of a "compound components" pattern where <Foo> expects <Bar> as it's child. In my CRA apps I get "Bar: world" as the end result (which is correct), but with Gatsby I get "not same" which shows a difference in how the two environments evaluate this code child.type === Bar
const Foo = (props) => {
const newChildren = React.Children.map(props.children, child => {
return child.type === Bar
? React.cloneElement(child, { hello: 'world' })
: <div>not same</div>
})
return <div>{newChildren}</div>
}
const Bar = (props) => (
<div>bar: {props.hello}</div>
)
const App = () => (
<Foo><Bar /></Foo>
)In a quick twitter chat with gatsby, I was asked if refreshing made a difference, it does not
Environment
Gatsby version: 1.1.28
Node.js version: 8.2.1
Operating System: macOS High Siera
Actual result
child.type is not === to what it should be equal to
Expected behavior
It should be equal
Steps to reproduce
Copy the above demo code and implement with <Foo><Bar /></Foo>