blob: 11272f8ba26c351a5ae1a700915db509a459b23b (
plain) (
blame)
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
|
import * as ReactDOMServer from 'react-dom/server';
import cookie from 'cookie';
// import our main App component
import App from '../../src/App';
import { getLinks } from '../sape';
import { StaticRouter } from 'react-router-dom/server';
const path = require('path');
const fs = require('fs');
const serverRenderer = async (req, res, next) => {
// point to the html file created by CRA's build tool
const filePath = path.resolve(__dirname, '..', '..', 'dist', 'index.html');
// links
const cookies = cookie.parse(req.headers.cookie || '');
const links = await getLinks(req.originalUrl, cookies['sape_cookie']);
fs.readFile(filePath, 'utf8', (err, htmlData) => {
if (err) {
console.error('err', err);
return res.status(404).end();
}
const routerContext = {};
const props = {
footer: links.join(' ')
};
// render the app as a string
const html = ReactDOMServer.renderToString(
<StaticRouter location={req.baseUrl} context={routerContext}>
<App {...props} />
</StaticRouter>
);
// inject the rendered app into our html and send it
return res.send(
htmlData.replace(
'<div id="app"></div>',
`<script>window.__PROPS__="${Buffer.from(JSON.stringify(props)).toString('base64')}";</script><div id="app">${html}</div>`
)
);
});
};
export default serverRenderer;
|