mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 04:17:33 -04:00
86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
"use strict"
|
|
|
|
const isStandardSyntaxRule = require("../../utils/isStandardSyntaxRule")
|
|
const isStandardSyntaxSelector = require("../../utils/isStandardSyntaxSelector")
|
|
const report = require("../../utils/report")
|
|
const ruleMessages = require("../../utils/ruleMessages")
|
|
const validateOptions = require("../../utils/validateOptions")
|
|
const resolvedNestedSelector = require("postcss-resolve-nested-selector")
|
|
const selectorParser = require("postcss-selector-parser")
|
|
|
|
const ruleName = "selector-max-compound-selectors"
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
expected: (selector, max) => `Expected "${selector}" to have no more than ${max} compound selectors`,
|
|
})
|
|
|
|
const rule = function (max) {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, {
|
|
actual: max,
|
|
possible: [
|
|
function (max) {
|
|
return typeof max === "number" && max > 0
|
|
},
|
|
],
|
|
})
|
|
if (!validOptions) {
|
|
return
|
|
}
|
|
|
|
// Finds actual selectors in selectorNode object and checks them
|
|
function checkSelector(selectorNode, rule) {
|
|
let compoundCount = 1
|
|
|
|
selectorNode.each(childNode => {
|
|
// Only traverse inside actual selectors and :not()
|
|
if (childNode.type === "selector" || childNode.value === ":not") {
|
|
checkSelector(childNode, rule)
|
|
}
|
|
|
|
// Compound selectors are separated by combinators, so increase count when meeting one
|
|
if (childNode.type === "combinator") {
|
|
compoundCount++
|
|
}
|
|
})
|
|
|
|
if (selectorNode.type !== "root" && selectorNode.type !== "pseudo" && compoundCount > max) {
|
|
report({
|
|
ruleName,
|
|
result,
|
|
node: rule,
|
|
message: messages.expected(selectorNode, max),
|
|
word: selectorNode,
|
|
})
|
|
}
|
|
}
|
|
|
|
root.walkRules(rule => {
|
|
if (!isStandardSyntaxRule(rule)) {
|
|
return
|
|
}
|
|
if (!isStandardSyntaxSelector(rule.selector)) {
|
|
return
|
|
}
|
|
|
|
// Nested selectors are processed in steps, as nesting levels are resolved.
|
|
// Here we skip processing the intermediate parts of selectors (to process only fully resolved selectors)
|
|
if (rule.nodes.some(node => node.type === "rule" || node.type === "atrule")) {
|
|
return
|
|
}
|
|
|
|
// Using `rule.selectors` gets us each selector if there is a comma separated set
|
|
rule.selectors.forEach(selector => {
|
|
resolvedNestedSelector(selector, rule).forEach(resolvedSelector => {
|
|
// Process each resolved selector with `checkSelector` via postcss-selector-parser
|
|
selectorParser(s => checkSelector(s, rule)).process(resolvedSelector)
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
rule.ruleName = ruleName
|
|
rule.messages = messages
|
|
module.exports = rule
|