-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
64 lines (54 loc) · 1.3 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
'use strict';
const glob = require('glob');
const path = require('path');
const SizeUpImages = require('./lib/SizeUpImages');
const imageStats = require('./lib/image-stats');
module.exports = {
name: require('./package').name,
included(app) {
this._super.included.apply(this, arguments);
this._options = {
cwd: '/',
preload: true,
prefetch: true,
glob: '**/*.{gif,jpg,png,svg}',
...(app.options['ember-hotspots'] || {}),
};
},
isDevelopingAddon() {
return true;
},
treeForPublic() {
return new SizeUpImages(this.app.trees.public, this._options);
},
contentFor(type, app) {
if (
type === 'head-footer' &&
this._options.prefetch &&
app.environment === 'production'
) {
const cwd = path.join(
process.cwd(),
this.app.trees.public,
this._options.cwd
);
const files = glob
.sync(this._options.glob, {
cwd,
})
.reduce(
(acc, file) => ({
...acc,
[file]: imageStats(path.join(cwd, file)),
}),
{}
);
return `${Object.keys(files).reduce(
(acc, filename) =>
`${acc}\n<link rel="preload" href="/${filename}" as="image">`,
''
)}\n`;
}
return '';
},
};