Skip to content

Commit 2024d11

Browse files
authoredAug 29, 2022
fix(ssr): forward helpers provided by CSS v-bind (#6489)
fix #6201
1 parent 81a7819 commit 2024d11

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
 

‎packages/compiler-ssr/__tests__/ssrInjectCssVars.spec.ts

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { BindingTypes } from '@vue/compiler-dom'
12
import { compile } from '../src'
23

34
describe('ssr: inject <style vars>', () => {
@@ -111,4 +112,25 @@ describe('ssr: inject <style vars>', () => {
111112
}"
112113
`)
113114
})
115+
116+
test('inject helpers', () => {
117+
const result = compile(`<div/>`, {
118+
inline: true,
119+
bindingMetadata: { dynamic: BindingTypes.SETUP_MAYBE_REF },
120+
ssrCssVars: '{ "--hash": (dynamic) }'
121+
})
122+
123+
expect(result.code).toMatchInlineSnapshot(`
124+
"(_ctx, _push, _parent, _attrs) => {
125+
const _cssVars = { style: { \\"--hash\\": (_unref(dynamic)) }}
126+
_push(\`<div\${_ssrRenderAttrs(_mergeProps(_attrs, _cssVars))}></div>\`)
127+
}"
128+
`)
129+
expect(result.ast.helpers).toMatchInlineSnapshot(`
130+
Array [
131+
Symbol(mergeProps),
132+
Symbol(unref),
133+
]
134+
`)
135+
})
114136
})

‎packages/compiler-ssr/src/ssrCodegenTransform.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,17 @@ export function ssrCodegenTransform(ast: RootNode, options: CompilerOptions) {
4040
// we do this instead of inlining the expression to ensure the vars are
4141
// only resolved once per render
4242
if (options.ssrCssVars) {
43+
const cssContext = createTransformContext(createRoot([]), options)
4344
const varsExp = processExpression(
4445
createSimpleExpression(options.ssrCssVars, false),
45-
createTransformContext(createRoot([]), options)
46+
cssContext
4647
)
4748
context.body.push(
4849
createCompoundExpression([`const _cssVars = { style: `, varsExp, `}`])
4950
)
51+
Array.from(cssContext.helpers.keys()).forEach(helper =>
52+
ast.helpers.push(helper)
53+
)
5054
}
5155

5256
const isFragment =

0 commit comments

Comments
 (0)
Please sign in to comment.