-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
41 lines (38 loc) · 958 Bytes
/
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
const { parseQuery } = require('loader-utils');
const AsciiArtImage = require('ascii-art-image');
const stripAnsi = require('strip-ansi');
module.exports.pitch = function() {
const callback = this.async();
const image = new AsciiArtImage(getOptions.call(this));
image.write((err, ascii) => {
if (err) {
callback(err);
} else {
callback(null, processAscii(ascii));
}
})
};
function getOptions() {
const options = {
width: 80,
alphabet: 'hatching'
};
if (this.resourceQuery) {
const queryOptions = parseQuery(this.resourceQuery);
if (queryOptions.width) {
queryOptions.width = parseInt(queryOptions.width);
}
Object.assign(
options,
queryOptions
)
}
options.filepath = this.resourcePath
return options;
}
function processAscii(ascii) {
const html = stripAnsi(ascii)
.replace(/\n/g, '<br/>')
.replace(/ /g, ' ');
return `export default \`${html}\``;
}