Skip to content

Commit d122cf5

Browse files
committed
feat: 🎸 protect .putRaw from unknown pseudo-selectors
1 parent 69f4a76 commit d122cf5

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

‎docs/Installation.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The `create()` function accepts an options object with the following keys:
2929
- `pfx` — optional, string, prefix to add to all generated class and animation names, defaults to `_`.
3030
- `h` — optional, hyperscript function of your virtual DOM library. Only necessary if you are using addons that require it.
3131
- `sh` — optional, DOM style sheet element, useful when re-hydrating server rendered styles.
32+
- `verbose` — optional, boolean, whether to be chatty in console in DEV mode.
3233

3334

3435
```js

‎index.js

+19-4
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,34 @@ exports.create = function (config) {
5858
if (process.env.NODE_ENV !== 'production') {
5959
renderer.sh.setAttribute('data-nano-css-dev', '');
6060

61-
// Test style sheet used in dev mode to test if .insetRule() would throw.
61+
// Test style sheet used in DEV mode to test if .insetRule() would throw.
6262
renderer.shTest = document.createElement('style');
6363
renderer.shTest.setAttribute('data-nano-css-dev-tests', '');
6464
document.head.appendChild(renderer.shTest);
6565
}
6666

6767
renderer.putRaw = function (rawCssRule) {
68+
// .insertRule() is faster than .appendChild(), that's why we use it in PROD.
69+
// But CSS injected using .insertRule() is not displayed in Chrome Devtools,
70+
// that's why we use .appendChild in DEV.
6871
if (process.env.NODE_ENV === 'production') {
6972
var sheet = renderer.sh.sheet;
70-
sheet.insertRule(rawCssRule, sheet.cssRules.length);
73+
74+
// Unknown pseudo-selectors will throw, this try/catch swallows all errors.
75+
try {
76+
sheet.insertRule(rawCssRule, sheet.cssRules.length);
77+
// eslint-disable-next-line no-empty
78+
} catch (error) {}
7179
} else {
72-
// Test if .insertRule() works (does not throw).
73-
renderer.shTest.sheet.insertRule(rawCssRule, renderer.shTest.sheet.cssRules.length);
80+
// Test if .insertRule() works in dev mode. Unknown pseudo-selectors will throw when
81+
// .insertRule() is used, but .appendChild() will not throw.
82+
try {
83+
renderer.shTest.sheet.insertRule(rawCssRule, renderer.shTest.sheet.cssRules.length);
84+
} catch (error) {
85+
if (config.verbose) {
86+
console.error(error);
87+
}
88+
}
7489

7590
// Insert pretty-printed CSS for dev mode.
7691
renderer.sh.appendChild(document.createTextNode(rawCssRule));

0 commit comments

Comments
 (0)