|
@@ -1,6 +1,10 @@
|
|
|
-var express = require('express')
|
|
|
-var path = require('path')
|
|
|
-var compression = require('compression')
|
|
|
+import express from 'express'
|
|
|
+import path from 'path'
|
|
|
+import compression from 'compression'
|
|
|
+import React from 'react'
|
|
|
+import { renderToString } from 'react-dom/server'
|
|
|
+import { match, RouterContext } from 'react-router'
|
|
|
+import routes from './modules/routes'
|
|
|
|
|
|
var app = express()
|
|
|
|
|
@@ -10,10 +14,34 @@ app.use(compression())
|
|
|
app.use(express.static(path.join(__dirname, 'public')))
|
|
|
|
|
|
// send all requests to index.html so browserHistory works
|
|
|
-app.get('*', function (req, res) {
|
|
|
- res.sendFile(path.join(__dirname, 'public', 'index.html'))
|
|
|
+app.get('*', (req, res) => {
|
|
|
+ match({ routes, location: req.url }, (err, redirect, props) => {
|
|
|
+ if (err) {
|
|
|
+ res.status(500).send(err.message)
|
|
|
+ } else if (redirect) {
|
|
|
+ res.redirect(redirect.pathname + redirect.search)
|
|
|
+ } else if (props) {
|
|
|
+ // hey we made it!
|
|
|
+ const appHtml = renderToString(<RouterContext {...props}/>)
|
|
|
+ res.send(renderPage(appHtml))
|
|
|
+ } else {
|
|
|
+ res.status(404).send('Not Found')
|
|
|
+ }
|
|
|
+ })
|
|
|
})
|
|
|
|
|
|
+function renderPage(appHtml) {
|
|
|
+ return `
|
|
|
+ <!doctype html public="storage">
|
|
|
+ <html>
|
|
|
+ <meta charset=utf-8/>
|
|
|
+ <title>My First React Router App</title>
|
|
|
+ <link rel=stylesheet href=/index.css>
|
|
|
+ <div id=app>${appHtml}</div>
|
|
|
+ <script src="/bundle.js"></script>
|
|
|
+ `
|
|
|
+}
|
|
|
+
|
|
|
var PORT = process.env.PORT || 8080
|
|
|
app.listen(PORT, function() {
|
|
|
console.log('Production Express server running at localhost:' + PORT)
|