forked from dokmic/webpack-redis-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
101 lines (92 loc) · 2.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
const redis = require('redis'), fs = require('fs');
/**
* Webpack Redis Plugin
*/
class WebpackRedisPlugin {
/**
* Initilize new plugin instance
*
* @param {Object} options
*/
constructor(options = {}) {
this.options = options;
}
/**
* @return {RedisClient}
*/
getClient() {
return this._client
|| (this._client = redis.createClient(this.options.config));
}
/**
* Set key contents
*
* @param {string} key
* @param {string} value
* @return {Promise}
*/
save({ key, value }) {
const client = this.getClient();
return new Promise((resolve, reject) => {
client.addListener('error', reject);
client.set(key, value, () => {
client.removeListener('error', reject);
resolve();
});
});
}
/**
* @param {Compilation} compilation
* @return {Array<Object>}
*/
getAssets({ assets, outputOptions }) {
const filteredKeys = Object.keys(assets)
.filter(key => !this.options.filter || this.options.filter(key));
// eslint-disable-next-line one-var
const files = filteredKeys.map(key => ({
key,
content: fs.readFileSync(`${outputOptions.path}/${key}`, 'utf8'),
}));
return files.map(f => this.options.transform
? this.options.transform(f.key, f.content)
: { key: f.key, content: f.content }
);
}
/**
* @param {Compilation} compilation
* @param {Function} callback
* @return {void}
*/
afterEmit(compilation, callback) {
if (compilation.errors.length) {
return callback && callback();
}
return Promise.all(
this
.getAssets(compilation)
.map(this.save.bind(this))
)
.then(() => this.getClient().quit())
.catch(error => {
this.getClient().end(true);
compilation.errors.push(error);
})
.then(() => callback && callback());
}
/**
* Apply plugin
*
* @param {Object} compiler
*/
apply(compiler) {
if (compiler.hooks) {
compiler.hooks.afterEmit.tap({
name: 'RedisPlugin',
stage: Infinity
}, this.afterEmit.bind(this));
} else {
compiler.plugin('after-emit', this.afterEmit.bind(this));
}
}
}
module.exports = WebpackRedisPlugin;