-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
97 lines (74 loc) · 2.09 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
const { specificity, tokenize } = require("parsel-js")
const wasProcessed = Symbol("processed by set-specificity")
const selectorOfSpecificity = ([ids, classes, elements]) => {
let selector = ""
for (let e = 0; e < elements; e++)
if (e === 0)
selector += "_"
else
selector += "+_"
for (let i = 0; i < ids; i++)
selector += "#_"
for (let c = 0; c < classes; c++)
selector += "._"
return selector
}
const paramsToUniversal = atRuleParams =>
`:is(*,:not(${selectorOfSpecificity(specificity(atRuleParams))}))`
// Wrap a selector in :where()
// Of course, pseudo elements are an exception
const wrapInWhere = inputSelector => {
const tokens = tokenize(inputSelector)
// // Just a *
// if (tokens.length === 1 && tokens[0].content === "*") {
// return ""
// }
let outputSelector = ""
let inWhere = false
for (const token of tokens) {
if (token.content === "*")
continue
if (token.type === "pseudo-element") {
if (inWhere) {
outputSelector += ")"
inWhere = false
}
}
else if (!inWhere) {
outputSelector += ":where("
inWhere = true
}
outputSelector += token.content
}
if (inWhere)
outputSelector += ")"
return outputSelector
}
const processRule = atRuleParams => rule => {
if (rule[wasProcessed]) return
const selectorTransform =
atRuleParams.length === 0
// Special case of zero specificity
? selector =>
wrapInWhere(selector)
// General case where we need the :is(*,:not(x)) first
: selector =>
paramsToUniversal(atRuleParams) +
wrapInWhere(selector)
rule.selectors = rule.selectors
.map(selectorTransform)
rule[wasProcessed] = true
}
/** @type { import("postcss").PluginCreator } */
const postcssSetSpecificity = () => ({
postcssPlugin: "set-specificity",
AtRule: {
"set-specificity": atRule => {
if (!atRule.nodes) return
atRule.walkRules(processRule(atRule.params))
atRule.replaceWith(atRule.nodes)
}
}
})
postcssSetSpecificity.postcss = true
module.exports = postcssSetSpecificity