generated from argyleink/vite-postcss-preset-env
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into postcss-preset-env-…
…version-8--courteous-leopard-seal-c9f93f8ae9
- Loading branch information
Showing
2 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
const creator = () => { | ||
return { | ||
postcssPlugin: 'postcss-combine-selectors', | ||
OnceExit(root) { | ||
const rulesToCombine = new Map() | ||
|
||
root.walkRules(rule => { | ||
if (isKeyframesRule(rule)) { | ||
return | ||
} | ||
|
||
const key = ruleKey(rule) | ||
const existing = rulesToCombine.get(key) | ||
|
||
// Existing group: | ||
// - add rule to the group | ||
if (existing) { | ||
existing.rules.push(rule) | ||
return | ||
} | ||
|
||
// New group: | ||
// - first rule is the one we're going to combine into | ||
// - create an empty slice for other rules to be added to | ||
rulesToCombine.set(key, { | ||
first: rule, | ||
rules: [] | ||
}) | ||
}) | ||
|
||
// Iterate over all groups | ||
for (const { first, rules } of rulesToCombine.values()) { | ||
// If there was only one rule for a given group, there's nothing to combine | ||
if (rules.length === 0) { | ||
continue | ||
} | ||
|
||
// Append all contents of all subsequent rules to the first rule | ||
for (const rule of rules) { | ||
rule.each((child) => { | ||
child.remove() | ||
first.append(child) | ||
}) | ||
|
||
// Remove the now-empty rule | ||
rule.remove() | ||
} | ||
} | ||
}, | ||
} | ||
} | ||
|
||
/** | ||
* Construct a key that is specific to the AST ancestry of the rule. | ||
* Only rules with the same key can be combined. | ||
* | ||
* @param {import('postcss').Rule} rule | ||
* @returns {string} | ||
*/ | ||
function ruleKey(rule) { | ||
let key = `[rule ${rule.selector}]` | ||
|
||
let ancestor = rule.parent | ||
while (ancestor) { | ||
if (ancestor.type === 'atrule') { | ||
key = `[${ancestor.name} ${ancestor.params}]${key}` | ||
} else if (ancestor.type === 'rule') { | ||
key = `[rule ${ancestor.selector}]${key}` | ||
} else if (ancestor.type === 'root') { | ||
break | ||
} | ||
|
||
ancestor = ancestor.parent | ||
} | ||
|
||
return key | ||
} | ||
|
||
function isKeyframesRule(rule) { | ||
if (rule.parent?.type === 'atrule' && rule.parent.name === 'keyframes') { | ||
return true | ||
} | ||
|
||
return false | ||
} | ||
|
||
module.exports = creator | ||
module.exports.postcss = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters