ericwooley / react-nativeish

React Native / React Native Web Boilerplate
MIT License
106 stars 7 forks source link
axios blueprint chrome-extension jest jest-snapshots mock react react-native react-native-web redux sagas snapshot storybook storyshots

React Native...ish V2

Maximizing code reuse for Create React App and Create React Native App

Quick Feature Compare

Quick Links

  1. Dependencies
  2. OnBoarding
  3. Development
  4. Deployment ¬
  5. Blueprints
  6. References ¬
  7. Notes

Dependencies

  1. OSX with xcode (if you want to develop for ios, though you could also use the expo app on an ios device)
  2. Node >= 6 (I would use nvm or n)
  3. Yarn >= 0.21.3
  4. Create React App
  5. Create React Native App

OnBoarding

Make sure you understand react/redux/redux-sagas. (Links in the libraries section)

Take a quick look at the directory structure. (explanations follow)

Directory Structure

├── App.js                                    # Entry point for exp
├── App.test-m.js                             # unit test for Expo. All mobile tests end with .test-m.js to differentiate them from the mobile versions
├── README.md
├── __mocks__                                 # Mocks for testing
├── app.json                                  # React native and expo file used for app settings, look at the expo docs for more about this
├── blueprints                                # Blueprints folder, contains components, sagas, etc...
├── combined                                  # something expo creates?
├── package.json                      
├── public                                    # CRA webpack public serve file
├── src
│   ├── App.css                               # css file for CRA
│   ├── App.js                                # basic App for CRA, import by index.js
│   ├── App.test.js                           # Test for app for web, all web tests end in .test.js (not .test-m.js)
│   ├── components                            # components, all components should strive to be reusable
│   │   └── Button        
│   │       ├── index.js                      # default button for web (or native, if there is nothing native specific in it)
│   │       ├── index.native.js               # will be imported in mobile, instead of index.js. Use this pattern when you need components to be different for each. You should make them have the same api though.
│   │       ├── index.story.js                # storybook for native
│   │       └── index.story.native.js         # storybook for mobile
│   ├── constants                             # app config, different for mobile and native
│   ├── index.css
│   ├── index.js                              # Entry point for CRA, different than expo, expo expects it to be at the root.
│   ├── logo.svg
│   ├── navigation                            # Routes and navigation setup, different for mobile and native
│   ├── reducers                              # Basic redux reducer setups
│   ├── registerServiceWorker.js              # used by CRA to cache files
│   ├── scenes                                # Screens (routes) which are always different for native and mobile
│   ├── setupTests.js                         # test setup file
│   └── store                                 # stores that are different for mobile and native, so that react-router can be effectively synced.
│       ├── configure-store.js
│       └── configure-store.native.js
└── storybook                                 # storybook folder
    ├── addons.js
    ├── index.js

Libraries

Become very familiar with each of these libraries.

  1. React

  2. redux - Yes, read all of it.

  3. redux sagas are used instead of redux-thunk.

  4. React native

    • This project also builds on this using react-native-web which is a reimplementation of react-native to make it run in a browser.
  5. react-native-elements Basic semi-presytled components to make things more usuable.

  6. Recompose High Order components so that you can just use function based components

  7. Jest Unit test framework, integrates with storyshots instead of jest snapshots

  8. StoryBook/Storyshots used for individual component development, and to take snapshots of the UI, like jest snapshots.

  9. React Navigation - Native code excellerated navigation framework

Development

  1. Recommended Editor: vscode

    • There are recommended extensions in the .vscode folder.
    • Make sure your editor respects the .editorconfig file
    • Make sure your editor uses the eslint linter.
  2. Development commands

    • yarn start: Runs all processes in terminus-maximus. Open your browser window to localhost:3000 for web, open localhost:9001 for web storybook, localhost:7007 for storybook mobile controller, and open your expo app for developing natively. (note that storybook won't be able to connect from non localhost simulators).

    Also note that the QR code in the terminal is not printed correctly. Try using the expo app, or running exp start outside of npm run start to get the qr code to load it onto your phone or simulator

  3. Development Workflow

    • Start by identifying which components you need and start react-storybook yarn start and open http://localhost:9001/

      1. Develop the component, and create comprehensive tests.
    • Create containers to wrap them to state, as needed (which can still be done via creating stories in storybook)

      1. This is also a good time to develop any sagas or reducers you need.
    • open http://localhost:3000/

      1. Create or open the view you want to develop, navigate there in your app, and happy developing!
    • Once you are happy with the way it looks in web, open it in ios and android, to make sure you didn't miss/break something.

    • At this point your unit tests are probably broken from storyshots. npm run test and take a look through the broken stories to make sure everything is acceptable. If not, fix whats broken, if so run npm run test:update to accept the new DOM changes, and make sure the rest of your tests pass.

    • TIP: when running tests run npm run test -- --watch to have jest watch your test files and only run the ones that change.

Blueprints

This project takes advantage of the redux-cli project. Which allows you to commit your own template files for generating.

Start your component name with a lowercase, or things may not line up properly