-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy pathpostcss-import-parser.js
99 lines (78 loc) · 2.17 KB
/
postcss-import-parser.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
const postcss = require('postcss');
const valueParser = require('postcss-value-parser');
const loaderUtils = require('loader-utils');
const pluginName = 'postcss-import-parser';
function getArg(nodes) {
return nodes.length !== 0 && nodes[0].type === 'string'
? nodes[0].value
: valueParser.stringify(nodes);
}
function getUrl(node) {
if (node.type === 'function' && node.value.toLowerCase() === 'url') {
return getArg(node.nodes);
}
if (node.type === 'string') {
return node.value;
}
return '';
}
function parseImport(params) {
const { nodes } = valueParser(params);
if (nodes.length === 0) {
return null;
}
const url = getUrl(nodes[0]);
if (url.trim().length === 0) {
return null;
}
return {
url,
media: valueParser
.stringify(nodes.slice(1))
.trim()
.toLowerCase(),
};
}
module.exports = postcss.plugin(
pluginName,
(options) =>
function process(css, result) {
const importItems = [];
css.walkAtRules(/^import$/i, (atrule) => {
// Convert only top-level @import
if (atrule.parent.type !== 'root') {
return;
}
if (atrule.nodes) {
result.warn(
"It looks like you didn't end your @import statement correctly. " +
'Child nodes are attached to it.',
{ node: atrule }
);
return;
}
const parsed = parseImport(atrule.params);
if (!parsed) {
// eslint-disable-next-line consistent-return
return result.warn(`Unable to find uri in '${atrule.toString()}'`, {
node: atrule,
});
}
atrule.remove();
const { media } = parsed;
let { url } = parsed;
const isUrlRequest = loaderUtils.isUrlRequest(url);
if (isUrlRequest) {
url = loaderUtils.urlToRequest(url);
}
const includes = importItems.find(
(el) => el.url === url && el.media === media
);
if (!includes) {
importItems.push({ url, media, isUrlRequest });
}
});
// eslint-disable-next-line no-param-reassign
options.importItems = importItems;
}
);