forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
328 lines (302 loc) · 10.2 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
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
'use strict'
const path = require('path')
const fs = require('fs')
const globby = require('globby')
const crypto = require('crypto')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const WorkboxPlugin = require('workbox-webpack-plugin')
const defaultCache = require('./cache')
const buildCustomWorker = require('./build-custom-worker')
const buildFallbackWorker = require('./build-fallback-worker')
const getRevision = file => crypto.createHash('md5').update(fs.readFileSync(file)).digest('hex')
module.exports = (nextConfig = {}) => ({
...nextConfig,
webpack(config, options) {
const {
webpack,
buildId,
dev,
config: { distDir = '.next', pwa = {}, pageExtensions = ['tsx', 'ts', 'jsx', 'js', 'mdx'], experimental = {} }
} = options
let basePath = options.config.basePath
if (!basePath) basePath = '/'
// For workbox configurations:
// https://developers.google.com/web/tools/workbox/reference-docs/latest/module-workbox-webpack-plugin.GenerateSW
const {
disable = false,
register = true,
dest = distDir,
sw = 'sw.js',
cacheStartUrl = true,
dynamicStartUrl = true,
dynamicStartUrlRedirect,
skipWaiting = true,
clientsClaim = true,
cleanupOutdatedCaches = true,
additionalManifestEntries,
ignoreURLParametersMatching = [],
importScripts = [],
publicExcludes = ['!noprecache/**/*'],
buildExcludes = [],
modifyURLPrefix = {},
manifestTransforms = [],
fallbacks = {},
cacheOnFrontEndNav = false,
reloadOnOnline = true,
scope = basePath,
customWorkerDir = 'worker',
subdomainPrefix, // deprecated, use basePath in next.config.js instead
...workbox
} = pwa
if (typeof nextConfig.webpack === 'function') {
config = nextConfig.webpack(config, options)
}
if (disable) {
options.isServer && console.log('> [PWA] PWA support is disabled')
return config
}
if (subdomainPrefix) {
console.error(
'> [PWA] subdomainPrefix is deprecated, use basePath in next.config.js instead: https://nextjs.org/docs/api-reference/next.config.js/basepath'
)
}
console.log(`> [PWA] Compile ${options.isServer ? 'server' : 'client (static)'}`)
let { runtimeCaching = defaultCache } = pwa
const _scope = path.posix.join(scope, '/')
// inject register script to main.js
const _sw = path.posix.join(basePath, sw.startsWith('/') ? sw : `/${sw}`)
config.plugins.push(
new webpack.DefinePlugin({
__PWA_SW__: `'${_sw}'`,
__PWA_SCOPE__: `'${_scope}'`,
__PWA_ENABLE_REGISTER__: `${Boolean(register)}`,
__PWA_START_URL__: dynamicStartUrl ? `'${basePath}'` : undefined,
__PWA_CACHE_ON_FRONT_END_NAV__: `${Boolean(cacheOnFrontEndNav)}`,
__PWA_RELOAD_ON_ONLINE__: `${Boolean(reloadOnOnline)}`
})
)
const registerJs = path.join(__dirname, 'register.js')
const entry = config.entry
config.entry = () =>
entry().then(entries => {
if (entries['main.js'] && !entries['main.js'].includes(registerJs)) {
entries['main.js'].unshift(registerJs)
}
return entries
})
if (!options.isServer) {
const _dest = path.join(options.dir, dest)
buildCustomWorker({
id: buildId,
basedir: options.dir,
customWorkerDir,
destdir: _dest,
plugins: config.plugins.filter(plugin => plugin instanceof webpack.DefinePlugin),
success: ({ name }) => importScripts.unshift(name),
minify: !dev
})
if (register) {
console.log(`> [PWA] Auto register service worker with: ${path.resolve(registerJs)}`)
} else {
console.log(
`> [PWA] Auto register service worker is disabled, please call following code in componentDidMount callback or useEffect hook`
)
console.log(`> [PWA] window.workbox.register()`)
}
console.log(`> [PWA] Service worker: ${path.join(_dest, sw)}`)
console.log(`> [PWA] url: ${_sw}`)
console.log(`> [PWA] scope: ${_scope}`)
config.plugins.push(
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [
path.join(_dest, 'workbox-*.js'),
path.join(_dest, 'workbox-*.js.map'),
path.join(_dest, sw),
path.join(_dest, `${sw}.map`)
]
})
)
// precache files in public folder
let manifestEntries = additionalManifestEntries
if (!Array.isArray(manifestEntries)) {
manifestEntries = globby
.sync(
[
'**/*',
'!workbox-*.js',
'!workbox-*.js.map',
'!worker-*.js',
'!worker-*.js.map',
'!fallback-*.js',
'!fallback-*.js.map',
`!${sw.replace(/^\/+/, '')}`,
`!${sw.replace(/^\/+/, '')}.map`,
...publicExcludes
],
{
cwd: 'public'
}
)
.map(f => ({
url: path.posix.join(basePath, `/${f}`),
revision: getRevision(`public/${f}`)
}))
}
if (cacheStartUrl) {
if (!dynamicStartUrl) {
manifestEntries.push({
url: basePath,
revision: buildId
})
} else if (typeof dynamicStartUrlRedirect === 'string' && dynamicStartUrlRedirect.length > 0) {
manifestEntries.push({
url: dynamicStartUrlRedirect,
revision: buildId
})
}
}
let _fallbacks = fallbacks
if (_fallbacks) {
_fallbacks = buildFallbackWorker({
id: buildId,
fallbacks,
basedir: options.dir,
destdir: _dest,
success: ({ name, precaches }) => {
importScripts.unshift(name)
precaches.forEach(route => {
if (!manifestEntries.find(entry => entry.url.startsWith(route))) {
manifestEntries.push({
url: route,
revision: buildId
})
}
})
},
minify: !dev,
pageExtensions
})
}
const workboxCommon = {
swDest: path.join(_dest, sw),
additionalManifestEntries: dev ? [] : manifestEntries,
exclude: [
...buildExcludes,
({ asset, compilation }) => {
if (
asset.name.startsWith('server/') ||
asset.name.match(/^(build-manifest\.json|react-loadable-manifest\.json)$/)
) {
return true
}
if (dev && !asset.name.startsWith('static/runtime/')) {
return true
}
if (experimental.modern /* modern */) {
if (asset.name.endsWith('.module.js')) {
return false
}
if (asset.name.endsWith('.js')) {
return true
}
}
return false
}
],
modifyURLPrefix: {
...modifyURLPrefix,
'/_next/../public/': '/'
},
manifestTransforms: [
...manifestTransforms,
async (manifestEntries, compilation) => {
const manifest = manifestEntries.map(m => {
m.url = m.url.replace('/_next//static/image', '/_next/static/image')
m.url = m.url.replace('/_next//static/media', '/_next/static/media')
if (m.revision === null) {
let key = m.url
if (key.startsWith(config.output.publicPath)) {
key = m.url.substring(config.output.publicPath.length)
}
const assset = compilation.assetsInfo.get(key)
m.revision = assset ? assset.contenthash || buildId : buildId
}
m.url = m.url.replace(/\[/g, '%5B').replace(/\]/g, '%5D')
return m
})
return { manifest, warnings: [] }
}
]
}
if (workbox.swSrc) {
const swSrc = path.join(options.dir, workbox.swSrc)
console.log(`> [PWA] Inject manifest in ${swSrc}`)
config.plugins.push(
new WorkboxPlugin.InjectManifest({
...workboxCommon,
...workbox,
swSrc
})
)
} else {
if (dev) {
console.log(
'> [PWA] Build in develop mode, cache and precache are mostly disabled. This means offline support is disabled, but you can continue developing other functions in service worker.'
)
ignoreURLParametersMatching.push(/ts/)
runtimeCaching = [
{
urlPattern: /.*/i,
handler: 'NetworkOnly',
options: {
cacheName: 'dev'
}
}
]
}
if (dynamicStartUrl) {
runtimeCaching.unshift({
urlPattern: basePath,
handler: 'NetworkFirst',
options: {
cacheName: 'start-url',
plugins: [
{
cacheWillUpdate: async ({ request, response, event, state }) => {
if (response && response.type === 'opaqueredirect') {
return new Response(response.body, { status: 200, statusText: 'OK', headers: response.headers })
}
return response
}
}
]
}
})
}
if (_fallbacks) {
runtimeCaching.forEach(c => {
if (c.options.precacheFallback) return
if (Array.isArray(c.options.plugins) && c.options.plugins.find(p => 'handlerDidError' in p)) return
if (!c.options.plugins) c.options.plugins = []
c.options.plugins.push({
handlerDidError: async ({ request }) => self.fallback(request)
})
})
}
config.plugins.push(
new WorkboxPlugin.GenerateSW({
...workboxCommon,
skipWaiting,
clientsClaim,
cleanupOutdatedCaches,
ignoreURLParametersMatching,
importScripts,
...workbox,
runtimeCaching
})
)
}
}
return config
}
})