-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy pathpostcss-import-parser.js
219 lines (172 loc) · 5.68 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
import valueParser from "postcss-value-parser";
import {
normalizeUrl,
resolveRequests,
isUrlRequestable,
requestify,
webpackIgnoreCommentRegexp,
} from "../utils";
function visitor(result, parsedResults, node, key) {
// Convert only top-level @import
if (node.parent.type !== "root") {
return;
}
if (node.raws.afterName && node.raws.afterName.trim().length > 0) {
const lastCommentIndex = node.raws.afterName.lastIndexOf("/*");
const matched = node.raws.afterName
.slice(lastCommentIndex)
.match(webpackIgnoreCommentRegexp);
if (matched && matched[2] === "true") {
return;
}
}
const prevNode = node.prev();
if (prevNode && prevNode.type === "comment") {
const matched = prevNode.text.match(webpackIgnoreCommentRegexp);
if (matched && matched[2] === "true") {
return;
}
}
// Nodes do not exists - `@import url('http://') :root {}`
if (node.nodes) {
result.warn(
"It looks like you didn't end your @import statement correctly. Child nodes are attached to it.",
{ node }
);
return;
}
const { nodes: paramsNodes } = valueParser(node[key]);
// No nodes - `@import ;`
// Invalid type - `@import foo-bar;`
if (
paramsNodes.length === 0 ||
(paramsNodes[0].type !== "string" && paramsNodes[0].type !== "function")
) {
result.warn(`Unable to find uri in "${node.toString()}"`, { node });
return;
}
let isStringValue;
let url;
if (paramsNodes[0].type === "string") {
isStringValue = true;
url = paramsNodes[0].value;
} else {
// Invalid function - `@import nourl(test.css);`
if (paramsNodes[0].value.toLowerCase() !== "url") {
result.warn(`Unable to find uri in "${node.toString()}"`, { node });
return;
}
isStringValue =
paramsNodes[0].nodes.length !== 0 &&
paramsNodes[0].nodes[0].type === "string";
url = isStringValue
? paramsNodes[0].nodes[0].value
: valueParser.stringify(paramsNodes[0].nodes);
}
// Empty url - `@import "";` or `@import url();`
if (url.trim().length === 0) {
result.warn(`Unable to find uri in "${node.toString()}"`, { node });
return;
}
parsedResults.push({
node,
url,
isStringValue,
mediaNodes: paramsNodes.slice(1),
});
}
const plugin = (options = {}) => {
return {
postcssPlugin: "postcss-import-parser",
prepare(result) {
const parsedResults = [];
return {
AtRule: {
import(atRule) {
visitor(result, parsedResults, atRule, "params");
},
},
async OnceExit() {
if (parsedResults.length === 0) {
return;
}
const imports = new Map();
const tasks = [];
for (const parsedResult of parsedResults) {
const { node, url, isStringValue, mediaNodes } = parsedResult;
let normalizedUrl = url;
let prefix = "";
const isRequestable = isUrlRequestable(normalizedUrl);
if (isRequestable) {
const queryParts = normalizedUrl.split("!");
if (queryParts.length > 1) {
normalizedUrl = queryParts.pop();
prefix = queryParts.join("!");
}
normalizedUrl = normalizeUrl(normalizedUrl, isStringValue);
// Empty url after normalize - `@import '\
// \
// \
// ';
if (normalizedUrl.trim().length === 0) {
result.warn(`Unable to find uri in "${node.toString()}"`, {
node,
});
// eslint-disable-next-line no-continue
continue;
}
}
let media;
if (mediaNodes.length > 0) {
media = valueParser.stringify(mediaNodes).trim().toLowerCase();
}
if (options.filter && !options.filter(normalizedUrl, media)) {
// eslint-disable-next-line no-continue
continue;
}
node.remove();
if (isRequestable) {
const request = requestify(normalizedUrl, options.rootContext);
tasks.push(
(async () => {
const { resolver, context } = options;
const resolvedUrl = await resolveRequests(resolver, context, [
...new Set([request, normalizedUrl]),
]);
return { url: resolvedUrl, media, prefix, isRequestable };
})()
);
} else {
tasks.push({ url, media, prefix, isRequestable });
}
}
const results = await Promise.all(tasks);
for (let index = 0; index <= results.length - 1; index++) {
const { url, isRequestable, media } = results[index];
if (isRequestable) {
const { prefix } = results[index];
const newUrl = prefix ? `${prefix}!${url}` : url;
const importKey = newUrl;
let importName = imports.get(importKey);
if (!importName) {
importName = `___CSS_LOADER_AT_RULE_IMPORT_${imports.size}___`;
imports.set(importKey, importName);
options.imports.push({
importName,
url: options.urlHandler(newUrl),
index,
});
}
options.api.push({ importName, media, index });
// eslint-disable-next-line no-continue
continue;
}
options.api.push({ url, media, index });
}
},
};
},
};
};
plugin.postcss = true;
export default plugin;