forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
218 lines (196 loc) · 6.93 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
'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 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 = {} }
} = options
// 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',
subdomainPrefix = '',
scope = '/',
skipWaiting = true,
clientsClaim = true,
cleanupOutdatedCaches = true,
additionalManifestEntries,
ignoreURLParametersMatching = [],
importScripts = [],
publicExcludes = [],
manifestTransforms = [],
precacheHomePage = true,
...workbox
} = pwa
let { runtimeCaching = defaultCache } = pwa
if (typeof nextConfig.webpack === 'function') {
config = nextConfig.webpack(config, options)
}
if (disable) {
console.log('> [PWA] PWA support is disabled')
return config
}
console.log(`> [PWA] Compile ${options.isServer ? 'server' : 'client (static)'}`)
// inject register script to main.js
const _sw = sw.startsWith('/') ? sw : `/${sw}`
config.plugins.push(
new webpack.DefinePlugin({
__PWA_SW__: `"${path.posix.join(subdomainPrefix, _sw)}"`,
__PWA_SCOPE__: `"${path.posix.join(subdomainPrefix, scope)}"`,
__PWA_ENABLE_REGISTER__: `${Boolean(register)}`
})
)
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) {
if (dev) {
console.log('> [PWA] Build in develop mode, cache and precache are mostly disabled. \
This means offine support is disabled, but you can continue developing other functions in service worker.')
}
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()`)
}
const _dest = path.join(options.dir, dest)
console.log(`> [PWA] Service worker: ${path.join(_dest, sw)}`)
console.log(`> [PWA] url: ${path.posix.join(subdomainPrefix, _sw)}`)
console.log(`> [PWA] scope: ${path.posix.join(subdomainPrefix, scope)}`)
// build custom worker
let customWorkerEntry = path.join(options.dir, 'worker', 'index.js')
const customWorkerName = `worker-${buildId}.js`
if (fs.existsSync(customWorkerEntry)) {
console.log(`> [PWA] Custom worker found: ${customWorkerEntry}`)
console.log(`> [PWA] Build custom worker: ${path.join(_dest, customWorkerName)}`)
webpack({
mode: config.mode,
target: 'webworker',
entry: customWorkerEntry,
output: {
path: _dest,
filename: customWorkerName
},
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [
path.join(_dest, 'worker-*.js'),
path.join(_dest, 'worker-*.js.map')
]
})
]
}).run((error, status) => {
if (error || status.hasErrors()) {
console.error(`> [PWA] Failed to build custom worker: ${error}`)
process.exit(-1)
}
importScripts.unshift(customWorkerName)
})
}
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',
`!${sw.replace(/^\/+/, '')}`, `!${sw.replace(/^\/+/, '')}.map`, ...publicExcludes], {
cwd: 'public'
})
.map(f => ({
url: path.posix.join(subdomainPrefix,`/${f}`),
revision: getRevision(`public/${f}`)
}))
if (precacheHomePage) {
manifestEntries.push({ url: path.posix.join(subdomainPrefix, '/'), revision: buildId })
}
}
const prefix = config.output.publicPath ? `${config.output.publicPath}static/` : 'static/'
const workboxCommon = {
swDest: path.join(_dest, sw),
additionalManifestEntries: dev ? undefined : manifestEntries,
exclude: [
({ asset, compilation }) => {
if (asset.name.match(/^(build-manifest\.json|react-loadable-manifest\.json)$/)) {
return true
}
if (dev && !asset.name.startsWith('static/runtime/')) {
return true
}
return false
}
],
modifyURLPrefix: {
[prefix]: path.posix.join(subdomainPrefix, '/_next/static/')
},
manifestTransforms: [
...manifestTransforms,
async (manifestEntries, compilation) => {
const manifest = manifestEntries.map(m => {
m.url = m.url.replace(/\/\[/g, '/%5B').replace(/\]\.js/g, '%5D.js')
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) {
ignoreURLParametersMatching.push(/ts/)
}
config.plugins.push(
new WorkboxPlugin.GenerateSW({
...workboxCommon,
skipWaiting,
clientsClaim,
cleanupOutdatedCaches,
ignoreURLParametersMatching,
importScripts,
runtimeCaching: dev ? undefined : runtimeCaching,
...workbox
})
)
}
}
return config
}
})