Skip to content

Commit

Permalink
Modify register API to accept renderer functions (#581)
Browse files Browse the repository at this point in the history
Made the following changes to the node package:

* ComponentRegistry.js: Modified register to detect generator functions
  with three arguments. Set the isRenderer key to true for these
  functions.
* clientStartup.js: Added logic to delegate to renderer functions.
* createReactElement.js: Now accepts an object instead of a component
  name.
* serverRenderReactComponent.js: Throws an error if attempting to
  render a renderer function.
* ReactOnRails.js: Change render function to call createReactElement
  with the component object.

Doc changes:

* README.md: Added section about renderer function under the section
  on generator functions. Moved the section on generator functions
  from the 'ReactOnRails View Helpers API' section to the 'Globally
  Exposing Your React Components' section.
* Added a file code-splitting.md that describes how to use renderer
  functions to do code splitting with server rendering.

Tests:

* ComponentRegistry.test.js: Modified existing test cases to expect
  the isRenderer key to be false. Added a few test cases related to
  renderer functions.
* serverRenderReactComponent.test.js: Show that an error gets thrown
  if trying to server render with a renderer function.
* spec/dummy: Added two examples using rendering functions, one of
  which implements code splitting. Added three test to
  integration_spec.rb.

Resolves: #477
  • Loading branch information
jtibbertsma committed Nov 30, 2016
1 parent ae9785b commit 733cb2f
Show file tree
Hide file tree
Showing 24 changed files with 549 additions and 36 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Contributors: please follow the recommendations outlined at [keepachangelog.com]

## [Unreleased]

## [6.3.0]
##### Added
- Modify register API to allow registration of renderers, allowing a user to manually render their app to the DOM [#581](https://github.com/shakacode/react_on_rails/pull/581) by [jtibbertsma](https://github.com/jtibbertsma).

## [6.2.1] - 2016-11-19
- Removed unnecesary passing of context in the HelloWorld Container example and basic generator. [#612](https://github.com/shakacode/react_on_rails/pull/612) by [justin808](https://github.com/justin808)

Expand Down Expand Up @@ -383,7 +387,8 @@ Best done with Object destructing:
##### Fixed
- Fix several generator related issues.

[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.2.1...master
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.3.0...master
[6.3.0]: https://github.com/shakacode/react_on_rails/compare/6.2.1...6.3.0
[6.2.1]: https://github.com/shakacode/react_on_rails/compare/6.2.0...6.2.1
[6.2.0]: https://github.com/shakacode/react_on_rails/compare/6.1.2...6.2.0
[6.1.2]: https://github.com/shakacode/react_on_rails/compare/6.1.1...6.1.2
Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,14 @@ You may want different initialization for your server rendered components. For e

If you do want different code to run, you'd setup a separate webpack compilation file and you'd specify a different, server side entry file. ex. 'serverHelloWorldApp.jsx'. Note, you might be initializing HelloWorld with version specialized for server rendering.

#### Generator Functions
Why would you create a function that returns a React component? For example, you may want the ability to use the passed-in props to initialize a redux store or setup react-router. Or you may want to return different components depending on what's in the props. ReactOnRails will automatically detect a registered generator function.

#### Renderer Functions
A renderer function is a generator function that accepts three arguments: `(props, railsContext, domNodeId) => { ... }`. Instead of returning a React component, a renderer is responsible for calling `ReactDOM.render` to manually render a React component into the dom. Why would you want to call `ReactDOM.render` yourself? One possible use case is [code splitting](docs/additional-reading/code-splitting.md).

Renderer functions are not meant to be used on the server, since there's no DOM on the server. Instead, use a generator function. Attempting to server render with a renderer function will cause an error.

## ReactOnRails View Helpers API
Once the bundled files have been generated in your `app/assets/webpack` folder and you have exposed your components globally, you will want to run your code in your Rails views using the included helper method.

Expand All @@ -327,7 +335,7 @@ react_component(component_name,
html_options: {})
```

+ **component_name:** Can be a React component, created using a ES6 class, or `React.createClass`, or a generator function that returns a React component.
+ **component_name:** Can be a React component, created using a ES6 class, or `React.createClass`, a generator function that returns a React component, or a renderer function that manually renders a React component to the dom (client side only).
+ **options:**
+ **props:** Ruby Hash which contains the properties to pass to the react object, or a JSON string. If you pass a string, we'll escape it for you.
+ **prerender:** enable server-side rendering of component. Set to false when debugging!
Expand Down Expand Up @@ -365,9 +373,6 @@ Note, you don't need to separately initialize your redux store. However, it's re
1. You want to have multiple components that access the same store.
2. You want to place the props to hydrate the client side stores at the very end of your HTML so that the browser can render all earlier HTML first. This is particularly useful if your props will be large.

### Generator Functions
Why would you create a function that returns a React component? For example, you may want the ability to use the passed-in props to initialize a redux store or setup react-router. Or you may want to return different components depending on what's in the props. ReactOnRails will automatically detect a registered generator function.

### server_render_js
`server_render_js(js_expression, options = {})`

Expand Down Expand Up @@ -439,7 +444,7 @@ See [ReactOnRails JavaScript API](docs/api/javascript-api.md).

Rails has built-in protection for Cross-Site Request Forgery (CSRF), see [Rails Documentation](http://guides.rubyonrails.org/security.html#cross-site-request-forgery-csrf). To nicely utilize this feature in JavaScript requests, React on Rails is offerring two helpers that can be used as following for POST, PUT or DELETE requests:

```
```js
import ReactOnRails from 'react-on-rails';

// reads from DOM csrf token generated by Rails in <%= csrf_meta_tags %>
Expand All @@ -456,6 +461,7 @@ If you are using [jquery-ujs](https://github.com/rails/jquery-ujs) for AJAX call

1. [React on Rails docs for react-router](docs/additional-reading/react-router.md)
1. Examples in [spec/dummy/app/views/react_router](spec/dummy/app/views/react_router) and follow to the JavaScript code in the [spec/dummy/client/app/startup/ServerRouterApp.jsx](spec/dummy/client/app/startup/ServerRouterApp.jsx).
1. [Code Splitting docs](docs/additional-reading/code-splitting.md) for information about how to set up code splitting for server rendered routes.

## Deployment
* Version 6.0 puts the necessary precompile steps automatically in the rake precompile step. You can, however, disable this by setting certain values to nil in the [config/initializers/react_on_rails.rb](spec/dummy/config/initializers/react_on_rails.rb).
Expand Down Expand Up @@ -487,6 +493,7 @@ Node.js can be used as the backend for server-side rendering instead of [execJS]
+ [Developing with the Webpack Dev Server](docs/additional-reading/webpack-dev-server.md)
+ [Node Server Rendering](docs/additional-reading/node-server-rendering.md)
+ [Server Rendering Tips](docs/additional-reading/server-rendering-tips.md)
+ [Code Splitting](docs/additional-reading/code-splitting.md)

+ **Development**
+ [React on Rails Basic Installation Tutorial](docs/tutorial.md) ([live demo](https://hello-react-on-rails.herokuapp.com))
Expand Down
155 changes: 155 additions & 0 deletions docs/additional-reading/code-splitting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
# Code Splitting

What is code splitting? From the webpack documentation:

> For big web apps it’s not efficient to put all code into a single file, especially if some blocks of code are only required under some circumstances. Webpack has a feature to split your codebase into “chunks” which are loaded on demand. Some other bundlers call them “layers”, “rollups”, or “fragments”. This feature is called “code splitting”.
## Server Rendering and Code Splitting

Let's say you're requesting a page that needs to fetch a code chunk from the server before it's able to render. If you do all your rendering on the client side, you don't have to do anything special. However, if the page is rendered on the server, you'll find that React will spit out the following error:

> Warning: React attempted to reuse markup in a container but the checksum was invalid. This generally means that you are using server rendering and the markup generated on the server was not what the client was expecting. React injected new markup to compensate which works but you have lost many of the benefits of server rendering. Instead, figure out why the markup being generated is different on the client or server:
> (client) <!-- react-empty: 1 -
> (server) <div data-reactroot="
<!--This comment is here because the comment beginning on line 13 messes up Sublime's markdown parsing-->
Different markup is generated on the client than on the server. Why does this happen? When you register a component or generator function with `ReactOnRails.register`, react on rails will render the component as soon as the page loads. However, react-router renders a comment while waiting for the code chunk to be fetched from the server. This means that react will tear all of the server rendered code out of the DOM, and then rerender it a moment later once the code chunk arrives from the server, defeating most of the purpose of server rendering.

### The solution

To prevent this, you have to wait until the code chunk is fetched before doing the initial render on the client side. To accomplish this, react on rails allows you to register a renderer. This works just like registering a generator function, except that the function you pass takes three arguments: `renderer(props, railsContext, domNodeId)`, and is responsible for calling `ReactDOM.render` to render the component to the DOM. React on rails will automatically detect when a generator function takes three arguments, and will not call `ReactDOM.render`, instead allowing you to control the initial render yourself.

Here's an example of how you might use this in practice:

#### page.html.erb
```erb
<%= react_component("NavigationApp", prerender: true) %>
<%= react_component("RouterApp", prerender: true) %>
<%= redux_store_hydration_data %>
```

#### clientRegistration.js
```js
import ReactOnRails from 'react-on-rails';
import NavigationApp from './NavigationApp';

// Note that we're importing a different RouterApp that in serverRegistration.js
// Renderer functions should not be used on the server, because there is no DOM.
import RouterApp from './RouterAppRenderer';
import applicationStore from '../store/applicationStore';

ReactOnRails.registerStore({applicationStore});
ReactOnRails.register({
NavigationApp,
RouterApp,
});
```

#### serverRegistration.js
```js
import ReactOnRails from 'react-on-rails';
import NavigationApp from './NavigationApp';

// Note that we're importing a different RouterApp that in clientRegistration.js
import RouterApp from './RouterAppServer';
import applicationStore from '../store/applicationStore';

ReactOnRails.registerStore({applicationStore});
ReactOnRails.register({
NavigationApp,
RouterApp,
});
```
Note that you should not register a renderer on the server, since there won't be a domNodeId when we're server rendering. Note that the `RouterApp` imported by `serverRegistration.js` is from a different file. For an example of how to set up an app for server rendering, see the [react router docs](react-router.md).

#### RouterAppRenderer.jsx
```jsx
import ReactOnRails from 'react-on-rails';
import React from 'react';
import ReactDOM from 'react-dom';
import Router from 'react-router/lib/Router';
import match from 'react-router/lib/match';
import browserHistory from 'react-router/lib/browserHistory';
import { Provider } from 'react-redux';

import routes from '../routes/routes';


const RouterAppRenderer = (props, railsContext, domNodeId) => {
const store = ReactOnRails.getStore('applicationStore');
const history = browserHistory;

match({ history, routes }, (error, redirectionLocation, renderProps) => {
if (error) {
throw error;
}

const reactElement = (
<Provider store={store}>
<Router {...renderProps} />
</Provider>
);

ReactDOM.render(reactElement, document.getElementById(domNodeId));
});
};

export default RouterAppRenderer;
```

What's going on in this example is that we're putting the rendering code in the callback passed to `match`. The effect is that the client render doesn't happen until the code chunk gets fetched from the server, preventing the client/server checksum mismatch.

The idea is that match from react-router is async; it fetches the component using the getComponent method that you provide with the route definition, and then passes the props to the callback that are needed to do the complete render. Then we do the first render inside of the callback, so that the first render is the same as the server render.

The server render matches the deferred render because the server bundle is a single file, and so it doesn't need to wait for anything to be fetched.

### Working Example

There's an implemented example of code splitting in the `spec/dummy` folder of this repository.

See:

- [spec/dummy/client/app/startup/clientRegistration.jsx](../../spec/dummy/client/app/startup/clientRegistration.jsx)
- [spec/dummy/client/app/startup/serverRegistration.jsx](../../spec/dummy/client/app/startup/serverRegistration.jsx)
- [spec/dummy/client/app/startup/DeferredRenderAppRenderer.jsx](../../spec/dummy/client/app/startup/DeferredRenderAppRenderer.jsx) <-- Code splitting implemented here
- [spec/dummy/client/app/startup/DeferredRenderAppServer.jsx](../../spec/dummy/client/app/startup/DeferredRenderAppServer.jsx)
- [spec/dummy/client/app/components/DeferredRender.jsx](../../spec/dummy/client/app/components/DeferredRender.jsx)
- [spec/dummy/client/app/components/DeferredRenderAsyncPage.jsx](../../spec/dummy/client/app/components/DeferredRenderAsyncPage.jsx)

### Caveats

If you're going to try to do code splitting with server rendered routes, you'll probably need to use seperate route definitions for client and server to prevent code splitting from happening for the server bundle. The server bundle should be one file containing all the JavaScript code. This will require you to have seperate webpack configurations for client and server.

The reason is we do server rendering with ExecJS, which is not capable of doing anything asynchronous. It would be impossible to asyncronously fetch a code chunk while server rendering. See [this issue](https://github.com/shakacode/react_on_rails/issues/477) for a discussion.

Also, do not attempt to register a renderer on the server. Instead, register either a generator function or a component. If you register a renderer in the server bundle, you'll get an error when react on rails tries to server render the component.

## How does Webpack know where to find my code chunks?

Add the following to the output key of your webpack config:

```js
config = {
output: {
publicPath: '/assets/',
}
};
```

This causes Webpack to prepend the code chunk filename with `/assets/` in the request url. The react on rails sets up the webpack config to put webpack bundles in `app/assets/javascripts/webpack`, and modifies `config/initializers/assets.rb` so that rails detects the bundles. This means that when we prepend the request url with `/assets/`, rails will know what webpack is asking for.

See [rails-assets.md](./rails-assets.md) to learn more about static assets.

If you forget to set the public path, webpack will request the code chunk at `/{filename}`. This will cause the request to be handled by the Rails router, which will send back a 404 response, assuming that you don't have a catch-all route. In your javascript console, you'll get the following error:

> GET http://localhost:3000/1.1-bundle.js
You'll also see the following in your Rails development log:

> Started GET "/1.1-bundle.js" for 127.0.0.1 at 2016-11-29 15:21:55 -0800
>
> ActionController::RoutingError (No route matches [GET] "/1.1-bundle.js")
It's worth mentioning that in Webpack v2, it's possible to register an error handler by calling `catch` on the promise returned by `System.import`, so if you want to do error handling, you should use v2. The [example](#working-example) in `spec/dummy` is currently using Webpack v1.
4 changes: 3 additions & 1 deletion node_package/src/ComponentRegistry.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// key = name used by react_on_rails
// value = { name, component, generatorFunction: boolean }
// value = { name, component, generatorFunction: boolean, isRenderer: boolean }
import generatorFunction from './generatorFunction';

const registeredComponents = new Map();
Expand All @@ -20,11 +20,13 @@ export default {
}

const isGeneratorFunction = generatorFunction(component);
const isRenderer = isGeneratorFunction && component.length === 3;

registeredComponents.set(name, {
name,
component,
generatorFunction: isGeneratorFunction,
isRenderer,
});
});
},
Expand Down
5 changes: 3 additions & 2 deletions node_package/src/ReactOnRails.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ ctx.ReactOnRails = {
* @returns {virtualDomElement} Reference to your component's backing instance
*/
render(name, props, domNodeId) {
const reactElement = createReactElement({ name, props, domNodeId });
const componentObj = ComponentRegistry.get(name);
const reactElement = createReactElement({ componentObj, props, domNodeId });

// eslint-disable-next-line react/no-render-return-value
return ReactDOM.render(reactElement, document.getElementById(domNodeId));
Expand All @@ -157,7 +158,7 @@ ctx.ReactOnRails = {
/**
* Get the component that you registered
* @param name
* @returns {name, component, generatorFunction}
* @returns {name, component, generatorFunction, isRenderer}
*/
getComponent(name) {
return ComponentRegistry.get(name);
Expand Down
28 changes: 26 additions & 2 deletions node_package/src/clientStartup.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,30 @@ function turbolinksVersion5() {
return (typeof Turbolinks.controller !== 'undefined');
}

function delegateToRenderer(componentObj, props, railsContext, domNodeId, trace) {
const { name, component, isRenderer } = componentObj;

if (isRenderer) {
if (trace) {
console.log(`\
DELEGATING TO RENDERER ${name} for dom node with id: ${domNodeId} with props, railsContext:`,
props, railsContext);
}

component(props, railsContext, domNodeId);
return true;
}

return false;
}

/**
* Used for client rendering by ReactOnRails
* Used for client rendering by ReactOnRails. Either calls ReactDOM.render or delegates
* to a renderer registered by the user.
* @param el
*/
function render(el, railsContext) {
const context = findContext();
const name = el.getAttribute('data-component-name');
const domNodeId = el.getAttribute('data-dom-id');
const props = JSON.parse(el.getAttribute('data-props'));
Expand All @@ -76,8 +95,13 @@ function render(el, railsContext) {
try {
const domNode = document.getElementById(domNodeId);
if (domNode) {
const componentObj = context.ReactOnRails.getComponent(name);
if (delegateToRenderer(componentObj, props, railsContext, domNodeId, trace)) {
return;
}

const reactElementOrRouterResult = createReactElement({
name,
componentObj,
props,
domNodeId,
trace,
Expand Down
12 changes: 4 additions & 8 deletions node_package/src/createReactElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@

import React from 'react';

import ReactOnRails from './ReactOnRails';

/**
* Logic to either call the generatorFunction or call React.createElement to get the
* React.Component
* @param options
* @param options.name
* @param options.componentObj
* @param options.props
* @param options.domNodeId
* @param options.trace
* @param options.location
* @returns {Element}
*/
export default function createReactElement({
name,
componentObj,
props,
railsContext,
domNodeId,
trace,
}) {
const { name, component, generatorFunction } = componentObj;

if (trace) {
if (railsContext && railsContext.serverSide) {
console.log(`RENDERED ${name} to dom node with id: ${domNodeId} with railsContext:`,
Expand All @@ -32,10 +32,6 @@ export default function createReactElement({
}
}

const componentObj = ReactOnRails.getComponent(name);

const { component, generatorFunction } = componentObj;

if (generatorFunction) {
return component(props, railsContext);
}
Expand Down
Loading

0 comments on commit 733cb2f

Please sign in to comment.