-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
73 lines (54 loc) · 1.91 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'use strict';
import q from 'q';
import React from 'react';
import path from 'path';
import express from 'express';
import compression from 'compression';
import bodyParser from 'body-parser';
import cookieParser from 'cookie-parser';
import serialize from 'serialize-javascript';
import { navigateAction } from 'fluxible-router';
import { createElementWithContext } from 'fluxible-addons-react';
import app from './app';
import config from './config';
import HtmlComponent from './components/Html';
import { checkSession } from './actions/auth';
const htmlComponent = React.createFactory(HtmlComponent);
const server = express();
server.use(bodyParser.json());
server.use(cookieParser());
server.use(compression());
server.use('/public', express.static(path.join(__dirname, '/build')));
server.use('/assets', express.static(path.join(__dirname, '/assets')));
server.use('/api', require('./api'));
/**
* Isomorphic data fetching
*/
server.use((req, res, next) => {
const context = app.createContext({ req, res, config });
const actionContext = context.getActionContext();
q.all([
actionContext.executeAction(checkSession, null),
actionContext.executeAction(navigateAction, { url: req.url })
])
.then(() => {
const dehydratedState = app.dehydrate(context);
const exposed = `window.App=${serialize(dehydratedState)};`;
const html = React.renderToStaticMarkup(htmlComponent({
clientFile: config.env === 'prod' ? 'main.min.js' : 'main.js',
context: context.getComponentContext(),
state: exposed,
markup: React.renderToString(createElementWithContext(context))
}));
res.type('html');
res.write(`<!DOCTYPE html>${html}`);
res.end();
})
.catch(err => { next(err); });
});
const port = process.env.PORT || 3000;
server.listen(port);
/* eslint-disable no-console */
console.log(`Application listening on port ${port}`);
/* eslint-enable no-console */
export default server;