Skip to content

Commit c51205e

Browse files
authored
Merge pull request #46 from combine/feature/optional-ssr
Feature: Optional SSR
2 parents 9bd943b + d7dec7d commit c51205e

File tree

5 files changed

+30
-22
lines changed

5 files changed

+30
-22
lines changed

common/js/pages/Todos/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import Loadable from 'react-loadable';
33
import { Loading } from 'components/common';
44
import { fetchTodos } from 'actions/todos';
55

6+
// NOTE: To turn off dynamic imports, import this container normally using:
7+
// import TodosContainer from 'containers/Todos';
68
const TodosContainer = Loadable({
79
loader: () => import('../../containers/Todos'),
810
loading: Loading

config/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
const { mapValues, keyBy } = require('lodash');
22

33
module.exports = {
4+
// Enable or disable server-side rendering
5+
enableSSR: true,
6+
47
// Enable or disable dynamic imports (code splitting)
58
enableDynamicImports: false,
69

nodemon.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"watch": [
3+
"config/**/*.js",
34
"server/**/*.js",
45
"server/**/*.json",
5-
"server/templates/**/*.html",
6-
"common/js/**/*.js"
6+
"server/templates/**/*.html"
77
]
88
}

server/renderer/handler.js

+21-5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ export default function handleRender(req, res) {
3232
// Grab the initial state from our Redux store
3333
const finalState = store.getState();
3434

35+
// If SSR is disabled, just render the skeleton HTML.
36+
if (!config.enableSSR) {
37+
const markup = render(null, finalState, []);
38+
return res.send(markup);
39+
}
40+
3541
// See react-router's Server Rendering section:
3642
// https://reacttraining.com/react-router/web/guides/server-rendering
3743
const matchRoutes = routes => {
@@ -88,20 +94,30 @@ export default function handleRender(req, res) {
8894

8995
let context = {}, modules = [];
9096

91-
const component = (
92-
<Loadable.Capture report={moduleName => modules.push(moduleName)}>
97+
const getComponent = () => {
98+
let component = (
9399
<Provider store={store}>
94100
<StaticRouter context={context} location={req.baseUrl}>
95101
<App />
96102
</StaticRouter>
97103
</Provider>
98-
</Loadable.Capture>
99-
);
104+
);
105+
106+
if (config.enableDynamicImports) {
107+
return (
108+
<Loadable.Capture report={moduleName => modules.push(moduleName)}>
109+
{component}
110+
</Loadable.Capture>
111+
);
112+
}
113+
114+
return component;
115+
};
100116

101117
// Execute the render only after all promises have been resolved.
102118
Promise.all(fetchData).then(() => {
103119
const state = store.getState();
104-
const html = renderToString(component);
120+
const html = renderToString(getComponent());
105121
const bundles = stats && getBundles(stats, modules) || [];
106122
const markup = render(html, state, bundles);
107123

webpack/development.hot.js

+2-15
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const entry = [
1818

1919
// Additional plugins
2020
let plugins = [
21+
...baseConfig.plugins,
2122
new webpack.HotModuleReplacementPlugin(),
2223
new webpack.NoEmitOnErrorsPlugin(),
2324
new webpack.NamedModulesPlugin()
@@ -31,9 +32,6 @@ if (!config.enableDynamicImports) {
3132
}));
3233
}
3334

34-
// Additional loaders
35-
const loaders = [];
36-
3735
const webpackConfig = {
3836
...baseConfig,
3937
devtool: 'eval',
@@ -44,18 +42,7 @@ const webpackConfig = {
4442
...baseConfig.entry.app
4543
]
4644
},
47-
plugins: [
48-
// don't use the first plugin (isomorphic plugin)
49-
...baseConfig.plugins,
50-
...plugins
51-
],
52-
module: {
53-
...baseConfig.module,
54-
rules: [
55-
...baseConfig.module.rules,
56-
...loaders
57-
]
58-
}
45+
plugins
5946
};
6047

6148
console.info('Firing up Webpack dev server...\n');

0 commit comments

Comments
 (0)