-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
65 lines (50 loc) · 1.59 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
const { compileTemplate } = require('@vue/compiler-sfc');
const { readFileSync } = require('fs');
const SVGO = require('svgo');
async function compileSvg(source, id) {
let { code } = compileTemplate({
id,
source,
transformAssetUrls: false,
});
code = code.replace('export function render', 'function render');
code += `\nexport default { render };`;
return code;
}
async function optimizeSvg(svgo, content, path) {
const { data } = await svgo.optimize(content, {
path,
});
return data;
}
module.exports = (options = {}) => {
const { svgoConfig, defaultExport = 'url' } = options;
const svgo = new SVGO(svgoConfig);
const cache = new Map();
const svgRegex = /\.svg(?:\?(component|url))?$/
return {
name: 'vue-svg',
async transform(source, id, isBuild) {
const result = id.match(svgRegex);
if (result) {
const type = result[1];
if ((defaultExport === 'url' && typeof type === 'undefined') || type === 'url') {
return source;
}
if ((defaultExport === 'component' && typeof type === 'undefined') || type === 'component') {
const idWithoutQuery = id.replace('.svg?component', '.svg')
let result = cache.get(idWithoutQuery);
if (!result) {
const code = readFileSync(idWithoutQuery);
const svg = await optimizeSvg(svgo, code, idWithoutQuery);
result = await compileSvg(svg, idWithoutQuery);
if (isBuild) {
cache.set(idWithoutQuery, result);
}
}
return result;
}
}
}
}
}