-
Notifications
You must be signed in to change notification settings - Fork 1
/
lp-loader.ts
309 lines (276 loc) · 8.27 KB
/
lp-loader.ts
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
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author: Whitecolor
*/
import * as path from 'path'
import * as fs from 'fs'
import * as qs from 'querystring'
import { getShortHash } from './hash'
export interface LoaderOptions {
/**
* Name of particular label kind, default is `lp`
* Should use different names for different kinds of content.
* Label name should not contain dots.
*/
name?: string
/**
* Custom promis library to be imported.
*/
promiseLib?: string
disableLoaders?: boolean // TODO: remove this option?
/**
* Target ES format for exporting loading function.
* Default is es6.
*/
exportTarget?: 'es5' | 'es6'
/**
* Default is `exports.default = ...`
* If you seet empty string then export will be `exports = ` for ES5 format
*/
exportName?: string
/**
*
* Match label files names (actually full path), RegExp or function,
* By default index.* files are excluded, you may override it.
*/
include?: RegExp | ((filePath: string) => boolean)
/**
*
* Do not consider folders as labeled dictionary data. By default `false`
*/
excludeFolders?: boolean
/**
*
* Output some debug data
*/
debug?: boolean
}
// https://webpack.js.org/api/stats/#module-objects
type Module = {
id: number | null
name: string
debugId: number
context: string
userRequest: string
reasons: Reason[] // only in webpack4
}
interface Dependency {
module: Module
block:
| {
chunkName?: string
}
| undefined
}
type Reason = {
module: Module
dependency: Dependency
}
interface LoaderSharedData {
result: string
exportStr: string
fullExportStr: string
promiseStr: string
keysFnStr: string
}
interface LoaderContext {
_module: Module
data: LoaderSharedData
cacheable: () => {}
query: LoaderOptions | string
resourcePath: string
rootContext: string
}
const flatten = <T>(flat: T[], found: T[]): T[] => flat.concat(found)
const uniq = <T>(val: T, index: number, arr: T[]): boolean =>
arr.indexOf(val) == index
const isDependencyStatic = (dependency: Dependency): boolean => {
return !dependency.block
}
const isDependencyDynamic = (dependency: Dependency): boolean =>
!!dependency.block
const getChunkNameOfDynamicDependency = (mod: Module) =>
(
mod.reasons.map((r) => r.dependency).filter(isDependencyDynamic)[0] || {
block: { chunkName: '' },
}
).block!.chunkName
const isModuleDynamicDependency = (mod: Module): boolean => {
// Maybe here we should check non-zero count of dynamic relations
// instead of checking zero count of static relations?
return (
mod.reasons.map((r) => r.dependency).filter(isDependencyStatic).length === 0
)
}
const moduleIsChunk = isModuleDynamicDependency
const onlyStaticParents = (r: Reason) => isDependencyStatic(r.dependency)
const findChunkParents = (mod: Module, depsChain: Module[] = []): Module[] => {
const staticParents = mod.reasons
.filter(onlyStaticParents)
.map((r) => r.module)
.filter(uniq)
.filter((_) => !!_)
const staticParentsNotInChain = staticParents.filter(
(m) => depsChain.indexOf(m) < 0
)
if (!staticParents.length) {
return [mod]
}
const chunks = staticParentsNotInChain.filter(moduleIsChunk)
const notChunks = staticParentsNotInChain.filter((m) => !moduleIsChunk(m))
const newChain = depsChain.concat(mod).concat(notChunks)
return notChunks
.map((m) => findChunkParents(m, newChain))
.reduce<Module[]>(flatten, [])
.concat(chunks)
}
function getOptions(context: LoaderContext): LoaderOptions {
const query = context.query
if (typeof query === 'string' && query !== '') {
return qs.parse(context.query as string)
}
if (!query || typeof query !== 'object') {
return {}
}
return query
}
module.exports = function (this: LoaderContext, source: string) {
const options = getOptions(this)
const parentChunks = findChunkParents(this._module)
if (process.env.LP_DEBUG || options.debug) {
console.log('LP-LOADER:', this._module.context)
console.log(
'Static parents: ',
this._module.context,
parentChunks.filter(uniq).map((p) => ({
req: p.userRequest,
name: p.name,
id: p.id,
debugId: p.debugId,
}))
)
}
const parentChunksIds = parentChunks
.map(
(m) => m.name || getChunkNameOfDynamicDependency(m) || ''
//m.debugId
)
.filter((_) => _)
.filter(uniq)
.sort()
const parentChunksContextId = getShortHash(
parentChunks
.map((m) => m.context.slice(this.rootContext.length))
.filter(uniq)
.join('')
.replace(/\\/g, '/')
)
const chunkId = parentChunksIds.concat(parentChunksContextId).join('-')
const newExport = this.data.fullExportStr.replace(
/__CHUNK_ID__/g,
chunkId + '.'
)
const allowExportReplace = false
const replaceRegExp = new RegExp(this.data.exportStr + '.*?;')
if (allowExportReplace && replaceRegExp.test(source)) {
source = source.replace(replaceRegExp, newExport)
} else {
source = [this.data.promiseStr, this.data.keysFnStr, newExport].join('\n')
}
return source
}
const getExportAssignStr = (exportTarget: string, exportName: string) => {
return exportTarget === 'es6'
? exportName === 'default'
? 'export default'
: `export const ${exportName} =`
: `exports${exportName ? '.' + exportName : ''} =`
}
module.exports.pitch = function (
this: LoaderContext,
remainingRequest: string,
precedingRequest: string,
data: LoaderContext['data']
) {
this.cacheable && this.cacheable()
const options = getOptions(this)
const promiseLib = options.promiseLib || ''
const bundleName = options.name || 'lp'
const requestParts = remainingRequest.split('!')
const request = requestParts.pop()
const excludeFiles = /^index\./
const disableLoaders = options.disableLoaders!
const exportName =
typeof options.exportName === 'string' ? options.exportName : 'default'
remainingRequest = requestParts.length ? requestParts.join('!') + '!' : ''
const stats = fs.lstatSync(request!)
const dirname = stats.isDirectory() ? request! : path.dirname(request!)
type Entry = { fileName: string; label: string }
const filterFiles = (fileName: string) => {
const filePath = path.join(dirname, fileName)
const includeMatch = options.include as any
return (
(includeMatch
? typeof includeMatch === 'function'
? includeMatch(filePath)
: includeMatch.test(filePath)
: !excludeFiles.test(fileName)) &&
(options.excludeFolders ? !fs.statSync(filePath).isDirectory() : true)
)
}
const entries: Entry[] = fs
.readdirSync(dirname)
.filter(filterFiles)
.map((fileName) => ({
fileName,
label: fileName.replace(/\..*/, ''),
}))
const getPromiseSource = (entry: Entry) => {
const labeledModulePath = JSON.stringify(
disableLoaders
? '!!'
: '' + remainingRequest + path.resolve(dirname, entry.fileName)
)
return [
` return new Promise(function (resolve) {`,
` require.ensure([], function (require) {`,
` var imported = require(${labeledModulePath});`,
` resolve(imported.__esModule ? imported.default : imported);\n`,
` } , "__CHUNK_ID__${bundleName}.${entry.label}");`,
` });`,
].join('\n')
}
const exportTarget =
typeof options.exportTarget === 'string'
? options.exportTarget.toLocaleLowerCase()
: 'es6'
const exportStr = getExportAssignStr(exportTarget, exportName)
const promiseStr = promiseLib
? `var Promise = require(${JSON.stringify(promiseLib)});\n`
: ''
const allLabelsStr = entries
.map((e) => e.label)
.map((l) => JSON.stringify(l))
.join(',')
const keysFnStr =
getExportAssignStr(exportTarget, 'keys') +
` function() {return [${allLabelsStr}]};\n`
const fullExportStr = [`${exportStr} function (label) {\n`]
.concat(
entries.map((entry) =>
[
'if (label === ' + JSON.stringify(entry.label) + ') {',
getPromiseSource(entry),
'}\n',
].join('')
),
'return Promise.resolve();',
'};'
)
.join('')
data.promiseStr = promiseStr
data.exportStr = exportStr
data.fullExportStr = fullExportStr
data.keysFnStr = keysFnStr
data.result = [promiseStr, fullExportStr].join('')
}