2017-04-22 12:51:51 +00:00
[![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-refnux)
2017-02-21 04:13:05 +00:00
# Refnux example
## How to use
2017-12-03 04:30:17 +00:00
### Using `create-next-app`
2018-04-03 12:19:05 +00:00
Execute [`create-next-app` ](https://github.com/segmentio/create-next-app ) with [Yarn ](https://yarnpkg.com/lang/en/docs/cli/create/ ) or [npx ](https://github.com/zkat/npx#readme ) to bootstrap the example:
2017-12-03 04:30:17 +00:00
2018-03-14 08:09:46 +00:00
```bash
npx create-next-app --example with-refnux with-refnux-app
# or
yarn create next-app --example with-refnux with-refnux-app
2017-12-03 04:30:17 +00:00
```
### Download manually
2018-07-11 21:56:15 +00:00
Download the example:
2017-02-21 04:13:05 +00:00
```bash
2017-12-07 02:12:42 +00:00
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-refnux
2017-02-21 04:13:05 +00:00
cd with-refnux
```
Install it and run:
```bash
npm install
npm run dev
2018-04-03 12:19:05 +00:00
# or
yarn
yarn dev
2017-02-21 04:13:05 +00:00
```
Deploy it to the cloud with [now ](https://zeit.co/now ) ([download](https://zeit.co/download))
```bash
now
```
## The idea behind the example
2017-05-06 19:59:02 +00:00
This example, just like `with-redux` and `with-mobx` examples, shows how to manage a global state in your web-application.
2017-03-24 13:14:29 +00:00
In this case we are using [refnux ](https://github.com/algesten/refnux ) which is an alternative, simpler, purely functional store state manager.
2017-02-21 04:13:05 +00:00
We have two very similar pages (page1.js, page2.js). They both
- show the current application state, including a simple counter value
- have a link to jump from one page to the other
- have an 'increment' button to increment the state of the counter
(it triggers the `counterIncrement` action)
When running the example, please, increment the counter and note how moving from page 1 to page 2 and back the state is persisted.
Reloading any of the pages will restore the initial state coming from the server.
### Implementation details
Each page uses `withRefnux` helper which wraps the page in a Provider component.
Page components are connected to the state using refnux `connect` function.
In the `store/` directory you can see a simple implmentation of
- a `getInitialstate` function that returns the initial state of the store. It's used only on SSR
- a `counterIncrement` action that increments the counter state whe user pushes the corresponding button
- a `setTitle` action that's used to set page title during pages `getInitialProps`
2017-03-24 13:14:29 +00:00
If you have any comment / question / pull requests please refer to the [original repository ](https://github.com/davibe/next.js-example-with-refnux ) where this example is developed and maintained.