Skip to content

Commit 5e01ac2

Browse files
committed
upgrade to react navigation v4
1 parent 3871a06 commit 5e01ac2

File tree

9 files changed

+371
-216
lines changed

9 files changed

+371
-216
lines changed

README.md

+53-47
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,32 @@
55
`react-native-router-flux` is a different API over `react-navigation`. It helps users to define all the routes in one central place and navigate and communicate between different screens in an easy way. But it also means that `react-native-router-flux` inherits all [limitations](https://reactnavigation.org/docs/en/limitations.html) and changes from updated versions.
66

77
### IMPORTANT NOTES
8-
#### v4.1.0-beta.x is based on [React Navigation v3.x](https://reactnavigation.org/)
9-
#### v4 is based on [React Navigation v2.x]. See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v3) and [docs](https://github.com/aksonov/react-native-router-flux/blob/master/README3.md) for v3 based on deprecated React Native Experimental Navigation API. It is not supported and may not work with latest React Native versions.
8+
9+
#### v4.2.0-beta.x is based on [React Navigation v4.x](https://reactnavigation.org/)
10+
11+
#### v4.1.0-beta.x is based on [React Navigation v3.x](https://reactnavigation.org/docs/en/3.x/getting-started.html)
12+
13+
#### v4.0.x is based on [React Navigation v2.x]. See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v3) and [docs](https://github.com/aksonov/react-native-router-flux/blob/master/README3.md) for v3 based on deprecated React Native Experimental Navigation API. It is not supported and may not work with latest React Native versions.
1014

1115
#### v4.0.0-beta.x is based on [React Navigation v1.5.x](https://reactnavigation.org/). See [this branch](https://github.com/aksonov/react-native-router-flux/tree/v4.0.0-beta) for this version. It is also not supported and may not work with the latest React Native versions.
1216

13-
___
17+
---
18+
19+
- [Examples](#try-the-example-apps)
20+
- [Motivation](https://gist.github.com/aksonov/e2d7454421e44b1c4c72214d14053410)
21+
- [v4 Features](#v4-features)
22+
- [API](/docs/API.md)
23+
- [Migrating from v3](/docs/MIGRATION.md)
24+
- [Sponsors/Backers/Contributors](#contributors)
25+
26+
## Getting Started
1427

15-
* [Examples](#try-the-example-apps)
16-
* [Motivation](https://gist.github.com/aksonov/e2d7454421e44b1c4c72214d14053410)
17-
* [v4 Features](#v4-features)
18-
* [API](/docs/API.md)
19-
* [Migrating from v3](/docs/MIGRATION.md)
20-
* [Sponsors/Backers/Contributors](#contributors)
28+
1. Install native dependencies used by React Native Router (https://reactnavigation.org/docs/en/getting-started.html)
29+
2. Install this component
2130

31+
```
32+
yarn add react-native-router-flux
33+
```
2234

2335
## Usage
2436

@@ -28,9 +40,9 @@ Define all your routes in one React component...
2840
const App = () => (
2941
<Router>
3042
<Stack key="root">
31-
<Scene key="login" component={Login} title="Login"/>
32-
<Scene key="register" component={Register} title="Register"/>
33-
<Scene key="home" component={Home}/>
43+
<Scene key="login" component={Login} title="Login" />
44+
<Scene key="register" component={Register} title="Register" />
45+
<Scene key="home" component={Home} />
3446
</Stack>
3547
</Router>
3648
);
@@ -42,13 +54,13 @@ const App = () => (
4254
// Login.js
4355

4456
// navigate to 'home' as defined in your top-level router
45-
Actions.home(PARAMS)
57+
Actions.home(PARAMS);
4658

4759
// go back (i.e. pop the current screen off the nav stack)
48-
Actions.pop()
60+
Actions.pop();
4961

5062
// refresh the current Scene with the specified props
51-
Actions.refresh({param1: 'hello', param2: 'world'})
63+
Actions.refresh({ param1: 'hello', param2: 'world' });
5264
```
5365

5466
## API
@@ -71,50 +83,47 @@ yarn
7183
yarn start
7284
```
7385

74-
Installing with npm
75-
76-
```npm install --save react-native-router-flux```
77-
78-
Installing wih yarn
79-
80-
```yarn add react-native-router-flux```
81-
8286
## v4 Features
83-
* Based on latest [React Navigation](https://reactnavigation.org) API
84-
* Separate navigation logic from presentation. You may now change navigation state directly from your business logic code - stores/reducers/etc. navigationStore
85-
* Built-in state machine (v3 `Switch` replacement)
86-
* Each `Scene` with `component` defined can have `onEnter`/`onExit`/`on` handlers.
87-
* `onEnter`/`on` handler can be async.
88-
* For 'truthy' return of `onEnter`/`on`, `success` handler (if defined) will be executed
89-
* if `success` is a string then router will navigate to the `Scene` with that key
90-
* in case of handler's failure, `failure` prop (if defined) will be run.
91-
* Combining `onEnter`, `onExit`, `success`, and `failure` makes patterns like authentication, data validation, and conditional transitions simple and intuitive.
92-
* [MobX](https://mobx.js.org/)-friendly: all scenes are wrapped with `observer`. You may subscribe to `navigationStore` (`Actions` in v3) and observe current navigation state. Not applicable to Redux.
93-
* Flexible Nav bar customization, currently not allowed by React Navigation:
94-
https://github.com/react-community/react-navigation/issues/779
95-
* Drawer support (provided by React Navigation)
96-
* Inheritance of scene attributes allow you to avoid any code/attribute duplications. Adding `rightTitle` to a scene will apply to all child scenes simultaneously. See example app.
97-
* Access to your app navigations state as simple as `Actions.state`.
98-
* Use `Actions.currentScene` to get name of current scene.
87+
88+
- Based on latest [React Navigation](https://reactnavigation.org) API
89+
- Separate navigation logic from presentation. You may now change navigation state directly from your business logic code - stores/reducers/etc. navigationStore
90+
- Built-in state machine (v3 `Switch` replacement)
91+
- Each `Scene` with `component` defined can have `onEnter`/`onExit`/`on` handlers.
92+
- `onEnter`/`on` handler can be async.
93+
- For 'truthy' return of `onEnter`/`on`, `success` handler (if defined) will be executed
94+
- if `success` is a string then router will navigate to the `Scene` with that key
95+
- in case of handler's failure, `failure` prop (if defined) will be run.
96+
- Combining `onEnter`, `onExit`, `success`, and `failure` makes patterns like authentication, data validation, and conditional transitions simple and intuitive.
97+
- [MobX](https://mobx.js.org/)-friendly: all scenes are wrapped with `observer`. You may subscribe to `navigationStore` (`Actions` in v3) and observe current navigation state. Not applicable to Redux.
98+
- Flexible Nav bar customization, currently not allowed by React Navigation:
99+
https://github.com/react-community/react-navigation/issues/779
100+
- Drawer support (provided by React Navigation)
101+
- Inheritance of scene attributes allow you to avoid any code/attribute duplications. Adding `rightTitle` to a scene will apply to all child scenes simultaneously. See example app.
102+
- Access to your app navigations state as simple as `Actions.state`.
103+
- Use `Actions.currentScene` to get name of current scene.
99104

100105
### Helpful tips if you run into some gotchas
101106

102107
## Using Static on Methods with HOCs
103-
* This is just a helpful tip for anyone who use the onExit/onEnter methods as a static method in their Component Class. Please refer to this link https://reactjs.org/docs/higher-order-components.html.
104108

105-
* If your Scene Components are Wrapped in Custom HOCs/ Decorators, then the static onExit/onEnter methods will not work as your Custom HOCs will not copy the static methods over to your Enhanced Component.Use the npm package called hoist-non-react-statics to copy your Component level static methods over to your Enhanced Component.
109+
- This is just a helpful tip for anyone who use the onExit/onEnter methods as a static method in their Component Class. Please refer to this link https://reactjs.org/docs/higher-order-components.html.
110+
111+
- If your Scene Components are Wrapped in Custom HOCs/ Decorators, then the static onExit/onEnter methods will not work as your Custom HOCs will not copy the static methods over to your Enhanced Component.Use the npm package called hoist-non-react-statics to copy your Component level static methods over to your Enhanced Component.
106112

107113
## Implement onBack from your Scene after declaring it
108114

109-
* If you have a Scene where in you want to make some changes to your Component State when Back button is pressed, then doing this
115+
- If you have a Scene where in you want to make some changes to your Component State when Back button is pressed, then doing this
116+
110117
```js
111118
<Scene key={...} component={...} onBack={()=>{/*code*/}}/>
112-
```
119+
```
120+
113121
will not help.
114122

115123
```js
116-
<Scene key={...} component={...} onBack={()=>{/*code*/}} back={true}/>
124+
<Scene key={...} component={...} onBack={()=>{/*code*/}} back={true}/>
117125
```
126+
118127
Make sure back = true is passed to your scene, now in your Component's lifecycle add this
119128

120129
```js
@@ -125,20 +134,17 @@ componentDidMount(){
125134
}
126135
```
127136

128-
129137
## Contributors
130138

131139
This project exists thanks to all the people who contribute. [[Contribute]](CONTRIBUTING.md).
132140
<a href="https://github.com/aksonov/react-native-router-flux/graphs/contributors"><img src="https://opencollective.com/react-native-router-flux/contributors.svg?width=890" /></a>
133141

134-
135142
## Backers
136143

137144
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/react-native-router-flux#backer)]
138145

139146
<a href="https://opencollective.com/react-native-router-flux#backers" target="_blank"><img src="https://opencollective.com/react-native-router-flux/backers.svg?width=890"></a>
140147

141-
142148
## Sponsors
143149

144150
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/react-native-router-flux#sponsor)]

examples/react-native/ios/Podfile.lock

+13-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ PODS:
8181
- React-Core (= 0.60.5)
8282
- RNGestureHandler (1.4.1):
8383
- React
84+
- RNReanimated (1.2.0):
85+
- React
86+
- RNScreens (2.0.0-alpha.3):
87+
- React
8488
- yoga (0.60.5.React)
8589

8690
DEPENDENCIES:
@@ -105,6 +109,8 @@ DEPENDENCIES:
105109
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
106110
- React-RCTWebSocket (from `../node_modules/react-native/Libraries/WebSocket`)
107111
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
112+
- RNReanimated (from `../node_modules/react-native-reanimated`)
113+
- RNScreens (from `../node_modules/react-native-screens`)
108114
- yoga (from `../node_modules/react-native/ReactCommon/yoga`)
109115

110116
SPEC REPOS:
@@ -154,6 +160,10 @@ EXTERNAL SOURCES:
154160
:path: "../node_modules/react-native/Libraries/WebSocket"
155161
RNGestureHandler:
156162
:path: "../node_modules/react-native-gesture-handler"
163+
RNReanimated:
164+
:path: "../node_modules/react-native-reanimated"
165+
RNScreens:
166+
:path: "../node_modules/react-native-screens"
157167
yoga:
158168
:path: "../node_modules/react-native/ReactCommon/yoga"
159169

@@ -180,8 +190,10 @@ SPEC CHECKSUMS:
180190
React-RCTVibration: 2105b2e0e2b66a6408fc69a46c8a7fb5b2fdade0
181191
React-RCTWebSocket: cd932a16b7214898b6b7f788c8bddb3637246ac4
182192
RNGestureHandler: 4cb47a93019c1a201df2644413a0a1569a51c8aa
193+
RNReanimated: 1b52415c4302f198cb581282a0166690bad62c43
194+
RNScreens: 402a99b0a27c0c32f079cec12d3ccbd35e20cd7f
183195
yoga: 312528f5bbbba37b4dcea5ef00e8b4033fdd9411
184196

185197
PODFILE CHECKSUM: 427825d45bec91cf181bdca5a1e33480e904ef46
186198

187-
COCOAPODS: 1.7.5
199+
COCOAPODS: 1.6.1

examples/react-native/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"react-native-button": "^2.4.0",
1414
"react-native-gesture-handler": "^1.4.1",
1515
"react-native-message-bar": "^2.0.10",
16-
"react-native-router-flux": "4.1.0-beta.8"
16+
"react-native-reanimated": "^1.2.0",
17+
"react-native-router-flux": "4.2.0-beta.1",
18+
"react-native-screens": "^2.0.0-alpha.3"
1719
},
1820
"devDependencies": {
1921
"@babel/core": "^7.5.5",

0 commit comments

Comments
 (0)