-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
103 lines (80 loc) · 2.24 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
102
103
"use strict";
var _postcss = _interopRequireDefault(require("postcss"));
var _postcssValueParser = _interopRequireDefault(
require("postcss-value-parser")
);
var _icssUtils = require("icss-utils");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : { default: obj };
}
const plugin = "postcss-plugin-import";
const getArg = nodes =>
nodes.length !== 0 && nodes[0].type === "string"
? nodes[0].value
: _postcssValueParser.default.stringify(nodes);
const getUrl = node => {
if (node.type === "function" && node.value.toLowerCase() === "url") {
return getArg(node.nodes);
}
if (node.type === "string") {
return node.value;
}
return "";
};
const parseImport = params => {
const _valueParser = (0, _postcssValueParser.default)(params),
nodes = _valueParser.nodes;
if (nodes.length === 0) {
return null;
}
const url = getUrl(nodes[0]);
if (url.trim().length === 0) {
return null;
}
return {
url,
media: _postcssValueParser.default.stringify(nodes.slice(1)).trim()
};
};
const defaultFilter = url => !/^\w+:\/\//.test(url) && !url.startsWith("//");
module.exports = _postcss.default.plugin(
plugin,
(options = {}) => (css, result) => {
const imports = {};
const filter = options.filter || defaultFilter;
css.walkAtRules(/^import$/i, atrule => {
// Convert only top-level @import
if (atrule.parent.type !== "root") {
return;
}
if (atrule.nodes) {
return result.warn(
"It looks like you didn't end your @import statement correctly. " +
"Child nodes are attached to it.",
{
node: atrule
}
);
}
const parsed = parseImport(atrule.params);
if (parsed === null) {
return result.warn(`Unable to find uri in '${atrule.toString()}'`, {
node: atrule
});
}
if (filter && !filter(parsed.url)) {
return;
}
atrule.remove();
imports[
`"${parsed.url}"${
parsed.media.length > 0 ? ` ${parsed.media.toLowerCase()}` : ""
}`
] = {};
});
if (Object.keys(imports).length === 0) {
return;
}
css.prepend((0, _icssUtils.createICSSRules)(imports, {}));
}
);