-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
301 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
'use strict'; | ||
|
||
const { querySelectorAll, closestByName } = require('../lib/xast.js'); | ||
const { getCssStr, setCssStr } = require('../lib/css-tools'); | ||
|
||
exports.type = 'full'; | ||
exports.active = true; | ||
exports.description = 'merge multiple style elements into one'; | ||
|
||
/** | ||
* Merge multiple style elements into one. | ||
* | ||
* @param {Object} document document element | ||
* | ||
* @author strarsis <[email protected]> | ||
*/ | ||
exports.fn = function (document) { | ||
// collect <style/>s with valid type attribute (preserve order) | ||
const styleElements = querySelectorAll(document, 'style'); | ||
|
||
// no <styles/>s, nothing to do | ||
if (styleElements.length === 0) { | ||
return document; | ||
} | ||
|
||
const styles = []; | ||
for (const styleElement of styleElements) { | ||
if ( | ||
styleElement.attributes.type && | ||
styleElement.attributes.type !== 'text/css' | ||
) { | ||
// skip <style> with invalid type attribute | ||
continue; | ||
} | ||
|
||
if (closestByName(styleElement, 'foreignObject')) { | ||
// skip <foreignObject> content | ||
continue; | ||
} | ||
|
||
const cssString = getCssStr(styleElement); | ||
|
||
styles.push({ | ||
styleElement: styleElement, | ||
|
||
mq: styleElement.attributes.media, | ||
cssStr: cssString, | ||
}); | ||
} | ||
|
||
const collectedStyles = []; | ||
for (let styleNo = 0; styleNo < styles.length; styleNo += 1) { | ||
const style = styles[styleNo]; | ||
|
||
if (style.mq) { | ||
const wrappedStyles = `@media ${style.mq}{${style.cssStr}}`; | ||
collectedStyles.push(wrappedStyles); | ||
} else { | ||
collectedStyles.push(style.cssStr); | ||
} | ||
|
||
// remove all processed style elements – except the first one | ||
if (styleNo > 0) { | ||
removeFromParent(style.styleElement); | ||
} | ||
} | ||
const collectedStylesString = collectedStyles.join(''); | ||
|
||
// combine collected styles in the first style element | ||
const firstStyle = styles[0]; | ||
delete firstStyle.styleElement.attributes.media; // remove media mq attribute as CSS media queries are used | ||
if (collectedStylesString.trim().length > 0) { | ||
setCssStr(firstStyle.styleElement, collectedStylesString); | ||
} else { | ||
removeFromParent(firstStyle.styleElement); | ||
} | ||
|
||
return document; | ||
}; | ||
|
||
function removeFromParent(element) { | ||
const parentElement = element.parentNode; | ||
return parentElement.children.splice( | ||
parentElement.children.indexOf(element), | ||
1 | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.