-
-
Notifications
You must be signed in to change notification settings - Fork 380
/
ChunkExtractor.js
452 lines (394 loc) · 11.3 KB
/
ChunkExtractor.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/* eslint-disable react/no-danger */
import path from 'path'
import fs from 'fs'
import uniq from 'lodash/uniq'
import uniqBy from 'lodash/uniqBy'
import flatMap from 'lodash/flatMap'
import React from 'react'
import { invariant, getRequiredChunkKey } from './sharedInternals'
import ChunkExtractorManager from './ChunkExtractorManager'
import { smartRequire, joinURLPath } from './util'
const EXTENSION_SCRIPT_TYPES = {
'.js': 'script',
'.css': 'style',
}
function extensionToScriptType(extension) {
return EXTENSION_SCRIPT_TYPES[extension] || null
}
function getAssets(chunks, getAsset) {
return uniqBy(
flatMap(chunks, chunk => getAsset(chunk)),
'url',
)
}
function handleExtraProps(asset, extraProps) {
return typeof extraProps === 'function' ? extraProps(asset) : extraProps
}
function extraPropsToString(asset, extraProps) {
return Object.entries(handleExtraProps(asset, extraProps)).reduce(
(acc, [key, value]) => `${acc} ${key}="${value}"`,
'',
)
}
function getSriHtmlAttributes(asset) {
if (!asset.integrity) {
return ''
}
return ` integrity="${asset.integrity}"`
}
function assetToScriptTag(asset, extraProps) {
return `<script async data-chunk="${asset.chunk}" src="${
asset.url
}"${getSriHtmlAttributes(asset)}${extraPropsToString(
asset,
extraProps,
)}></script>`
}
function assetToScriptElement(asset, extraProps) {
return (
<script
key={asset.url}
async
data-chunk={asset.chunk}
src={asset.url}
{...handleExtraProps(asset, extraProps)}
/>
)
}
function assetToStyleString(asset, { inputFileSystem }) {
return new Promise((resolve, reject) => {
inputFileSystem.readFile(asset.path, 'utf8', (err, data) => {
if (err) {
reject(err)
return
}
resolve(data)
})
})
}
function assetToStyleTag(asset, extraProps) {
return `<link data-chunk="${asset.chunk}" rel="stylesheet" href="${
asset.url
}"${getSriHtmlAttributes(asset)}${extraPropsToString(asset, extraProps)}>`
}
function assetToStyleTagInline(asset, extraProps, { inputFileSystem }) {
return new Promise((resolve, reject) => {
inputFileSystem.readFile(asset.path, 'utf8', (err, data) => {
if (err) {
reject(err)
return
}
resolve(
`<style type="text/css" data-chunk="${asset.chunk}"${extraPropsToString(
asset,
extraProps,
)}>
${data}
</style>`,
)
})
})
}
function assetToStyleElement(asset, extraProps) {
return (
<link
key={asset.url}
data-chunk={asset.chunk}
rel="stylesheet"
href={asset.url}
{...handleExtraProps(asset, extraProps)}
/>
)
}
function assetToStyleElementInline(asset, extraProps, { inputFileSystem }) {
return new Promise((resolve, reject) => {
inputFileSystem.readFile(asset.path, 'utf8', (err, data) => {
if (err) {
reject(err)
return
}
resolve(
<style
key={asset.url}
data-chunk={asset.chunk}
dangerouslySetInnerHTML={{ __html: data }}
{...handleExtraProps(asset, extraProps)}
/>,
)
})
})
}
const LINK_ASSET_HINTS = {
mainAsset: 'data-chunk',
childAsset: 'data-parent-chunk',
}
function assetToLinkTag(asset, extraProps) {
const hint = LINK_ASSET_HINTS[asset.type]
return `<link ${hint}="${asset.chunk}" rel="${asset.linkType}" as="${
asset.scriptType
}" href="${asset.url}"${getSriHtmlAttributes(asset)}${extraPropsToString(
asset,
extraProps,
)}>`
}
function assetToLinkElement(asset, extraProps) {
const hint = LINK_ASSET_HINTS[asset.type]
const props = {
key: asset.url,
[hint]: asset.chunk,
rel: asset.linkType,
as: asset.scriptType,
href: asset.url,
...handleExtraProps(asset, extraProps),
}
return <link {...props} />
}
function joinTags(tags) {
return tags.join('\n')
}
const HOT_UPDATE_REGEXP = /\.hot-update\.js$/
function isValidChunkAsset(chunkAsset) {
return chunkAsset.scriptType && !HOT_UPDATE_REGEXP.test(chunkAsset.filename)
}
class ChunkExtractor {
constructor({
statsFile,
stats,
entrypoints = ['main'],
namespace = '',
outputPath,
publicPath,
inputFileSystem = fs,
} = {}) {
this.namespace = namespace
this.stats = stats || smartRequire(statsFile)
this.publicPath = publicPath || this.stats.publicPath
this.outputPath = outputPath || this.stats.outputPath
this.statsFile = statsFile
this.entrypoints = Array.isArray(entrypoints) ? entrypoints : [entrypoints]
this.chunks = []
this.inputFileSystem = inputFileSystem
}
resolvePublicUrl(filename) {
return joinURLPath(this.publicPath, filename)
}
getChunkGroup(chunk) {
const chunkGroup = this.stats.namedChunkGroups[chunk]
invariant(chunkGroup, `cannot find ${chunk} in stats`)
return chunkGroup
}
createChunkAsset({ filename, chunk, type, linkType }) {
return {
filename,
scriptType: extensionToScriptType(
path
.extname(filename)
.split('?')[0]
.toLowerCase(),
),
chunk,
url: this.resolvePublicUrl(filename),
path: path.join(this.outputPath, filename),
type,
linkType,
}
}
getChunkAssets(chunks) {
const one = chunk => {
const chunkGroup = this.getChunkGroup(chunk)
return chunkGroup.assets
.map(filename =>
this.createChunkAsset({
filename,
chunk,
type: 'mainAsset',
linkType: 'preload',
}),
)
.filter(isValidChunkAsset)
}
if (Array.isArray(chunks)) {
return getAssets(chunks, one)
}
return one(chunks)
}
getChunkChildAssets(chunks, type) {
const one = chunk => {
const chunkGroup = this.getChunkGroup(chunk)
const assets = chunkGroup.childAssets[type] || []
return assets
.map(filename =>
this.createChunkAsset({
filename,
chunk,
type: 'childAsset',
linkType: type,
}),
)
.filter(isValidChunkAsset)
}
if (Array.isArray(chunks)) {
return getAssets(chunks, one)
}
return one(chunks)
}
getChunkDependencies(chunks) {
const one = chunk => {
const chunkGroup = this.getChunkGroup(chunk)
return chunkGroup.chunks
}
if (Array.isArray(chunks)) {
return uniq(flatMap(chunks, one))
}
return one(chunks)
}
getRequiredChunksScriptContent() {
return JSON.stringify(this.getChunkDependencies(this.chunks))
}
getRequiredChunksNamesScriptContent() {
return JSON.stringify({
namedChunks: this.chunks,
})
}
getRequiredChunksScriptTag(extraProps) {
const id = getRequiredChunkKey(this.namespace)
const props = `type="application/json"${extraPropsToString(
null,
extraProps,
)}`
return [
`<script id="${id}" ${props}>${this.getRequiredChunksScriptContent()}</script>`,
`<script id="${id}_ext" ${props}>${this.getRequiredChunksNamesScriptContent()}</script>`,
].join('')
}
getRequiredChunksScriptElements(extraProps) {
const id = getRequiredChunkKey(this.namespace)
const props = {
type: 'application/json',
...handleExtraProps(null, extraProps),
}
return [
<script
id={id}
dangerouslySetInnerHTML={{
__html: this.getRequiredChunksScriptContent(),
}}
{...props}
/>,
<script
id={`${id}_ext`}
dangerouslySetInnerHTML={{
__html: this.getRequiredChunksNamesScriptContent(),
}}
{...props}
/>,
]
}
// Public methods
// -----------------
// Collect
addChunk(chunk) {
if (this.chunks.indexOf(chunk) !== -1) return
this.chunks.push(chunk)
}
collectChunks(app) {
return <ChunkExtractorManager extractor={this}>{app}</ChunkExtractorManager>
}
// Utilities
requireEntrypoint(entrypoint) {
entrypoint = entrypoint || this.entrypoints[0]
const assets = this.getChunkAssets(entrypoint)
const mainAsset = assets.find(asset => asset.scriptType === 'script')
invariant(mainAsset, 'asset not found')
this.stats.assets
.filter(({ name }) => {
const type = extensionToScriptType(
path
.extname(name)
.split('?')[0]
.toLowerCase(),
)
return type === 'script'
})
.forEach(({ name }) => {
smartRequire(path.join(this.outputPath, name.split('?')[0]))
})
return smartRequire(mainAsset.path)
}
// Main assets
getMainAssets(scriptType) {
const chunks = [...this.entrypoints, ...this.chunks]
const assets = this.getChunkAssets(chunks)
if (scriptType) {
return assets.filter(asset => asset.scriptType === scriptType)
}
return assets
}
getScriptTags(extraProps = {}) {
const requiredScriptTag = this.getRequiredChunksScriptTag(extraProps)
const mainAssets = this.getMainAssets('script')
const assetsScriptTags = mainAssets.map(asset =>
assetToScriptTag(asset, extraProps),
)
return joinTags([requiredScriptTag, ...assetsScriptTags])
}
getScriptElements(extraProps = {}) {
const requiredScriptElements = this.getRequiredChunksScriptElements(
extraProps,
)
const mainAssets = this.getMainAssets('script')
const assetsScriptElements = mainAssets.map(asset =>
assetToScriptElement(asset, extraProps),
)
return [...requiredScriptElements, ...assetsScriptElements]
}
getCssString() {
const mainAssets = this.getMainAssets('style')
const promises = mainAssets.map(asset =>
assetToStyleString(asset, this).then(data => data),
)
return Promise.all(promises).then(results => joinTags(results))
}
getStyleTags(extraProps = {}) {
const mainAssets = this.getMainAssets('style')
return joinTags(mainAssets.map(asset => assetToStyleTag(asset, extraProps)))
}
getInlineStyleTags(extraProps = {}) {
const mainAssets = this.getMainAssets('style')
const promises = mainAssets.map(asset =>
assetToStyleTagInline(asset, extraProps, this).then(data => data),
)
return Promise.all(promises).then(results => joinTags(results))
}
getStyleElements(extraProps = {}) {
const mainAssets = this.getMainAssets('style')
return mainAssets.map(asset => assetToStyleElement(asset, extraProps))
}
getInlineStyleElements(extraProps = {}) {
const mainAssets = this.getMainAssets('style')
const promises = mainAssets.map(asset =>
assetToStyleElementInline(asset, extraProps, this).then(data => data),
)
return Promise.all(promises).then(results => results)
}
// Pre assets
getPreAssets() {
const mainAssets = this.getMainAssets()
const chunks = [...this.entrypoints, ...this.chunks]
const preloadAssets = this.getChunkChildAssets(chunks, 'preload')
const prefetchAssets = this.getChunkChildAssets(chunks, 'prefetch')
return [...mainAssets, ...preloadAssets, ...prefetchAssets].sort(a =>
a.scriptType === 'style' ? -1 : 0,
)
}
getLinkTags(extraProps = {}) {
const assets = this.getPreAssets()
const linkTags = assets.map(asset => assetToLinkTag(asset, extraProps))
return joinTags(linkTags)
}
getLinkElements(extraProps = {}) {
const assets = this.getPreAssets()
return assets.map(asset => assetToLinkElement(asset, extraProps))
}
}
export default ChunkExtractor