-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
70 lines (56 loc) · 1.97 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
require('fs.promises');
const { writeFile } = require('fs').promises;
const { JSDOM } = require('jsdom');
const path = require('path');
const compose = require('crocks/helpers/compose')
const curry = require('crocks/helpers/curry')
const map = require('crocks/pointfree/map')
const snd = ([, snd]) => snd;
const getPath = ([x]) => x;
const createLinkHref = prefix => path => `${prefix}/${path}`
const createLinkElement = dom => path => {
const link = dom.window.document.createElement('link');
link.rel = 'modulepreload';
link.href = path;
return link;
}
const defaultShouldPreload =
({ exports, facadeModuleId, isDynamicEntry }) =>
!!(
// preload dynamically imported chunks
isDynamicEntry ||
// preload generated intermediate chunks
(exports && exports.length && !facadeModuleId)
);
const mapAsync = curry(f => xs => Promise.all(xs.map(f)));
const filterAsync = curry(f => async xs => {
const filterMap = await mapAsync(f, xs);
return xs.filter((_, index) => filterMap[index]);
})
const getPreloadChunks = async (shouldPreload, bundle) => await
filterAsync(compose(shouldPreload, snd), Object.entries(bundle))
/**
* Imports css as lit-element `css`-tagged constructible style sheets.
* @param {Object} [options={}]
* @return {Object}
*/
module.exports = function modulepreload({ index, prefix, shouldPreload = defaultShouldPreload } = {}) {
return {
name: 'modulepreload',
async generateBundle({ format, dir }, bundle) {
if (format !== 'es') return;
const dom = await JSDOM.fromFile(index);
const createLinkFromChunk = compose(
createLinkElement(dom),
createLinkHref(prefix ?? dir),
getPath,
);
const appendToDom = link =>
dom.window.document.head.appendChild(link);
await getPreloadChunks(shouldPreload, bundle)
.then(map(createLinkFromChunk))
.then(map(appendToDom));
await writeFile(path.resolve(index), dom.serialize(), 'utf-8')
}
};
}