Last active
May 25, 2018 13:19
-
-
Save brentvatne/78fa81d15a0abe85cf10b7528fba2a60 to your computer and use it in GitHub Desktop.
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
// This example is a little bit contrived because we have more | |
// control over this situation, but basically I want to know if | |
// it's possible to render contents parent's siblings and preserve | |
// context of the original render site, without using any native | |
// code (eg: the Modal component in React Native) | |
import React from 'react'; | |
import { Text, View } from 'react-native'; | |
import { PortalHost, Portal } from 'my-imaginary-library'; | |
const MyContext = React.createContext({ | |
value: 'some-value', | |
}); | |
export default class App extends React.Component { | |
render() { | |
return ( | |
<View> | |
<MyContext.Provider> | |
<MyApp /> | |
</MyContext.Provider> | |
// Children of <Portal> elsewhere in the app should be rendered here! | |
<PortalHost /> | |
</View> | |
); | |
} | |
} | |
class MyApp extends React.Component { | |
render() { | |
return ( | |
<View> | |
<Text>hello</Text> | |
<Portal> | |
<MyContext.Consumer> | |
{({value}) => <Text>{value}</Text>} | |
</MyContext.Consumer> | |
</Portal> | |
</View> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment