mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 20:15:38 +00:00
125 lines
3.8 KiB
JavaScript
125 lines
3.8 KiB
JavaScript
import selectorParser from 'postcss-selector-parser';
|
|
const { isRoot, isSelector } = selectorParser;
|
|
|
|
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
import flattenNestedSelectorsForRule from '../../utils/flattenNestedSelectorsForRule.mjs';
|
|
import getStrippedSelectorSource from '../../utils/getStrippedSelectorSource.mjs';
|
|
import isContextFunctionalPseudoClass from '../../utils/isContextFunctionalPseudoClass.mjs';
|
|
import isNonNegativeInteger from '../../utils/isNonNegativeInteger.mjs';
|
|
import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs';
|
|
import optionsMatches from '../../utils/optionsMatches.mjs';
|
|
import report from '../../utils/report.mjs';
|
|
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
import validateOptions from '../../utils/validateOptions.mjs';
|
|
|
|
const ruleName = 'selector-max-id';
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
expected: (selector, max) =>
|
|
`Expected "${selector}" to have no more than ${max} ID ${max === 1 ? 'selector' : 'selectors'}`,
|
|
});
|
|
|
|
const meta = {
|
|
url: 'https://stylelint.io/user-guide/rules/selector-max-id',
|
|
};
|
|
|
|
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
const rule = (primary, secondaryOptions) => {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(
|
|
result,
|
|
ruleName,
|
|
{
|
|
actual: primary,
|
|
possible: isNonNegativeInteger,
|
|
},
|
|
{
|
|
actual: secondaryOptions,
|
|
possible: {
|
|
ignoreContextFunctionalPseudoClasses: [isString, isRegExp],
|
|
checkContextFunctionalPseudoClasses: [isString, isRegExp],
|
|
},
|
|
optional: true,
|
|
},
|
|
);
|
|
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @param {import('postcss-selector-parser').Selector} resolvedSelectorNode
|
|
* @param {import('postcss-selector-parser').Selector} selectorNode
|
|
* @param {import('postcss').Rule} ruleNode
|
|
*/
|
|
function checkSelector(resolvedSelectorNode, selectorNode, ruleNode) {
|
|
const count = resolvedSelectorNode.reduce((total, childNode) => {
|
|
if (childNode.type === 'id') total += 1;
|
|
|
|
return total;
|
|
}, 0);
|
|
|
|
if (count > primary) {
|
|
const { index, endIndex, selector: selectorStr } = getStrippedSelectorSource(selectorNode);
|
|
|
|
report({
|
|
ruleName,
|
|
result,
|
|
node: ruleNode,
|
|
message: messages.expected,
|
|
messageArgs: [selectorStr, primary],
|
|
index,
|
|
endIndex,
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {import('postcss-selector-parser').Node | import('postcss-selector-parser').Container | undefined} node
|
|
* @returns {node is import('postcss-selector-parser').Pseudo}
|
|
*/
|
|
function isUnignoredContextFunctionalPseudoClass(node) {
|
|
return (
|
|
isContextFunctionalPseudoClass(node) &&
|
|
!optionsMatches(secondaryOptions, 'ignoreContextFunctionalPseudoClasses', node.value)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param {import('postcss-selector-parser').Node | import('postcss-selector-parser').Container | undefined} node
|
|
* @returns {node is import('postcss-selector-parser').Pseudo}
|
|
*/
|
|
function isCheckedContextFunctionalPseudoClass(node) {
|
|
return (
|
|
node?.type === 'pseudo' &&
|
|
optionsMatches(secondaryOptions, 'checkContextFunctionalPseudoClasses', node.value)
|
|
);
|
|
}
|
|
|
|
root.walkRules((ruleNode) => {
|
|
if (!isStandardSyntaxRule(ruleNode)) return;
|
|
|
|
flattenNestedSelectorsForRule(ruleNode, result).forEach(({ selector, resolvedSelectors }) => {
|
|
resolvedSelectors.walk((childSelector) => {
|
|
if (!isSelector(childSelector)) return;
|
|
|
|
if (!childSelector.parent) return;
|
|
|
|
if (
|
|
isRoot(childSelector.parent) ||
|
|
isCheckedContextFunctionalPseudoClass(childSelector.parent) ||
|
|
isUnignoredContextFunctionalPseudoClass(childSelector.parent)
|
|
) {
|
|
checkSelector(childSelector, selector, ruleNode);
|
|
}
|
|
});
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
rule.ruleName = ruleName;
|
|
rule.messages = messages;
|
|
rule.meta = meta;
|
|
export default rule;
|