Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

react-navigation and component lifecycle

I have a React Native application that uses react-navigation. In one of my screen, I'm using camera to read the QR code what works fine but I have to use setState({camera: false}) to prevent loading of QR code multiple times. Usually, it works. Even after re-entering page from main menu.

Trouble is when user press '<' button (iOS / in the header) and he should re-enter page with camera. I'm not able to find a function where I should do setState({camera: true}). Without react-navigation, there is standard lifecycle (componentWillMount, ...) but in this case I'm not able to find out where to put my code, so I can detect that page was re-entered.

I'm aware of https://github.com/react-community/react-navigation/issues/51 but I still miss the solution.

like image 536
Marek Grác Avatar asked May 17 '17 20:05

Marek Grác


People also ask

Is react navigation deprecated?

React-Native Navigator is deprecated and has been removed from this package.

Does react navigation work with react?

React Navigation is a standalone library that enables you to implement navigation functionality in a React Native application. React Navigation is written in JavaScript and does not directly use the native navigation APIs on iOS and Android.

What is the difference between React navigation stack and react navigation stack?

A key difference between how this works in a web browser and in React Navigation is that React Navigation's native stack navigator provides the gestures and animations that you would expect on Android and iOS when navigating between routes in the stack.

What is navigation in react?

React Native Navigation is used for managing the presentation, and transition between multiple screens. There are two types of navigation built in mobile applications. These are stack navigation and tabbed navigation patterns.


Video Answer


3 Answers

I had a somewhat similar issue where i had screen A opens a screen B and i wanted to capture the event where i would come back to screen A from B.

My best guess was to send a callback from Screen A to B through the navigate function:

this.props.navigation.navigate("ScreenB",{
   onClose : ()=>{
      // update your state to open back the camera
   }
})

And then i needed to capture the closing event on Screen B, which basically was componentWillUnmount:

In ScreenB component class :

componentWillUnmount(){
   this.props.navigation.state.params.onClose()
}
like image 176
TheFuquan Avatar answered Oct 16 '22 21:10

TheFuquan


Currently, it looks like that there is not an elegant solution with react-navigation.

The best option is to use onNavigationStateChange (found at Screen Tracking page). In this function, we can detect that we are leaving the specified tab. If you plan to set data stored in redux then be aware that you will change the state => page will be rendered again and tab will not change. You have to handle changing the tab manually (e.g. via initialRouteName)

like image 20
Marek Grác Avatar answered Oct 16 '22 20:10

Marek Grác


Since people have already answered the correct React Native only approach I thought I might make a suggestion that saved me thousands of hours with these types of problems...

Why not use REDUX and set a globally accessible store variable to solve this? If you were using REDUX you could simply set once, that the camera is off and the global application state would not only remember this for you but also allow every component you have listening to the store, to now know the camera is not going to be firing on this screen. When the app is terminated or even when you set this value, if need be, you could persist to AsyncStorage and then retrieve it once the app opens and loads up.

This approach would be highly desirable as it does not require interfering with the intricacies of the RN-lifecycle. As soon as you start having to update or change encapsulated component state variables at specific times, or forcing it to update without wanting a render to happen, or forcing it to update during strange lifecycle events... you know you are taking a wrongful approach. At least that's what I have learned about my own work in RN.

like image 42
GoreDefex Avatar answered Oct 16 '22 20:10

GoreDefex