| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * Copyright 2018 Gildas Lormeau
- * contact : gildas.lormeau <at> gmail.com
- *
- * This file is part of SingleFile.
- *
- * SingleFile is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SingleFile is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with SingleFile. If not, see <http://www.gnu.org/licenses/>.
- */
- /* global CSSRule */
- this.rulesMinifier = this.rulesMinifier || (() => {
- const REGEXP_PSEUDO_CLASSES = /::after|::before|::first-line|::first-letter|:focus|:focus-within|:hover|:link|:visited|:active/gi;
- return {
- process: doc => {
- const selectorsData = new Set();
- const stats = {
- processed: 0,
- discarded: 0
- };
- doc.querySelectorAll("style").forEach(style => {
- if (style.sheet) {
- const processed = style.sheet.cssRules.length;
- stats.processed += processed;
- style.textContent = processRules(doc, style.sheet.cssRules, selectorsData);
- stats.discarded += processed - style.sheet.cssRules.length;
- }
- });
- return stats;
- }
- };
- function processRules(doc, rules, selectorsData) {
- let stylesheetContent = "";
- if (rules) {
- Array.from(rules).forEach(rule => {
- if (rule.type == CSSRule.MEDIA_RULE) {
- stylesheetContent += "@media " + Array.prototype.join.call(rule.media, ",") + " {";
- stylesheetContent += processRules(doc, rule.cssRules, selectorsData);
- stylesheetContent += "}";
- } else if (rule.type == CSSRule.STYLE_RULE) {
- const selector = getFilteredSelector(rule.selectorText);
- if (selector) {
- try {
- if (selectorsData.has(selector) || doc.querySelector(selector)) {
- stylesheetContent += rule.cssText;
- selectorsData.add(selector);
- }
- } catch (error) {
- stylesheetContent += rule.cssText;
- }
- }
- } else {
- stylesheetContent += rule.cssText;
- }
- });
- }
- return stylesheetContent;
- }
- function getFilteredSelector(selector) {
- if (selector.match(REGEXP_PSEUDO_CLASSES)) {
- let selectors = selector.split(/\s*,\s*/g);
- selector = selectors.map(selector => {
- const simpleSelectors = selector.split(/\s*[ >~+]\s*/g);
- const separators = selector.match(/\s*[ >~+]\s*/g);
- return simpleSelectors.map((selector, selectorIndex) => {
- while (selector.match(REGEXP_PSEUDO_CLASSES)) {
- selector = selector.replace(REGEXP_PSEUDO_CLASSES, "").trim();
- }
- selector = selector.replace(/:?:[^(]+\(\)/g, "");
- if (selector == "") {
- selector = "*";
- }
- return selector + (separators && separators[selectorIndex] ? separators[selectorIndex] : "");
- }).join("");
- }).join(",");
- }
- return selector;
- }
- })();
|