From a8c344fa19ae242f90277391340463c5050b107e Mon Sep 17 00:00:00 2001 From: Dan Argue Date: Thu, 23 Nov 2017 04:41:59 -0800 Subject: [PATCH] Add with-mobx-state-tree example (#3179) * Adapt with-mobx example for with-mobx-state-tree * Remove unnecessary lastUpdate parameter to show off snapshot * update readme * make other.js more closely mimic index.js --- examples/with-mobx-state-tree/.babelrc | 8 +++ examples/with-mobx-state-tree/README.md | 59 +++++++++++++++++++ .../with-mobx-state-tree/components/Clock.js | 24 ++++++++ .../with-mobx-state-tree/components/Page.js | 29 +++++++++ examples/with-mobx-state-tree/package.json | 21 +++++++ examples/with-mobx-state-tree/pages/index.js | 26 ++++++++ examples/with-mobx-state-tree/pages/other.js | 26 ++++++++ examples/with-mobx-state-tree/server.js | 21 +++++++ examples/with-mobx-state-tree/store.js | 44 ++++++++++++++ 9 files changed, 258 insertions(+) create mode 100644 examples/with-mobx-state-tree/.babelrc create mode 100644 examples/with-mobx-state-tree/README.md create mode 100644 examples/with-mobx-state-tree/components/Clock.js create mode 100644 examples/with-mobx-state-tree/components/Page.js create mode 100644 examples/with-mobx-state-tree/package.json create mode 100644 examples/with-mobx-state-tree/pages/index.js create mode 100644 examples/with-mobx-state-tree/pages/other.js create mode 100644 examples/with-mobx-state-tree/server.js create mode 100644 examples/with-mobx-state-tree/store.js diff --git a/examples/with-mobx-state-tree/.babelrc b/examples/with-mobx-state-tree/.babelrc new file mode 100644 index 00000000..47a96baf --- /dev/null +++ b/examples/with-mobx-state-tree/.babelrc @@ -0,0 +1,8 @@ +{ + "presets": [ + "next/babel" + ], + "plugins": [ + "transform-decorators-legacy" + ] +} \ No newline at end of file diff --git a/examples/with-mobx-state-tree/README.md b/examples/with-mobx-state-tree/README.md new file mode 100644 index 00000000..4e15afca --- /dev/null +++ b/examples/with-mobx-state-tree/README.md @@ -0,0 +1,59 @@ +[![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-mobx-state-tree) + +# MobX State Tree 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-mobx +cd with-mobx +``` + +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 +``` +## Notes +This example is a mobx port of the [with-redux](https://github.com/zeit/next.js/tree/master/examples/with-redux) example. Decorator support is activated by adding a `.babelrc` file at the root of the project: + +```json +{ + "presets": [ + "next/babel" + ], + "plugins": [ + "transform-decorators-legacy" + ] +} +``` + +### Rehydrating with server data +After initializing the store (and possibly making changes such as fetching data), `getInitialProps` must stringify the store in order to pass it as props to the client. `mobx-state-tree` comes out of the box with a handy method for doing this called `getSnapshot`. The snapshot is sent to the client as `props.initialState` where the pages's `constructor()` may use it to rehydrate the client store. + +## 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 on how you can use mobx that also works with our universal rendering approach. This is just a way you can do it but it's not the only one. + +In this 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 mobx-state-tree store and returning the initial timestamp to be rendered. The root component for the render method is the `mobx-react ` that allows us to send the store down to children components so they can access to the state when required. + +To pass the initial timestamp from the server to the client we pass it as a prop called `lastUpdate` so then it's available when the client takes over. + +The trick here for supporting universal mobx 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 on `store.js` + +The clock, under `components/Clock.js`, has access to the state using the `inject` and `observer` functions from `mobx-react`. In this case Clock is a direct child from the page but it could be deep down the render tree. + +As far as how this example differs from the `with-mobx` example, `mobx-state-tree` requires that any changes to the observable data are sent as actions, which are defined on the model in `server.js`. The snapshot feature, while not very useful in this particular case, makes client-side rehydration of the state amazingly easy. Any changes that are made to the store in `getInitialProps` will be refreshed instantly when that page is loaded on the client. diff --git a/examples/with-mobx-state-tree/components/Clock.js b/examples/with-mobx-state-tree/components/Clock.js new file mode 100644 index 00000000..caf28808 --- /dev/null +++ b/examples/with-mobx-state-tree/components/Clock.js @@ -0,0 +1,24 @@ +export default (props) => { + return ( +
+ {format(new Date(props.lastUpdate))} + +
+ ) +} + +const format = t => `${pad(t.getUTCHours())}:${pad(t.getUTCMinutes())}:${pad(t.getUTCSeconds())}` + +const pad = n => n < 10 ? `0${n}` : n diff --git a/examples/with-mobx-state-tree/components/Page.js b/examples/with-mobx-state-tree/components/Page.js new file mode 100644 index 00000000..933e863e --- /dev/null +++ b/examples/with-mobx-state-tree/components/Page.js @@ -0,0 +1,29 @@ +import React from 'react' +import Link from 'next/link' +import { inject, observer } from 'mobx-react' +import Clock from './Clock' + +@inject('store') @observer +class Page extends React.Component { + componentDidMount() { + this.props.store.start() + } + + componentWillUnmount() { + this.props.store.stop() + } + + render() { + return ( +
+

{this.props.title}

+ + +
+ ) + } +} + +export default Page diff --git a/examples/with-mobx-state-tree/package.json b/examples/with-mobx-state-tree/package.json new file mode 100644 index 00000000..e596b439 --- /dev/null +++ b/examples/with-mobx-state-tree/package.json @@ -0,0 +1,21 @@ +{ + "name": "with-mobx", + "version": "1.0.0", + "scripts": { + "dev": "node server.js", + "build": "next build", + "start": "NODE_ENV=production node server.js" + }, + "dependencies": { + "mobx": "3.3.1", + "mobx-react": "^4.0.4", + "mobx-state-tree": "1.0.1", + "next": "latest", + "react": "^16.0.0", + "react-dom": "^16.0.0" + }, + "license": "ISC", + "devDependencies": { + "babel-plugin-transform-decorators-legacy": "^1.3.4" + } +} diff --git a/examples/with-mobx-state-tree/pages/index.js b/examples/with-mobx-state-tree/pages/index.js new file mode 100644 index 00000000..8248db3e --- /dev/null +++ b/examples/with-mobx-state-tree/pages/index.js @@ -0,0 +1,26 @@ +import React from 'react' +import { Provider } from 'mobx-react' +import { getSnapshot } from 'mobx-state-tree' +import { initStore } from '../store' +import Page from '../components/Page' + +export default class Counter extends React.Component { + static getInitialProps({ req }) { + const isServer = !!req + const store = initStore(isServer) + return { initialState: getSnapshot(store), isServer } + } + + constructor(props) { + super(props) + this.store = initStore(props.isServer, props.initialState) + } + + render() { + return ( + + + + ) + } +} diff --git a/examples/with-mobx-state-tree/pages/other.js b/examples/with-mobx-state-tree/pages/other.js new file mode 100644 index 00000000..30faf756 --- /dev/null +++ b/examples/with-mobx-state-tree/pages/other.js @@ -0,0 +1,26 @@ +import React from 'react' +import { Provider } from 'mobx-react' +import { getSnapshot } from 'mobx-state-tree' +import { initStore } from '../store' +import Page from '../components/Page' + +export default class Counter extends React.Component { + static getInitialProps({ req }) { + const isServer = !!req + const store = initStore(isServer) + return { initialState: getSnapshot(store), isServer } + } + + constructor(props) { + super(props) + this.store = initStore(props.isServer, props.initialState) + } + + render() { + return ( + + + + ) + } +} diff --git a/examples/with-mobx-state-tree/server.js b/examples/with-mobx-state-tree/server.js new file mode 100644 index 00000000..bf641110 --- /dev/null +++ b/examples/with-mobx-state-tree/server.js @@ -0,0 +1,21 @@ +const port = parseInt(process.env.PORT, 10) || 3000 +const dev = process.env.NODE_ENV !== 'production' + +const { createServer } = require('http') +const { parse } = require('url') +const next = require('next') +const mobxReact = require('mobx-react') +const app = next({ dev }) +const handle = app.getRequestHandler() + +mobxReact.useStaticRendering(true) + +app.prepare().then(() => { + createServer((req, res) => { + const parsedUrl = parse(req.url, true) + handle(req, res, parsedUrl) + }).listen(port, err => { + if (err) throw err + console.log(`> Ready on http://localhost:${port}`) + }) +}) diff --git a/examples/with-mobx-state-tree/store.js b/examples/with-mobx-state-tree/store.js new file mode 100644 index 00000000..207fa4df --- /dev/null +++ b/examples/with-mobx-state-tree/store.js @@ -0,0 +1,44 @@ +import { types, applySnapshot } from 'mobx-state-tree' + +let store = null + +const Store = types + .model({ + lastUpdate: types.Date, + light: false, + }) + .actions((self) => { + let timer; + function start() { + timer = setInterval(() => { + // mobx-state-tree doesn't allow anonymous callbacks changing data + // pass off to another action instead + self.update(); + }) + } + + function update() { + self.lastUpdate = Date.now() + self.light = true + } + + function stop() { + clearInterval(timer); + } + + return { start, stop, update } + }) + + +export function initStore(isServer, snapshot = null) { + if (isServer) { + store = Store.create({ lastUpdate: Date.now() }) + } + if (store === null) { + store = Store.create({ lastUpdate: Date.now() }) + } + if (snapshot) { + applySnapshot(store, snapshot) + } + return store +}