1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-redux-observable
Fouad Matin 2528779394 examples: add create-next-app (#3377)
* examples: add create-next-app

* fix with-typescript readme
2017-12-02 20:30:17 -08:00
..
components example with-redux-observable (#3272) 2017-11-13 20:37:43 +01:00
lib example with-redux-observable (#3272) 2017-11-13 20:37:43 +01:00
pages example with-redux-observable (#3272) 2017-11-13 20:37:43 +01:00
demo.png example with-redux-observable (#3272) 2017-11-13 20:37:43 +01:00
package.json example with-redux-observable (#3272) 2017-11-13 20:37:43 +01:00
README.md examples: add create-next-app (#3377) 2017-12-02 20:30:17 -08:00

Redux-Observable example

How to use

Using create-next-app

Download create-next-app to bootstrap the example:

npm i -g create-next-app
create-next-app --example with-redux-observable with-redux-observable-app

Download manually

Download the example or clone the repo:

curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-redux-observable
cd with-redux-observable

Install it and run:

npm install
npm run dev

The idea behind the example

Example is a page that renders information about Star-Wars characters. It fetches new character
every 3 seconds having the initial character fetched on a server.

Example also uses redux-logger to log every action.

demo page

The main problem with integrating Redux, Redux-Observable and Next.js is probably making initial requests on a server. That's because it's not possible to wait until epics are resolved in getInitialProps hook.

In order to have best of two worlds, we can extract request logic and use it separately. That's what lib/api.js is for. It keeps functions that return configured Observable for ajax request. You can notice that fetchCharacter method is used to get initial data in pages/index.js and also in lib/reducer.js within an epic.

Other than above, configuration is pretty the same as in with-redux example and redux-observable docs. There is, however one important thing to note, that we are not using AjaxObservable from rxjs library because it doesn't work on Node. Because of this we use a library like universal-rx-request.