Quantcast
Channel: React + Redux set up for my react-native app. What is the correct way to handle connect? - Stack Overflow
Viewing all articles
Browse latest Browse all 3

React + Redux set up for my react-native app. What is the correct way to handle connect?

$
0
0

I am building a simple react-native app using react-native-router-flux library.

I have only 3 scenes:

  • Home
  • Search
  • Favorites

I have defined them as such in my app.js as such:

<Router>
  <Scene key="root">
    <Scene
      key="home"
      component={Home}
    />
    <Scene
      key="search"
      component={Search}
    />
    <Scene
      key="favorites"
      component={Favorites}
    />
  </Scene>
</Router>

In my setup.js, I have the following:

<Provider store={store}>
  <App />
</Provider>

My question is whether I should be connecting each component (Home, Search, Favorites) to the store, or if I should be doing that in my App (app.js) component and passing actions and state as props to each Scene component.

I have the following actions:

  • getRecent()
  • searchByKeywords(keywords)
  • searchByCategory(categoryId)
  • addToFavorites(photoId)
  • removeFromFavorites(photoId)

And the following reducers:

  • photoResults
  • favorites

Please let me know the best way to set up here. Should I connect to the state and actions in each component, or do it once at the App component level (where the Router Scenes are defined) and pass down.

function mapStateToProps(state) {
  return {
    photoResults: state.photoResults,
    favorites: state.favorites
  };
}

function mapDispatchToProps(dispatch) {
  return {
    actions: bindActionCreators(actionCreators, dispatch)
  };
}

Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images