Skip to content

Commit a2f6ede

Browse files
authoredSep 20, 2024··
fix(ssr): don't render comments in TransitionGroup (#11961)
close #11958
1 parent 6224288 commit a2f6ede

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed
 

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

+20-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('transition-group', () => {
3939
})
4040

4141
// #11514
42-
test('with static tag + comment', () => {
42+
test('with static tag + v-if comment', () => {
4343
expect(
4444
compile(
4545
`<transition-group tag="ul"><div v-for="i in list"/><div v-if="false"></div></transition-group>`,
@@ -60,6 +60,25 @@ describe('transition-group', () => {
6060
`)
6161
})
6262

63+
// #11958
64+
test('with static tag + comment', () => {
65+
expect(
66+
compile(
67+
`<transition-group tag="ul"><div v-for="i in list"/><!--test--></transition-group>`,
68+
).code,
69+
).toMatchInlineSnapshot(`
70+
"const { ssrRenderAttrs: _ssrRenderAttrs, ssrRenderList: _ssrRenderList } = require("vue/server-renderer")
71+
72+
return function ssrRender(_ctx, _push, _parent, _attrs) {
73+
_push(\`<ul\${_ssrRenderAttrs(_attrs)}>\`)
74+
_ssrRenderList(_ctx.list, (i) => {
75+
_push(\`<div></div>\`)
76+
})
77+
_push(\`</ul>\`)
78+
}"
79+
`)
80+
})
81+
6382
test('with dynamic tag', () => {
6483
expect(
6584
compile(

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

+5-8
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export function processChildren(
156156
context: SSRTransformContext,
157157
asFragment = false,
158158
disableNestedFragments = false,
159-
disableCommentAsIfAlternate = false,
159+
disableComment = false,
160160
): void {
161161
if (asFragment) {
162162
context.pushStringPart(`<!--[-->`)
@@ -197,7 +197,9 @@ export function processChildren(
197197
case NodeTypes.COMMENT:
198198
// no need to escape comment here because the AST can only
199199
// contain valid comments.
200-
context.pushStringPart(`<!--${child.content}-->`)
200+
if (!disableComment) {
201+
context.pushStringPart(`<!--${child.content}-->`)
202+
}
201203
break
202204
case NodeTypes.INTERPOLATION:
203205
context.pushStringPart(
@@ -207,12 +209,7 @@ export function processChildren(
207209
)
208210
break
209211
case NodeTypes.IF:
210-
ssrProcessIf(
211-
child,
212-
context,
213-
disableNestedFragments,
214-
disableCommentAsIfAlternate,
215-
)
212+
ssrProcessIf(child, context, disableNestedFragments, disableComment)
216213
break
217214
case NodeTypes.FOR:
218215
ssrProcessFor(child, context, disableNestedFragments)

‎packages/compiler-ssr/src/transforms/ssrVIf.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function ssrProcessIf(
2727
node: IfNode,
2828
context: SSRTransformContext,
2929
disableNestedFragments = false,
30-
disableCommentAsIfAlternate = false,
30+
disableComment = false,
3131
): void {
3232
const [rootBranch] = node.branches
3333
const ifStatement = createIfStatement(
@@ -56,7 +56,7 @@ export function ssrProcessIf(
5656
}
5757
}
5858

59-
if (!currentIf.alternate && !disableCommentAsIfAlternate) {
59+
if (!currentIf.alternate && !disableComment) {
6060
currentIf.alternate = createBlockStatement([
6161
createCallExpression(`_push`, ['`<!---->`']),
6262
])

0 commit comments

Comments
 (0)
Please sign in to comment.