-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.js
260 lines (226 loc) · 7.44 KB
/
index.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// @flow
import get from 'lodash/get'
import pick from 'lodash/pick'
import defaults from 'lodash/defaults'
import path from 'path'
import mime from 'mime/lite'
import invariant from 'assert'
import { Router } from 'express'
import { getPundle, getWatcher } from 'pundle-core'
import { getChunk, getUniqueHash, type Job, type ImportResolved } from 'pundle-api'
import { getOutputFormats, getChunksAffectedByImports } from './helpers'
type Payload = {
configFilePath?: string,
configLoadFile?: boolean,
directory?: string,
// ^ Either directory to initialize pundle from or an instance
config?: Object,
watchConfig?: Object,
hmr?: boolean, // enabled by default
lazy?: boolean,
// Used for chunk/image loading and HMR
publicPath: string,
changedCallback?: (changed: Array<ImportResolved>) => void,
generatedCallback?: (url: string, contents: string | Buffer) => void,
}
const PUNDLE_OPTIONS = ['configFilePath', 'configLoadFile', 'directory']
async function getPundleDevMiddleware(options: Payload) {
invariant(typeof options.publicPath === 'string', 'options.publicPath must be a string')
defaults(options, { hmr: true })
const router = new Router()
let { publicPath = '/' } = options
if (!publicPath.endsWith('/')) {
publicPath = `${publicPath}/`
}
let configEntry = get(options, 'config.entry', []).slice()
if (options.hmr) {
configEntry = [require.resolve('./client/hmr-client')].concat(configEntry)
}
const pundle = await getPundle({
...pick(options, PUNDLE_OPTIONS),
config: {
...get(options, 'config', {}),
entry: configEntry,
output: {
formats: await getOutputFormats(pick(options, PUNDLE_OPTIONS), publicPath),
rootDirectory: '/tmp',
},
},
})
let firstTime = true
let generated = null
const filesChanged: Set<ImportResolved> = new Set()
const filesChangedHMR: Set<ImportResolved> = new Set()
const hmrConnectedClients = new Set()
const urlToContents = {}
const urlToHMRContents = {}
async function regenerateUrlCache({ chunks, job }) {
const { outputs } = await pundle.generate(job, chunks)
function setToUrlContents(filePath: string, contents: string | Buffer) {
urlToContents[filePath] = contents
if (options.generatedCallback) {
options.generatedCallback(filePath, contents)
}
}
outputs.forEach(({ filePath, contents, sourceMap }) => {
if (filePath) {
setToUrlContents(filePath, contents)
if (sourceMap && sourceMap.filePath) {
setToUrlContents(sourceMap.filePath, sourceMap.contents)
}
}
})
}
async function generateForHMR({ job }: { job: Job }) {
if (!(filesChangedHMR.size && options.hmr && hmrConnectedClients.size)) {
return
}
function setToHMRUrlContents(filePath: string, contents: string | Buffer) {
urlToHMRContents[filePath] = contents
if (options.generatedCallback) {
options.generatedCallback(filePath, contents)
}
}
const transformedJob = await pundle.transformJob(job)
const changed = Array.from(filesChangedHMR)
filesChangedHMR.clear()
const hmrId = Date.now()
const hmrChunksByFormat = {}
changed.forEach(fileImport => {
if (fileImport.format !== 'js') return
if (!hmrChunksByFormat[fileImport.format]) {
hmrChunksByFormat[fileImport.format] = getChunk(fileImport.format, `hmr-${hmrId}`)
}
hmrChunksByFormat[fileImport.format].imports.push(fileImport)
})
const hmrChunks: $FlowFixMe = Object.values(hmrChunksByFormat)
const { outputs } = await pundle.generate(transformedJob, hmrChunks)
outputs.forEach(({ filePath, contents, sourceMap }) => {
if (filePath) {
setToHMRUrlContents(filePath, contents)
if (sourceMap && sourceMap.filePath) {
setToHMRUrlContents(sourceMap.filePath, sourceMap.contents)
}
}
})
const clientInfo = {
type: 'update',
paths: outputs.map(item => ({ url: item.filePath, format: item.format })),
changedFiles: changed,
changedModules: changed.map(item => getUniqueHash(item)),
}
hmrConnectedClients.forEach(client => {
client.write(`${JSON.stringify(clientInfo)}`)
})
console.log(
` [HMR] Writing ${outputs.length} chunk${outputs.length > 1 ? 's' : ''} to ${hmrConnectedClients.size} clients`,
)
// Remove HMR contents from memory after 60 seconds
setTimeout(() => {
outputs.forEach(({ filePath }) => {
if (filePath) {
urlToHMRContents[filePath] = null
}
})
}, 60 * 1000)
}
async function generateJobAsync({ job, changed }) {
const transformedJob = await pundle.transformJob(job)
const chunks = Array.from(transformedJob.chunks.values())
if (firstTime) {
firstTime = false
await regenerateUrlCache({ job: transformedJob, chunks })
return
}
const chunksToRegenerate = getChunksAffectedByImports(job, chunks, changed)
if (chunksToRegenerate.length) {
await regenerateUrlCache({ job: transformedJob, chunks: chunksToRegenerate })
}
}
function generateJob({ job }) {
if (!generated) {
generated = generateJobAsync({ job, changed: Array.from(filesChanged.values()) })
filesChanged.clear()
}
return generated
}
const { queue, job, initialCompile } = await getWatcher({
...(options.watchConfig || {}),
pundle,
async generate({ changed }) {
changed.forEach(fileImport => {
filesChanged.add(fileImport)
})
generated = null
await generateForHMR({ job })
if (options.changedCallback) {
options.changedCallback(changed)
}
},
tick({ newFile }) {
if (options.hmr && !firstTime) {
filesChangedHMR.add({ format: newFile.format, filePath: newFile.filePath })
}
},
})
try {
if (!options.lazy) {
await initialCompile()
}
} catch (_) {
// Pre-compile if you can, otherwise move on
// If there's an error, it'll be caught/shown to user on request
}
function asyncRoute(callback: (req: Object, res: Object, next: Function) => Promise<void>) {
return function(req, res, next) {
callback(req, res, next).catch(error => {
pundle.report(error)
next(error)
})
}
}
router.get(
`${publicPath}*`,
asyncRoute(async function(req, res, next) {
await initialCompile()
if (req.url.endsWith('.pundle.hmr')) {
res.write(JSON.stringify({ type: 'status', enabled: !!options.hmr }))
if (!options.hmr) {
res.end()
return
}
hmrConnectedClients.add(res)
// 24 hours
req.setTimeout(1000 * 60 * 60 * 24)
res.on('close', function() {
hmrConnectedClients.delete(res)
})
return
}
let { url } = req
if (url.endsWith('/')) {
url = `${url}index.html`
}
function respondWith(output) {
const mimeType = mime.getType(path.extname(url)) || 'application/octet-stream'
res.set('content-type', mimeType)
res.end(output)
}
const hmrContents = urlToHMRContents[url]
if (hmrContents) {
respondWith(hmrContents)
return
}
await queue.waitTillIdle()
await generateJob({ job })
const contents = urlToContents[url]
if (contents) {
respondWith(contents)
return
}
next()
}),
)
return router
}
module.exports = { getPundleDevMiddleware, getChunksAffectedByImports }