-
-
Notifications
You must be signed in to change notification settings - Fork 8.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
17 changed files
with
256 additions
and
15 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
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,99 @@ | ||
import { compile } from '../src' | ||
|
||
describe('ssr: inject <style vars>', () => { | ||
test('basic', () => { | ||
expect( | ||
compile(`<div/>`, { | ||
ssrCssVars: `{ color }` | ||
}).code | ||
).toMatchInlineSnapshot(` | ||
"const { mergeProps: _mergeProps } = require(\\"vue\\") | ||
const { ssrResolveCssVars: _ssrResolveCssVars, ssrRenderAttrs: _ssrRenderAttrs } = require(\\"@vue/server-renderer\\") | ||
return function ssrRender(_ctx, _push, _parent, _attrs) { | ||
const _cssVars = ssrResolveCssVars({ color: _ctx.color }) | ||
_push(\`<div\${_ssrRenderAttrs(_mergeProps(_attrs, _cssVars))}></div>\`) | ||
}" | ||
`) | ||
}) | ||
|
||
test('fragment', () => { | ||
expect( | ||
compile(`<div/><div/>`, { | ||
ssrCssVars: `{ color }` | ||
}).code | ||
).toMatchInlineSnapshot(` | ||
"const { ssrResolveCssVars: _ssrResolveCssVars, ssrRenderAttrs: _ssrRenderAttrs } = require(\\"@vue/server-renderer\\") | ||
return function ssrRender(_ctx, _push, _parent, _attrs) { | ||
const _cssVars = ssrResolveCssVars({ color: _ctx.color }) | ||
_push(\`<!--[--><div\${ | ||
_ssrRenderAttrs(_cssVars) | ||
}></div><div\${ | ||
_ssrRenderAttrs(_cssVars) | ||
}></div><!--]-->\`) | ||
}" | ||
`) | ||
}) | ||
|
||
test('passing on to components', () => { | ||
expect( | ||
compile(`<div/><foo/>`, { | ||
ssrCssVars: `{ color }` | ||
}).code | ||
).toMatchInlineSnapshot(` | ||
"const { resolveComponent: _resolveComponent } = require(\\"vue\\") | ||
const { ssrResolveCssVars: _ssrResolveCssVars, ssrRenderAttrs: _ssrRenderAttrs, ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\") | ||
return function ssrRender(_ctx, _push, _parent, _attrs) { | ||
const _component_foo = _resolveComponent(\\"foo\\") | ||
const _cssVars = ssrResolveCssVars({ color: _ctx.color }) | ||
_push(\`<!--[--><div\${_ssrRenderAttrs(_cssVars)}></div>\`) | ||
_push(_ssrRenderComponent(_component_foo, _cssVars, null, _parent)) | ||
_push(\`<!--]-->\`) | ||
}" | ||
`) | ||
}) | ||
|
||
test('v-if branches', () => { | ||
expect( | ||
compile(`<div v-if="ok"/><template v-else><div/><div/></template>`, { | ||
ssrCssVars: `{ color }` | ||
}).code | ||
).toMatchInlineSnapshot(` | ||
"const { mergeProps: _mergeProps } = require(\\"vue\\") | ||
const { ssrResolveCssVars: _ssrResolveCssVars, ssrRenderAttrs: _ssrRenderAttrs } = require(\\"@vue/server-renderer\\") | ||
return function ssrRender(_ctx, _push, _parent, _attrs) { | ||
const _cssVars = ssrResolveCssVars({ color: _ctx.color }) | ||
if (_ctx.ok) { | ||
_push(\`<div\${_ssrRenderAttrs(_mergeProps(_attrs, _cssVars))}></div>\`) | ||
} else { | ||
_push(\`<!--[--><div\${ | ||
_ssrRenderAttrs(_cssVars) | ||
}></div><div\${ | ||
_ssrRenderAttrs(_cssVars) | ||
}></div><!--]-->\`) | ||
} | ||
}" | ||
`) | ||
}) | ||
|
||
test('w/ scopeId', () => { | ||
expect( | ||
compile(`<div/>`, { | ||
ssrCssVars: `{ color }`, | ||
scopeId: 'data-v-foo' | ||
}).code | ||
).toMatchInlineSnapshot(` | ||
"const { mergeProps: _mergeProps } = require(\\"vue\\") | ||
const { ssrResolveCssVars: _ssrResolveCssVars, ssrRenderAttrs: _ssrRenderAttrs } = require(\\"@vue/server-renderer\\") | ||
return function ssrRender(_ctx, _push, _parent, _attrs) { | ||
const _cssVars = ssrResolveCssVars({ color: _ctx.color }, \\"data-v-foo\\") | ||
_push(\`<div\${_ssrRenderAttrs(_mergeProps(_attrs, _cssVars))} data-v-foo></div>\`) | ||
}" | ||
`) | ||
}) | ||
}) |
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
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,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 | ||
}) | ||
} | ||
} |
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
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
Oops, something went wrong.