Skip to content

Commit

Permalink
Add with-redux-saga example (vercel#2551)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmealhouse authored and timneutkens committed Jul 13, 2017
1 parent b253479 commit 543f285
Show file tree
Hide file tree
Showing 11 changed files with 413 additions and 0 deletions.
101 changes: 101 additions & 0 deletions examples/with-redux-saga/README.md
Original file line number Diff line number Diff line change
@@ -0,0 1,101 @@
[![Deploy to now](https://deploy.now.sh/static/button.svg)](https://deploy.now.sh/?repo=https://github.com/zeit/next.js/tree/master/examples/with-redux-saga)

# redux-saga example

> This example and documentation is based on the [with-redux](https://github.com/zeit/next.js/tree/master/examples/with-redux) example.
## How to use

Download the example [or clone the repo](https://github.com/zeit/next.js):

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

Install it and run:

```bash
npm install
npm run dev
```

Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))

```bash
now
```

## The idea behind the example

Usually splitting your app state into `pages` feels natural, but sometimes you'll want to have global state for your app. This is an example using `redux` and `redux-saga` that works with universal rendering. This is just one way it can be done. If you have any suggestions or feedback please submit an issue or PR.

In the first example we are going to display a digital clock that updates every second. The first render is happening in the server and then the browser will take over. To illustrate this, the server rendered clock will have a different background color than the client one.

![](http://i.imgur.com/JCxtWSj.gif)

Our page is located at `pages/index.js` so it will map the route `/`. To get the initial data for rendering we are implementing the static method `getInitialProps`, initializing the redux store and dispatching the required actions until we are ready to return the initial state to be rendered. Since the component is wrapped with `next-redux-wrapper`, the component is automatically connected to Redux and wrapped with `react-redux Provider`, that allows us to access redux state immediately and send the store down to children components so they can access to the state when required.

For safety it is recommended to wrap all pages, no matter if they use Redux or not, so that you should not care about it anymore in all child components.

`withRedux` function accepts `makeStore` as first argument, all other arguments are internally passed to `react-redux connect()` function. `makeStore` function will receive initialState as one argument and should return a new instance of redux store each time when called, no memoization needed here. See the [full example](https://github.com/kirill-konshin/next-redux-wrapper#usage) in the Next Redux Wrapper repository. And there's another package [next-connect-redux](https://github.com/huzidaha/next-connect-redux) available with similar features.

To pass the initial state from the server to the client we pass it as a prop called `initialState` so then it's available when the client takes over.

The trick here for supporting universal redux is to separate the cases for the client and the server. When we are on the server we want to create a new store every time, otherwise different users data will be mixed up. If we are in the client we want to use always the same store. That's what we accomplish in `store.js`

The clock, under `components/clock.js`, has access to the state using the `connect` function from `react-redux`. In this case Clock is a direct child from the page but it could be deep down the render tree.

The second example, under `components/add-count.js`, shows a simple add counter function with a class component implementing a common redux pattern of mapping state and props. Again, the first render is happening in the server and instead of starting the count at 0, it will dispatch an action in redux that starts the count at 1. This continues to highlight how each navigation triggers a server render first and then a client render second, when you navigate between pages.

## What changed with next-redux-saga

The digital clock is updated every 800ms using the `runClockSaga` found in `saga.js`.

All pages are also being wrapped by `next-redux-saga` using a helper function from `store.js`:

```js
import withRedux from 'next-redux-wrapper'
import nextReduxSaga from 'next-redux-saga'
import configureStore from './store'

export function withReduxSaga(BaseComponent) {
return withRedux(configureStore)(nextReduxSaga(BaseComponent))
}

/**
* Usage:
*
* class Page extends Component {
* // implementation
* }
*
* export default withReduxSaga(Page)
*/
```

If you need to pass `react-redux` connect args to your page, you could use the following helper instead:

```js
import withRedux from 'next-redux-wrapper'
import nextReduxSaga from 'next-redux-saga'
import configureStore from './store'

export function withReduxSaga(...connectArgs) {
return BaseComponent => withRedux(configureStore, ...connectArgs)(nextReduxSaga(BaseComponent))
}

/**
* Usage:
*
* class Page extends Component {
* // implementation
* }
*
* export default withReduxSaga(state => state)(Page)
*/
```

Since `redux-saga` is like a separate thread in your application, we need to tell the server to END the running saga when all asynchronous actions are complete. This is automatically handled for you by wrapping your components in `next-redux-saga`. To illustrate this, `pages/index.js` loads placeholder JSON data on the server from [https://jsonplaceholder.typicode.com/users](https://jsonplaceholder.typicode.com/users). If you refresh `pages/other.js`, the placeholder JSON data will **NOT** be loaded on the server, however, the saga is running on the client. When you click *Navigate*, you will be taken to `pages/index.js` and the placeholder JSON data will be fetched from the client. The placeholder JSON data will only be fetched **once** from the client or the server.

After introducing `redux-saga` there was too much code in `store.js`. For simplicity and readability, the actions, reducers, sagas, and store creators have been split into seperate files: `actions.js`, `reducer.js`, `saga.js`, `store.js`
42 changes: 42 additions & 0 deletions examples/with-redux-saga/actions.js
Original file line number Diff line number Diff line change
@@ -0,0 1,42 @@
export const actionTypes = {
FAILURE: 'FAILURE',
INCREMENT: 'INCREMENT',
LOAD_DATA: 'LOAD_DATA',
LOAD_DATA_SUCCESS: 'LOAD_DATA_SUCCESS',
START_CLOCK: 'START_CLOCK',
TICK_CLOCK: 'TICK_CLOCK'
}

export function failure (error) {
return {
type: actionTypes.FAILURE,
error
}
}

export function increment () {
return {type: actionTypes.INCREMENT}
}

export function loadData () {
return {type: actionTypes.LOAD_DATA}
}

export function loadDataSuccess (data) {
return {
type: actionTypes.LOAD_DATA_SUCCESS,
data
}
}

export function startClock () {
return {type: actionTypes.START_CLOCK}
}

export function tickClock (isServer) {
return {
type: actionTypes.TICK_CLOCK,
light: !isServer,
ts: Date.now()
}
}
30 changes: 30 additions & 0 deletions examples/with-redux-saga/components/add-count.js
Original file line number Diff line number Diff line change
@@ -0,0 1,30 @@
import React, {Component} from 'react'
import {connect} from 'react-redux'

import {increment} from '../actions'

class AddCount extends Component {
add = () => {
this.props.dispatch(increment())
}

render () {
const {count} = this.props
return (
<div>
<style jsx>{`
div {
padding: 0 0 20px 0;
}
`}</style>
<h1>
AddCount: <span>{count}</span>
</h1>
<button onClick={this.add}>Add To Count</button>
</div>
)
}
}

const mapStateToProps = ({count}) => ({count})
export default connect(mapStateToProps)(AddCount)
32 changes: 32 additions & 0 deletions examples/with-redux-saga/components/clock.js
Original file line number Diff line number Diff line change
@@ -0,0 1,32 @@
import React from 'react'

const pad = n => (n < 10 ? `0${n}` : n)

const format = t => {
const hours = t.getUTCHours()
const minutes = t.getUTCMinutes()
const seconds = t.getUTCSeconds()
return `${pad(hours)}:${pad(minutes)}:${pad(seconds)}`
}

function Clock ({lastUpdate, light}) {
return (
<div className={light ? 'light' : ''}>
{format(new Date(lastUpdate))}
<style jsx>{`
div {
padding: 15px;
display: inline-block;
color: #82FA58;
font: 50px menlo, monaco, monospace;
background-color: #000;
}
.light {
background-color: #999;
}
`}</style>
</div>
)
}

export default Clock
34 changes: 34 additions & 0 deletions examples/with-redux-saga/components/page.js
Original file line number Diff line number Diff line change
@@ -0,0 1,34 @@
import Link from 'next/link'
import {connect} from 'react-redux'

import AddCount from './add-count'
import Clock from './clock'

function Page ({error, lastUpdate, light, linkTo, placeholderData, title}) {
return (
<div>
<h1>
{title}
</h1>
<Clock lastUpdate={lastUpdate} light={light} />
<AddCount />
<nav>
<Link href={linkTo}>
<a>Navigate</a>
</Link>
</nav>
{placeholderData &&
<pre>
<code>
{JSON.stringify(placeholderData, null, 2)}
</code>
</pre>}
{error &&
<p style={{color: 'red'}}>
Error: {error.message}
</p>}
</div>
)
}

export default connect(state => state)(Page)
25 changes: 25 additions & 0 deletions examples/with-redux-saga/package.json
Original file line number Diff line number Diff line change
@@ -0,0 1,25 @@
{
"name": "with-redux-saga",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"es6-promise": "4.1.1",
"isomorphic-fetch": "2.2.1",
"next": "latest",
"next-redux-saga": "1.0.1",
"next-redux-wrapper": "1.2.0",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-saga": "0.15.4"
},
"devDependencies": {
"redux-devtools-extension": "2.13.2"
}
}
24 changes: 24 additions & 0 deletions examples/with-redux-saga/pages/index.js
Original file line number Diff line number Diff line change
@@ -0,0 1,24 @@
import React from 'react'

import {increment, loadData, startClock} from '../actions'
import {withReduxSaga} from '../store'
import Page from '../components/page'

class Counter extends React.Component {
static async getInitialProps ({store}) {
store.dispatch(increment())
if (!store.getState().placeholderData) {
store.dispatch(loadData())
}
}

componentDidMount () {
this.props.dispatch(startClock())
}

render () {
return <Page title='Index Page' linkTo='/other' />
}
}

export default withReduxSaga(Counter)
21 changes: 21 additions & 0 deletions examples/with-redux-saga/pages/other.js
Original file line number Diff line number Diff line change
@@ -0,0 1,21 @@
import React from 'react'

import {increment, startClock} from '../actions'
import {withReduxSaga} from '../store'
import Page from '../components/page'

class Counter extends React.Component {
static async getInitialProps ({store}) {
store.dispatch(increment())
}

componentDidMount () {
this.props.dispatch(startClock())
}

render () {
return <Page title='Other Page' linkTo='/' />
}
}

export default withReduxSaga(Counter)
42 changes: 42 additions & 0 deletions examples/with-redux-saga/reducer.js
Original file line number Diff line number Diff line change
@@ -0,0 1,42 @@
import {actionTypes} from './actions'

export const exampleInitialState = {
count: 0,
error: false,
lastUpdate: 0,
light: false,
placeholderData: null
}

function reducer (state = exampleInitialState, action) {
switch (action.type) {
case actionTypes.FAILURE:
return {
...state,
...{error: action.error}
}

case actionTypes.INCREMENT:
return {
...state,
...{count: state.count 1}
}

case actionTypes.LOAD_DATA_SUCCESS:
return {
...state,
...{placeholderData: action.data}
}

case actionTypes.TICK_CLOCK:
return {
...state,
...{lastUpdate: action.ts, light: !!action.light}
}

default:
return state
}
}

export default reducer
37 changes: 37 additions & 0 deletions examples/with-redux-saga/saga.js
Original file line number Diff line number Diff line change
@@ -0,0 1,37 @@
/* global fetch */

import {delay} from 'redux-saga'
import {all, call, put, take, takeLatest} from 'redux-saga/effects'
import es6promise from 'es6-promise'
import 'isomorphic-fetch'

import {actionTypes, failure, loadDataSuccess, tickClock} from './actions'

es6promise.polyfill()

function * runClockSaga () {
yield take(actionTypes.START_CLOCK)
while (true) {
yield put(tickClock(false))
yield call(delay, 800)
}
}

function * loadDataSaga () {
try {
const res = yield fetch('https://jsonplaceholder.typicode.com/users')
const data = yield res.json()
yield put(loadDataSuccess(data))
} catch (err) {
yield put(failure(err))
}
}

function * rootSaga () {
yield all([
call(runClockSaga),
takeLatest(actionTypes.LOAD_DATA, loadDataSaga)
])
}

export default rootSaga
Loading

0 comments on commit 543f285

Please sign in to comment.