Baker Mobile MVP Toolkit

Scaffolding Containers

Container Components (a.k.a. Containers) connect to application state using the connect function from React Redux. Refer to Dan Abramov’s article for more details.

Note: We do NOT separate components and containers into different sub-directories. Both components and containers reside within /components directory. ## Running container generator

Container generator is based on Component generator which you already might be familiar with

npm run generate
? Choose the generator to use
  Component
❯ Container
  Model
  Navigation
  Reducer
  Saga

Baker will ask you a few questions to customize your new container

? What should your container be called?
? Which reducer do you want to use?
? Which boilerplate do you want to use? [1]
? Do you need separate versions of this component for iOS and Android? [2]

[1] Component boilerplates include extra code that can be used to pre-populate your components. Refer to Component Boilerplates section for more information

[2] If you want to customize how you component works on different platforms, you can have Baker generate separate .ios and .android versions of the component

Container directory overview

After successfully running container generator you should see your new container added to app/src/components. While containers share quite a lot of things in common with components, they also come with a few extra pieces:

Example
 ├── index.js           <-- container defintion
 ├── index.test.js      <-- test suites for the component
 └── styles.js          <-- container stylesheet

At this point you can jump straight into index.js module and start customizing your container to make it useful. You can then plug your new container into the main application screen (app/src/components/App/index.js) to test it out:

import ReactNative from 'react-native';
import React, { Component } from 'react';
import styles from './styles';
import Example from '../Example';

const { View } = ReactNative;

class App extends Component {
 render() {
   return (
     <View style={styles.container}>
       <Example />
     </View>
   );
 }
}

export default App;
Edit this page