|
| 1 | +# Redux prefetch |
| 2 | + |
| 3 | +Allows universal server-side rendering to be performed without much hassle. |
| 4 | +Exposes `@fetch` decorator and `storeEnchancer`, which keeps track of unresolved promises. |
| 5 | +Add `.resolve` function to store |
| 6 | + |
| 7 | +## Install |
| 8 | + |
| 9 | +`npm i redux-prefetch -S` |
| 10 | + |
| 11 | +## Usage |
| 12 | + |
| 13 | +The most important files are listed here, but look in the example for some extra stuff. |
| 14 | + |
| 15 | +```js |
| 16 | +// createStore.js |
| 17 | +import { createStore, applyMiddleware, compose } from 'redux'; |
| 18 | +import promiseMiddleware from 'redux-promise-middleware'; |
| 19 | +import reducers from '../modules/reducers'; |
| 20 | +import { syncReduxAndRouter } from 'redux-simple-router'; |
| 21 | +import { canUseDOM as isBrowser } from 'fbjs/lib/ExecutionEnvironment'; |
| 22 | +import { reduxPrefetch } from 'redux-prefetch'; |
| 23 | + |
| 24 | +export default function returnStore(history, initialState) { |
| 25 | + const middleware = [promiseMiddleware()]; |
| 26 | + |
| 27 | + let finalCreateStore; |
| 28 | + if (isBrowser) { |
| 29 | + finalCreateStore = applyMiddleware(...middleware); |
| 30 | + } else { |
| 31 | + finalCreateStore = compose(reduxPrefetch, applyMiddleware(...middleware)); |
| 32 | + } |
| 33 | + |
| 34 | + const store = finalCreateStore(createStore)(reducers, initialState); |
| 35 | + syncReduxAndRouter(history, store); |
| 36 | + |
| 37 | + return store; |
| 38 | +} |
| 39 | +``` |
| 40 | + |
| 41 | +```js |
| 42 | +// server.js |
| 43 | +import React from 'react'; |
| 44 | +import merge from 'lodash/object/merge'; |
| 45 | +import { renderToString, renderToStaticMarkup } from 'react-dom/server'; |
| 46 | +import { match, RoutingContext } from 'react-router'; |
| 47 | +import routes from './routes'; |
| 48 | +import createStore from './store/create'; |
| 49 | +import metaState from './constants/config.js'; |
| 50 | +import HTML from './components/HTML'; |
| 51 | +import { Provider } from 'react-redux'; |
| 52 | +import serialize from 'serialize-javascript'; |
| 53 | +import DocumentMeta from 'react-document-meta'; |
| 54 | + |
| 55 | +export default function middleware(config = {}) { |
| 56 | + const meta = merge({}, metaState, config); |
| 57 | + |
| 58 | + // this is middleware for Restify, but can easily be changed for express or similar |
| 59 | + return function serveRoute(req, res, next) { |
| 60 | + match({ routes, location: req.url }, (err, redirectLocation, renderProps) => { |
| 61 | + if (err) { |
| 62 | + return next(err); |
| 63 | + } |
| 64 | + |
| 65 | + if (redirectLocation) { |
| 66 | + res.setHeader('Location', redirectLocation.pathname + redirectLocation.search); |
| 67 | + res.send(302); |
| 68 | + return next(false); |
| 69 | + } |
| 70 | + |
| 71 | + if (!renderProps) { |
| 72 | + return next('route'); |
| 73 | + } |
| 74 | + |
| 75 | + // this is because we don't want to initialize another history store |
| 76 | + // but apparently react-router passes (err, state) instead of (state), which |
| 77 | + // is expected by redux-simple-router |
| 78 | + const { history } = renderProps; |
| 79 | + const { listen: _listen } = history; |
| 80 | + history.listen = callback => { |
| 81 | + return _listen.call(history, (_, nextState) => { |
| 82 | + return callback(nextState.location); |
| 83 | + }); |
| 84 | + }; |
| 85 | + const store = createStore(history, { meta }); |
| 86 | + |
| 87 | + // wait for the async state to resolve |
| 88 | + store.resolve(renderProps.components, renderProps.params).then(() => { |
| 89 | + const page = renderToString( |
| 90 | + <Provider store={store}> |
| 91 | + <RoutingContext {...renderProps} /> |
| 92 | + </Provider> |
| 93 | + ); |
| 94 | + const state = store.getState(); |
| 95 | + const exposed = 'window.__APP_STATE__=' + serialize(state) + ';'; |
| 96 | + const html = renderToStaticMarkup(<HTML meta={DocumentMeta.renderAsHTML()} markup={page} version="0.14.3" state={exposed} />); |
| 97 | + |
| 98 | + res.setHeader('content-type', 'text/html'); |
| 99 | + res.send(200, '<!DOCTYPE html>' + html); |
| 100 | + return next(false); |
| 101 | + }); |
| 102 | + }); |
| 103 | + }; |
| 104 | +} |
| 105 | +``` |
| 106 | + |
| 107 | +```js |
| 108 | +import React, { Component, PropTypes } from 'react'; |
| 109 | +import { connect } from 'react-redux'; |
| 110 | +import DocumentMeta from 'react-document-meta'; |
| 111 | +import { dummy } from './modules/user' ; |
| 112 | +import { fetch } from 'redux-prefetch'; |
| 113 | + |
| 114 | +function prefetch({ dispatch, getState }, params) { |
| 115 | + const timeout = parseInt(params.id || 30, 10); |
| 116 | + if (getState().user.result !== timeout) { |
| 117 | + return dispatch(dummy(timeout)); |
| 118 | + } |
| 119 | +} |
| 120 | + |
| 121 | +// this is the important part |
| 122 | +// it wraps the component with 2 handlers: componentDidMount() and static fetch() |
| 123 | +// static function is performed on the server for state resolution before rendering |
| 124 | +// the data |
| 125 | +// componentDidMount() is obviously only performed on the client. Because this state |
| 126 | +// will be already resolved on load, you need to make sure that necessary checks are performed |
| 127 | +// and async actions are not repeated again |
| 128 | +@fetch(prefetch) |
| 129 | +@connect(state => ({ meta: state.meta, user: state.user })) |
| 130 | +export default class App extends Component { |
| 131 | + static propTypes = { |
| 132 | + children: PropTypes.element, |
| 133 | + meta: PropTypes.object.isRequired, |
| 134 | + user: PropTypes.object.isRequired, |
| 135 | + }; |
| 136 | + |
| 137 | + static contextTypes = { |
| 138 | + store: PropTypes.object.isRequired, |
| 139 | + }; |
| 140 | + |
| 141 | + render() { |
| 142 | + return ( |
| 143 | + <div> |
| 144 | + <DocumentMeta {...this.props.meta.app} /> |
| 145 | + <h1>Hello world: {this.props.user.result}</h1> |
| 146 | + <div>{this.props.children && React.cloneElement(this.props.children, { |
| 147 | + userId: this.props.user.result, |
| 148 | + })}</div> |
| 149 | + </div> |
| 150 | + ); |
| 151 | + } |
| 152 | +} |
| 153 | +``` |
0 commit comments