forked from retorquere/zotero-better-bibtex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esbuild.js
310 lines (283 loc) · 8.66 KB
/
esbuild.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
const path = require('path')
const fs = require('fs')
const exists = fs.existsSync
const esbuild = require('esbuild')
const exec = require('child_process').exec
const glob = require('glob-promise')
const crypto = require('crypto')
const branch = require('git-branch')
const fast_safe_stringify = require('fast-safe-stringify')
const loader = require('./setup/loaders')
const shims = require('./setup/shims')
function execShellCommand(cmd) {
console.log(cmd)
return new Promise((resolve, reject) => {
exec(cmd, (error, stdout, stderr) => {
if (error) {
console.warn(error)
}
resolve(stdout? stdout : stderr)
})
})
}
class Gradient {
constructor(start, end, min, max) {
this.min = min
this.max = max
this.start = this.hexToRgb(start)
this.end = this.hexToRgb(end)
this.diff = {
r: this.end.r - this.start.r,
g: this.end.g - this.start.g,
b: this.end.b - this.start.b,
}
}
hexToRgb(hex) {
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)
return result ? {
r: parseInt(result[1], 16),
g: parseInt(result[2], 16),
b: parseInt(result[3], 16)
} : null
}
fade(value) {
return (value - this.min) / (this.max - this.min)
}
getColor(value) {
if (value < this.min) throw new Error(`${value} < ${this.min}`)
if (value > this.max) throw new Error(`${value} > ${this.max}`)
const fade = this.fade(value)
const r = (this.diff.r * fade) + this.start.r
const g = (this.diff.g * fade) + this.start.g
const b = (this.diff.b * fade) + this.start.b
return '#' + [r, g, b].map(v => Math.round(v).toString(16).padStart(2, '0')).join('')
}
}
function humansize(v) {
const units = ['b', 'k', 'M', 'G']
while (units.length > 1 && v > 1024) {
units.shift()
v = v / 1024
}
return `${Math.round(v)}${units[0]}`
}
function dependencyGraph(metafile) {
const graph = { nodes: '', edges: '' }
const node = {}
function nodeid(module) {
if (typeof node[module] !== 'number') node[module] = Object.keys(node).length
return node[module]
}
const Wrap = 5000
let X = 0
let Y = 0
let H = 0
const size = { }
for (const [module, data] of Object.entries(metafile.inputs)) {
if (typeof size.min === 'undefined' || data.bytes < size.min) size.min = data.bytes
if (typeof size.max === 'undefined' || data.bytes > size.max) size.max = data.bytes
}
const gradient = new Gradient('#00FF00', '#FF0000', 0, size.max)
for (const [module, data] of Object.entries(metafile.inputs)) {
let label = `${module.replace(/^node_modules\//, ':')} (${humansize(data.bytes)})`
label = JSON.stringify(label)
const w = 60
const h = 30
graph.nodes += `
node [
id ${nodeid(module)}
label ${label}
graphics [
x ${X}
y ${Y}
w ${w}
h ${h}
fill "${gradient.getColor(data.bytes)}"
outline "#000000"
]
]
`
X += w
H = h > H ? h : H
if (X > Wrap) {
Y += H
X = 0
H = 0
}
for (const dep of data.imports) {
graph.edges += `
edge [
source ${nodeid(module)}
target ${nodeid(dep.path)}
]
`
}
}
return `
graph [
hierarchic 1
directed 1
${graph.nodes}
${graph.edges}
]
`
}
function js(src) {
return src.replace(/[.]ts$/, '.js')
}
async function bundle(config) {
config = {
bundle: true,
format: 'iife',
target: ['firefox60'],
inject: [],
treeShaking: true,
plugins: [],
minify: false,
...config,
}
if (!config.plugins.includes(loader.json)) config.plugins.push(loader.json)
let target
if (config.outfile) {
target = config.outfile
}
else if (config.entryPoints.length === 1 && config.outdir) {
target = path.join(config.outdir, js(path.basename(config.entryPoints[0])))
}
else {
target = `${config.outdir} [${config.entryPoints.map(js).join(', ')}]`
}
loader.patcher.current = null
const exportGlobals = config.exportGlobals
delete config.exportGlobals
if (exportGlobals) {
loader.patcher.silent = true
const esm = await esbuild.build({ ...config, logLevel: 'silent', format: 'esm', metafile: true, write: false })
if (process.env.GML) {
console.log(' generating dependency graph', target + '.gml')
fs.writeFileSync(target + '.gml', dependencyGraph(esm.metafile))
}
for (const output of Object.values(esm.metafile.outputs)) {
if (output.entryPoint) {
const sep = '$$'
config.globalName = escape(`{ ${output.exports.sort().join(', ')} }`).replace(/%/g, '$')
// make these var, not const, so they get hoisted and are available in the global scope.
}
}
loader.patcher.silent = false
}
if (config.plugins.find(p => p === loader.patcher.plugin)) loader.patcher.current = target
const metafile = config.metafile
config.metafile = !!config.metafile
console.log('* bundling', target)
const meta = (await esbuild.build(config)).metafile
if (typeof metafile === 'string') await fs.promises.writeFile(metafile, JSON.stringify(meta, null, 2))
if (exportGlobals) {
await fs.promises.writeFile(
target,
(await fs.promises.readFile(target, 'utf-8')).replace(config.globalName, unescape(config.globalName.replace(/[$]/g, '%')))
)
}
}
async function rebuild() {
loader.patcher.load('setup/patches')
// bootstrap code
await bundle({
entryPoints: [ 'content/bootstrap.ts' ],
outdir: 'build',
exportGlobals: true,
})
// plugin code
await bundle({
entryPoints: [ 'content/better-bibtex.ts' ],
plugins: [
loader.trace('plugin'),
loader.patcher.plugin,
loader.text,
loader.sql,
loader.peggy,
loader.pug,
loader.__dirname,
shims
],
metafile: 'gen/better-bibtex-esbuild.json',
inject: ['./setup/loaders/globals.js'],
outdir: 'build/content',
banner: { js: 'if (!Zotero.BetterBibTeX) {\n' },
footer: { js: '\n}' },
external: [
'zotero/itemTree',
'mock-aws-s3',
'@node-rs/jieba-darwin-x64',
'nock',
'aws-sdk',
],
})
// chinese for dynamic loading
await bundle({
entryPoints: [ 'content/key-manager/chinese-optional.ts' ],
exportGlobals: true,
plugins: [
loader.patcher.plugin,
loader.__dirname,
// shims,
],
// inject: ['./setup/loaders/globals.js'],
outfile: 'build/content/key-manager/chinese-optional.js',
})
// worker code
await bundle({
entryPoints: [ 'content/worker/zotero.ts' ],
plugins: [
loader.trace('worker'),
loader.patcher.plugin,
loader.text,
// loader.peggy,
loader.__dirname,
shims
],
inject: ['./setup/loaders/globals.js'],
outdir: 'build/content/worker',
exportGlobals: true,
metafile: 'gen/worker.json',
external: [ 'jsdom' ],
banner: { js: '\ndump("\\nloading BBT chromeworker\\n")\ntry {\n' },
footer: { js: '} catch ($$err$$) { dump("\\nerror: failed loading BBT chromeworker: " + $$err$$.message + "\\n" + $$err$$.stack + "\\n") }\ndump("\\nloaded BBT chromeworker\\n")\n' },
})
// translators
for (const translator of (await glob('translators/*.json')).map(tr => path.parse(tr))) {
const header = require('./' + path.join(translator.dir, translator.name + '.json'))
const outfile = path.join('build/content/resource', translator.name + '.js')
// https://esbuild.github.io/api/#write
// https://esbuild.github.io/api/#outbase
// https://esbuild.github.io/api/#working-directory
await bundle({
entryPoints: [path.join(translator.dir, translator.name + '.ts')],
plugins: [
loader.trace('translators'),
// loader.peggy,
loader.__dirname,
shims
],
// inject: ['./setup/loaders/globals.js'],
outfile,
banner: { js: `
if (typeof ZOTERO_TRANSLATOR_INFO === 'undefined') var ZOTERO_TRANSLATOR_INFO = {}; // declare if not declared
Object.assign(ZOTERO_TRANSLATOR_INFO, ${JSON.stringify(header)}); // assign new data
`},
exportGlobals: true,
metafile: `gen/${translator.name}.json`,
})
const source = await fs.promises.readFile(outfile, 'utf-8')
const checksum = crypto.createHash('sha256')
checksum.update(fast_safe_stringify.stable(header) + source)
if (!header.configOptions) header.configOptions = {}
header.configOptions.hash = checksum.digest('hex')
header.lastUpdated = (new Date).toISOString().replace(/T.*/, '')
await fs.promises.writeFile(path.join('build/content/resource', translator.name + '.json'), JSON.stringify(header, null, 2))
}
}
rebuild().catch(err => {
console.log(err)
process.exit(1)
})