This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathserver.js
229 lines (202 loc) · 5.84 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import { join } from "path"
import express, { Router } from "express"
import webpack from "webpack"
import webpackDevMiddleware from "webpack-dev-middleware"
import webpackHotMiddleware from "webpack-hot-middleware"
import WebpackErrorNotificationPlugin from "webpack-error-notification"
import opn from "opn"
import debug from "debug"
import collection from "../content-loader/cache.js"
import urlAsHtml from "../static/to-html/url-as-html"
import * as pagesActions from "../redux/modules/pages"
import cleanNodeCache from "../_utils/clean-node-cache"
import joinUri from "../_utils/join-uri"
import redBoxRenderer from "../_utils/redbox-renderer"
const log = debug("statinamic:builder:server")
let firstRun = true
export default (options = {}) => {
options = {
noDevEntriesTest: /^tests/,
...options,
}
const { config } = options
const { webpackConfigClient: webpackConfig } = config
if (!config.baseUrl) {
throw new Error(
"You must provide a 'baseUrl' object that contains the following keys:" +
"'href', 'port', 'hostname'. See https://nodejs.org/api/url.html"
)
}
const server = express()
if (config.static && config.server) {
server.use(
config.baseUrl.pathname,
express.static(join(config.cwd, config.destination))
)
}
else {
const devEntries = [
require.resolve("webpack-hot-middleware/client"),
]
const devConfig = {
...webpackConfig,
// debug: true,
// watch: true,
// colors: true,
entry: {
// add devEntries
...Object.keys(webpackConfig.entry)
.reduce(
(acc, key) => {
// some entries do not need extra stuff
acc[key] = key.match(options.noDevEntriesTest) !== null
? webpackConfig.entry[key]
: [
...devEntries,
...Array.isArray(webpackConfig.entry[key])
? webpackConfig.entry[key]
: [ webpackConfig.entry[key] ],
]
return acc
},
{}
),
},
plugins: [
...(webpackConfig.plugins || []),
...(options.plugins || []),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new WebpackErrorNotificationPlugin(),
],
eslint: {
...webpackConfig.eslint,
emitWarning: true,
},
}
// webpack requirements
const webpackCompiler = webpack(devConfig)
server.use(webpackDevMiddleware(webpackCompiler, {
publicPath: webpackConfig.output.publicPath,
noInfo: !config.verbose,
...devConfig.devServer,
}))
// HMR
server.use(webpackHotMiddleware(webpackCompiler))
let entries = []
webpackCompiler.plugin("done", function(stats) {
// reset entries
entries = []
const namedChunks = stats.compilation.namedChunks
Object.keys(namedChunks).forEach((chunkName) => {
entries = [
...entries,
...namedChunks[chunkName].files.filter(
(file) => !file.endsWith(".hot-update.js")
),
]
})
})
// user static assets
if (config.assets) {
server.use(
config.baseUrl.pathname + config.assets.route,
express.static(config.assets.path)
)
}
// routing for the part we want (starting to the baseUrl pathname)
const router = Router()
server.use(config.baseUrl.pathname, router)
// webpack static ressources
router.get("*", express.static(webpackConfig.output.path))
// prerender pages when possible
const memoryFs = webpackCompiler.outputFileSystem
router.get("*", (req, res, next) => {
let item = getItemOrContinue(
collection,
config.baseUrl,
req,
res
)
// try 404.html if there is any
if (!item) {
req.url = "/404.html"
item = getItemOrContinue(
collection,
config.baseUrl,
req,
res
)
}
if (!item) {
next()
return
}
const filepath = join(config.cwd, config.destination, item.__dataUrl)
const fileContent = memoryFs.readFileSync(filepath)
const json = JSON.parse(fileContent.toString())
options.store.dispatch({
type: pagesActions.SET,
page: item.__url,
response: {
json,
},
})
if (!firstRun) {
cleanNodeCache(config.cwd)
}
firstRun = false
urlAsHtml(item.__url, {
exports: options.exports,
store: options.store,
collection,
baseUrl: config.baseUrl,
assetsFiles: {
js: entries,
css: !config.dev,
},
})
.then(
(html) => {
res.setHeader("Content-Type", "text/html")
res.end(html)
}
)
.catch((err) => {
log(err)
res.setHeader("Content-Type", "text/html")
res.end(redBoxRenderer(err))
})
})
}
// THAT'S IT
const { devHost, devPort } = config
server.listen(devPort, devHost, (err) => {
if (err) {
log(err)
return
}
const href = `http://${ devHost }:${ devPort }${ config.baseUrl.pathname }`
log(`Dev server started on ${ href }`)
if (config.open) {
opn(href.replace(devHost, "localhost"))
}
})
}
export function getItemOrContinue(collection, baseUrl, req, res) {
const __url = req.url
.replace(/index\.html$/, "")
const item = collection.find((item) => item.__url === __url)
if (!item) {
log("%s not found", __url)
const folderUrl = __url + "/"
if (collection.find((item) => item.__url === folderUrl)) {
const newUrl = req.url + "/"
log("Redirecting to %s", newUrl)
res.redirect(joinUri(baseUrl.pathname, newUrl))
}
return false
}
return item
}