2018-02-22 19:48:46 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { renderToString } from 'react-dom/server';
|
|
|
|
import { createStore, applyMiddleware } from 'redux';
|
|
|
|
import { Provider } from 'react-redux';
|
2018-02-23 00:43:26 +01:00
|
|
|
import { StaticRouter } from 'react-router-dom';
|
2018-02-22 19:48:46 +01:00
|
|
|
import renderFullPage from './renderFullPage';
|
|
|
|
import createSagaMiddleware from 'redux-saga';
|
2018-02-23 00:43:26 +01:00
|
|
|
import { call } from 'redux-saga/effects';
|
2018-03-31 09:20:27 +02:00
|
|
|
import { Reducers, GAListener, App, Sagas, Actions } from 'spee.ch-components';
|
2018-03-31 22:46:42 +02:00
|
|
|
/*
|
|
|
|
^ note: to do this right, maybe
|
|
|
|
these should be passed in from the implementation (www.spee.ch) itself,
|
|
|
|
so that there are no conflicts between the SSR here and
|
|
|
|
the bundle sent to the server?
|
|
|
|
there might also be issues if this package uses a different version of spee.ch-components than www.spee.ch does?
|
|
|
|
*/
|
2018-02-23 03:05:00 +01:00
|
|
|
import Helmet from 'react-helmet';
|
|
|
|
|
2018-03-31 20:59:37 +02:00
|
|
|
// configure the reducers by passing initial state configs
|
|
|
|
const siteConfig = require('siteConfig.js');
|
2018-04-01 03:27:24 +02:00
|
|
|
const MyReducers = Reducers(siteConfig);
|
|
|
|
const MyApp = App(siteConfig);
|
|
|
|
const MyGAListener = GAListener(siteConfig);
|
2018-03-31 20:59:37 +02:00
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
const returnSagaWithParams = (saga, params) => {
|
|
|
|
return function * () {
|
|
|
|
yield call(saga, params);
|
|
|
|
};
|
|
|
|
};
|
2018-02-22 19:48:46 +01:00
|
|
|
|
|
|
|
module.exports = (req, res) => {
|
|
|
|
let context = {};
|
|
|
|
|
|
|
|
// create and apply middleware
|
|
|
|
const sagaMiddleware = createSagaMiddleware();
|
|
|
|
const middleware = applyMiddleware(sagaMiddleware);
|
|
|
|
|
|
|
|
// create a new Redux store instance
|
2018-04-01 03:27:24 +02:00
|
|
|
const store = createStore(MyReducers, middleware);
|
2018-02-22 19:48:46 +01:00
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
// create saga
|
2018-03-31 09:20:27 +02:00
|
|
|
const action = Actions.onHandleShowPageUri(req.params);
|
|
|
|
const saga = returnSagaWithParams(Sagas.handleShowPageUri, action);
|
2018-02-22 19:48:46 +01:00
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
// run the saga middleware
|
|
|
|
sagaMiddleware
|
|
|
|
.run(saga)
|
|
|
|
.done
|
|
|
|
.then(() => {
|
|
|
|
// render component to a string
|
|
|
|
const html = renderToString(
|
|
|
|
<Provider store={store}>
|
|
|
|
<StaticRouter location={req.url} context={context}>
|
2018-04-01 03:27:24 +02:00
|
|
|
<MyGAListener>
|
|
|
|
<MyApp />
|
|
|
|
</MyGAListener>
|
2018-02-23 00:43:26 +01:00
|
|
|
</StaticRouter>
|
|
|
|
</Provider>
|
|
|
|
);
|
2018-02-22 19:48:46 +01:00
|
|
|
|
2018-02-23 03:05:00 +01:00
|
|
|
// get head tags from helmet
|
|
|
|
const helmet = Helmet.renderStatic();
|
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
// check for a redirect
|
|
|
|
if (context.url) {
|
|
|
|
return res.redirect(301, context.url);
|
|
|
|
}
|
2018-02-22 19:48:46 +01:00
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
// get the initial state from our Redux store
|
|
|
|
const preloadedState = store.getState();
|
2018-02-22 19:48:46 +01:00
|
|
|
|
2018-02-23 00:43:26 +01:00
|
|
|
// send the rendered page back to the client
|
2018-02-23 03:05:00 +01:00
|
|
|
res.send(renderFullPage(helmet, html, preloadedState));
|
2018-02-23 00:43:26 +01:00
|
|
|
});
|
2018-03-31 20:59:37 +02:00
|
|
|
|
|
|
|
console.log('hello from spee.ch handleShowRender.jsx');
|
2018-02-22 19:48:46 +01:00
|
|
|
};
|