Skip to content

Commit 4c8f675

Browse files
authored
fix: PostCSS mixins cause style parsing to break (#425)
Replaced `extract-from-css` which is outdated (7yo) with `css-tree` Resolves #424
1 parent 6edfa9c commit 4c8f675

File tree

10 files changed

+97
-860
lines changed

10 files changed

+97
-860
lines changed

e2e/2.x/custom-transformers/scss-transformer.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
const cssExtract = require('extract-from-css')
1+
const cssTree = require('css-tree')
2+
23
module.exports = {
34
preprocess: function preprocess(src, filepath, config, attrs) {
45
return `${src}\n .g{width: 10px}`
56
},
67
postprocess: function postprocess(src, filepath, config, attrs) {
7-
const cssNames = cssExtract.extractClasses(src)
8-
const obj = {}
9-
for (let i = 0, l = cssNames.length; i < l; i++) {
10-
obj[cssNames[i]] = cssNames[i]
11-
}
8+
const ast = cssTree.parse(src)
9+
const obj = cssTree
10+
.findAll(ast, node => node.type === 'ClassSelector')
11+
.reduce((acc, cssNode) => {
12+
acc[cssNode.name] = cssNode.name
13+
14+
return acc
15+
}, {})
1216

1317
if (!attrs.themed) {
1418
return JSON.stringify(obj)

e2e/2.x/style/components/PostCss.vue

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
<template>
22
<section>
3-
<div :class="$style.a"></div>
4-
<div :class="$style.b"></div>
3+
<div :class="$style.a" />
4+
<div :class="$style.b" />
55
</section>
66
</template>
77

88
<style module lang="postcss">
9+
:root {
10+
--theme_color_background_base: #f00;
11+
}
12+
13+
@define-mixin hover {
14+
outline: none;
15+
box-shadow: 0 0 0 2px var(--theme_color_background_base);
16+
}
17+
918
.a {
1019
background: color(purple a(90%));
1120
}
21+
22+
.a:hover {
23+
@mixin hover;
24+
}
1225
</style>
1326

1427
<style module lang="pcss">

e2e/3.x/custom-transformers/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"@babel/core": "^7.9.0",
1414
"@babel/preset-env": "^7.9.0",
1515
"@vue/test-utils": "^2.0.0-rc.10",
16+
"@vue/vue3-jest": "^27.0.0-alpha.1",
1617
"babel-jest": "^27.0.0",
17-
"extract-from-css": "^0.4.4",
18+
"css-tree": "^2.0.1",
1819
"jest": "^27.0.0",
1920
"postcss": "^7.0.13",
2021
"postcss-color-function": "^4.0.1",
21-
"sass": "^1.23.7",
22-
"@vue/vue3-jest": "^27.0.0-alpha.1"
22+
"sass": "^1.23.7"
2323
},
2424
"jest": {
2525
"testEnvironment": "jsdom",

e2e/3.x/custom-transformers/scss-transformer.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
const cssExtract = require('extract-from-css')
1+
const cssTree = require('css-tree')
2+
23
module.exports = {
34
preprocess: function preprocess(src, filepath, config, attrs) {
45
return `${src}\n .g{width: 10px}`
56
},
67
postprocess: function postprocess(src, filepath, config, attrs) {
7-
const cssNames = cssExtract.extractClasses(src)
8-
const obj = {}
9-
for (let i = 0, l = cssNames.length; i < l; i++) {
10-
obj[cssNames[i]] = cssNames[i]
11-
}
8+
const ast = cssTree.parse(src)
9+
const obj = cssTree
10+
.findAll(ast, node => node.type === 'ClassSelector')
11+
.reduce((acc, cssNode) => {
12+
acc[cssNode.name] = cssNode.name
13+
14+
return acc
15+
}, {})
1216

1317
if (!attrs.themed) {
1418
return JSON.stringify(obj)

e2e/3.x/style/components/PostCss.vue

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<section>
3-
<div :class="$style.c"></div>
4-
<div :class="style.d"></div>
3+
<div :class="$style.c" />
4+
<div :class="style.d" />
55
</section>
66
</template>
77

@@ -18,9 +18,22 @@ export default defineComponent({
1818
</script>
1919

2020
<style module lang="postcss">
21+
:root {
22+
--theme_color_background_base: #f00;
23+
}
24+
25+
@define-mixin hover {
26+
outline: none;
27+
box-shadow: 0 0 0 2px var(--theme_color_background_base);
28+
}
29+
2130
.c {
2231
background: color(purple a(90%));
2332
}
33+
34+
.c:hover {
35+
@mixin hover;
36+
}
2437
</style>
2538

2639
<style module lang="pcss">

packages/vue2-jest/lib/process-style.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path')
22
const fs = require('fs')
3-
const cssExtract = require('extract-from-css')
3+
const cssTree = require('css-tree')
44
const getVueJestConfig = require('./utils').getVueJestConfig
55
const compileStyle = require('@vue/component-compiler-utils').compileStyle
66
const applyModuleNameMapper = require('./module-name-mapper-helper')
@@ -21,12 +21,15 @@ function getGlobalResources(resources, lang) {
2121
}
2222

2323
function extractClassMap(cssCode) {
24-
const cssNames = cssExtract.extractClasses(cssCode)
25-
const cssMap = {}
26-
for (let i = 0, l = cssNames.length; i < l; i++) {
27-
cssMap[cssNames[i]] = cssNames[i]
28-
}
29-
return cssMap
24+
const ast = cssTree.parse(cssCode)
25+
26+
return cssTree
27+
.findAll(ast, node => node.type === 'ClassSelector')
28+
.reduce((acc, cssNode) => {
29+
acc[cssNode.name] = cssNode.name
30+
31+
return acc
32+
}, {})
3033
}
3134

3235
function getPreprocessOptions(lang, filePath, jestConfig) {

packages/vue2-jest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
5555
"@vue/component-compiler-utils": "^3.1.0",
5656
"chalk": "^2.1.0",
57-
"extract-from-css": "^0.4.4",
57+
"css-tree": "^2.0.1",
5858
"source-map": "0.5.6"
5959
},
6060
"repository": {

packages/vue3-jest/lib/process-style.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { compileStyle } = require('@vue/compiler-sfc')
22
const path = require('path')
33
const fs = require('fs')
4-
const cssExtract = require('extract-from-css')
4+
const cssTree = require('css-tree')
55
const getVueJestConfig = require('./utils').getVueJestConfig
66
const applyModuleNameMapper = require('./module-name-mapper-helper')
77
const getCustomTransformer = require('./utils').getCustomTransformer
@@ -21,12 +21,15 @@ function getGlobalResources(resources, lang) {
2121
}
2222

2323
function extractClassMap(cssCode) {
24-
const cssNames = cssExtract.extractClasses(cssCode)
25-
const cssMap = {}
26-
for (let i = 0, l = cssNames.length; i < l; i++) {
27-
cssMap[cssNames[i]] = cssNames[i]
28-
}
29-
return cssMap
24+
const ast = cssTree.parse(cssCode)
25+
26+
return cssTree
27+
.findAll(ast, node => node.type === 'ClassSelector')
28+
.reduce((acc, cssNode) => {
29+
acc[cssNode.name] = cssNode.name
30+
31+
return acc
32+
}, {})
3033
}
3134

3235
function getPreprocessOptions(lang, filePath, jestConfig) {

packages/vue3-jest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
5656
"chalk": "^2.1.0",
5757
"convert-source-map": "^1.6.0",
58-
"extract-from-css": "^0.4.4",
58+
"css-tree": "^2.0.1",
5959
"source-map": "0.5.6",
6060
"tsconfig": "^7.0.0"
6161
},

0 commit comments

Comments
 (0)