UNPKG

stylelint

Version:
84 lines (73 loc) 2.53 kB
import resolveNestedSelector from "postcss-resolve-nested-selector" import _ from "lodash" import { isStandardSyntaxRule, isStandardSyntaxSelector, parseSelector, report, ruleMessages, validateOptions, } from "../../utils" export const ruleName = "selector-class-pattern" export const messages = ruleMessages(ruleName, { expected: selectorValue => `Expected class selector ".${selectorValue}" to match specified pattern`, }) export default function (pattern, options) { return (root, result) => { const validOptions = validateOptions(result, ruleName, { actual: pattern, possible: [ _.isRegExp, _.isString ], }, { actual: options, possible: { resolveNestedSelectors: _.isBoolean, }, optional: true, }) if (!validOptions) { return } const shouldResolveNestedSelectors = _.get(options, "resolveNestedSelectors") const normalizedPattern = (_.isString(pattern)) ? new RegExp(pattern) : pattern root.walkRules(rule => { if (!isStandardSyntaxRule(rule)) { return } const { selector } = rule if (!isStandardSyntaxSelector(selector)) { return } // Only bother resolving selectors that have an interpolating & if (shouldResolveNestedSelectors && hasInterpolatingAmpersand(selector)) { resolveNestedSelector(selector, rule).forEach(selector => { parseSelector(selector, result, rule, s => checkSelector(s, rule)) }) } else { parseSelector(selector, result, rule, s => checkSelector(s, rule)) } }) function checkSelector(fullSelector, rule) { fullSelector.walkClasses(classNode => { const { value, sourceIndex } = classNode if (normalizedPattern.test(value)) { return } report({ result, ruleName, message: messages.expected(value), node: rule, index: sourceIndex, }) }) } } } // An "interpolating ampersand" means an "&" used to interpolate // within another simple selector, rather than an "&" that // stands on its own as a simple selector function hasInterpolatingAmpersand(selector) { for (let i = 0, l = selector.length; i < l; i++) { if (selector[i] !== "&") { continue } if (!_.isUndefined(selector[i - 1]) && !isCombinator(selector[i - 1])) { return true } if (!_.isUndefined(selector[i + 1]) && !isCombinator(selector[i + 1])) { return true } } return false } function isCombinator(x) { return /[\s+>~]/.test(x) }