feat: ssr support for <style vars>
This commit is contained in:
57
packages/compiler-ssr/src/transforms/ssrInjectCssVars.ts
Normal file
57
packages/compiler-ssr/src/transforms/ssrInjectCssVars.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import {
|
||||
NodeTransform,
|
||||
NodeTypes,
|
||||
ElementTypes,
|
||||
locStub,
|
||||
createSimpleExpression,
|
||||
RootNode,
|
||||
TemplateChildNode,
|
||||
findDir
|
||||
} from '@vue/compiler-dom'
|
||||
import { SSR_RESOLVE_CSS_VARS } from '../runtimeHelpers'
|
||||
|
||||
export const ssrInjectCssVars: NodeTransform = (node, context) => {
|
||||
if (!context.ssrCssVars) {
|
||||
return
|
||||
}
|
||||
|
||||
// _cssVars is initailized once per render function
|
||||
// the code is injected in ssrCodegenTrasnform when creating the
|
||||
// ssr transform context
|
||||
if (node.type === NodeTypes.ROOT) {
|
||||
context.identifiers._cssVars = 1
|
||||
}
|
||||
|
||||
const parent = context.parent
|
||||
if (!parent || parent.type !== NodeTypes.ROOT) {
|
||||
return
|
||||
}
|
||||
|
||||
context.helper(SSR_RESOLVE_CSS_VARS)
|
||||
|
||||
if (node.type === NodeTypes.IF_BRANCH) {
|
||||
for (const child of node.children) {
|
||||
injectCssVars(child)
|
||||
}
|
||||
} else {
|
||||
injectCssVars(node)
|
||||
}
|
||||
}
|
||||
|
||||
function injectCssVars(node: RootNode | TemplateChildNode) {
|
||||
if (
|
||||
node.type === NodeTypes.ELEMENT &&
|
||||
(node.tagType === ElementTypes.ELEMENT ||
|
||||
node.tagType === ElementTypes.COMPONENT) &&
|
||||
!findDir(node, 'for')
|
||||
) {
|
||||
node.props.push({
|
||||
type: NodeTypes.DIRECTIVE,
|
||||
name: 'bind',
|
||||
arg: undefined,
|
||||
exp: createSimpleExpression(`_cssVars`, false),
|
||||
modifiers: [],
|
||||
loc: locStub
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user