Urara-Blog/node_modules/.pnpm-store/v3/files/4b/fdff5a232fe3fdcbd464dadbdc925c6c8ddc6999395a6c153b4e4ea49d3694f44c109f8b4ec3082b17e4e4b19ee10842d192f0d63acbab6201ca31aa13593b
2022-08-14 01:14:53 +08:00

50 lines
1.2 KiB
Text

'use strict';
const parser = require('postcss-selector-parser');
const exists = require('../exists');
const isMixin = require('../isMixin');
const BasePlugin = require('../plugin');
const { OP_9 } = require('../dictionary/browsers');
const { SELECTOR } = require('../dictionary/identifiers');
const { RULE } = require('../dictionary/postcss');
const { HTML } = require('../dictionary/tags');
module.exports = class HtmlFirstChild extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result) {
super([OP_9], [RULE], result);
}
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule) {
if (isMixin(rule)) {
return;
}
parser(this.analyse(rule)).processSync(rule.selector);
}
/**
* @param {import('postcss').Rule} rule
* @return {parser.SyncProcessor<void>}
*/
analyse(rule) {
return (selectors) => {
selectors.each((selector) => {
if (
exists(selector, 0, HTML) &&
exists(selector, 1, ':first-child') &&
exists(selector, 2, ' ') &&
selector.at(3)
) {
this.push(rule, {
identifier: SELECTOR,
hack: selector.toString(),
});
}
});
};
}
};