During our time developing mobile apps we have gathered some experience and preferences in architecture and libraries. We decided to gather it all in one project to share it with all community. So we created this template. We found out and combined the patterns and libraries to make a robust app that works properly on both platforms: Android and iOS.
Read article here
The template project interacts with Github API and covers major user flows:
- Login flow. Simple example of fields validation, storing token and so on.
- Several tabs with list of items. One in two apps definitely has list of some items or several tabs with lists.
- Item details Screen. Example of simple screen with some data.
- Logout. To clear state, navigate to certain screen, etc.
If you have not yet installed React Native, you can use this tutorial.
Use git clone
to get project. Then go to the root folder of project and install all node modules using npm install
command.
- You have to connect hardware device using ADB or run emulator.
- Invoke
react-native run-android
command.
- You have to get Xcode installed on your machine.
- Invoke
react-native run-ios
command.
-
Navigator: https://reactnavigation.org/
-
Strings localization: https://github.com/stefalda/ReactNativeLocalization
-
Networking: rx-fetch + rxjs
-
Maps: https://github.com/airbnb/react-native-maps
-
Permissions: https://github.com/yonahforst/react-native-permissions
-
Image picker: https://github.com/ivpusic/react-native-image-crop-picker
-
OpenGL: https://github.com/ProjectSeptemberInc/gl-react-native
-
UI components: https://nativebase.io/
-
Dialogs: https://www.npmjs.com/package/react-native-popup-dialog
-
Architecture: Redux + saga https://github.com/redux-saga/redux-saga
-
Code style: https://github.com/airbnb/javascript
-
Versioning: packadge.json - we freeze versions of the libraries during project development, unless we really need the feature or bugfix from newer version
-
Use formatting tabulation of 2. Needs to be changed in WebStorm settings
-
Add all component props to propTypes. It adds safety, shows you what props available, and allows IDEA/WebStorm to autocomplete them. https://facebook.github.io/react/docs/typechecking-with-proptypes.html
-
Use
redux-immutable
to create immutable store. Redux FAQ: Immutable Dataimport { combineReducers } from 'redux-immutable'; import loginReducer from "../reducers/loginReducer"; import rootReducer from "../reducers/rootReducer"; import listReducer from "../reducers/listReduser"; const combinedReducers = combineReducers({ root: rootReducer, login: loginReducer, list: listReducer, });
redux-persist
can't work with immutable state. So, we have to useredux-persist-immutable
.import { autoRehydrate, persistStore } from 'redux-persist-immutable' import { applyMiddleware, compose, createStore } from "redux"; const sagaMiddleware = createSagaMiddleware(); const store = createStore( combinedReducers, initialState, compose(applyMiddleware(sagaMiddleware), autoRehydrate({log: true}))); persistStore( store, { storage: AsyncStorage, blacklist: ['root'], } );
-
Antipatterns:
- Do not use setState() in componentWillMount()
- Do not perform any logic in render() function
- Do not use indexes of an array as its keys
- Do not validate forms with redux store
- Do not perform any logic in reducers
- Do not perform too much dispatches
- Do not rely on JS single thread
- Do not use x-index a lot
- Do not use ListView, use FlatList instead
- Remove console.log() calls
- Do not use object literals in render()
- Reduce render() function calls
- Use InteractionManager.runAfterInteractions() to perform any hard stuff
- Use requestAnimationFrame to perform animations
- Extend React.PureComponent as much as possible
- Use shouldRasterizeIOS
- Use renderToHardwareTextureAndroid
- Do not perform any logic in componentWillMount()
- Use useNativeDriver
- Don't use
toJS()
with immutable to avoid creation unnecessary object.
-
Project structure:
- android
- ios
- node_modules
- index.android.js
- index.ios.js
- …
- app
- actions
- login-actions.js
- sign-up-actions.js
- …
- components
- Login.js
- SignUp.js
- …
- reducers
- loginReducer.js
- signUpReducer.js
- …
- resources
- strings.js
- colors.js
- dimens.js
- styles.js
- store
- configureStore.js
- api.js
- app.js
- const.js