fix(compiler-core): make v-once work with v-if/else-if/else (#2182)

Partial fix for #2035
This commit is contained in:
HcySunYang 2020-10-05 23:58:37 +08:00 committed by GitHub
parent 752ecee407
commit 9499871582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 13 deletions

View File

@ -99,15 +99,26 @@ describe('compiler: v-once transform', () => {
expect(generate(root).code).toMatchSnapshot() expect(generate(root).code).toMatchSnapshot()
}) })
test('with v-if', () => { test('with v-if/else', () => {
const root = transformWithOnce(`<div v-if="true" v-once />`) const root = transformWithOnce(`<div v-if="BOOLEAN" v-once /><p v-else/>`)
expect(root.cached).toBe(1) expect(root.cached).toBe(1)
expect(root.helpers).toContain(SET_BLOCK_TRACKING) expect(root.helpers).toContain(SET_BLOCK_TRACKING)
expect(root.children[0]).toMatchObject({ expect(root.children[0]).toMatchObject({
type: NodeTypes.IF, type: NodeTypes.IF,
// should cache the entire v-if expression, not just a single branch // should cache the entire v-if/else-if/else expression, not just a single branch
codegenNode: { codegenNode: {
type: NodeTypes.JS_CACHE_EXPRESSION type: NodeTypes.JS_CACHE_EXPRESSION,
value: {
type: NodeTypes.JS_CONDITIONAL_EXPRESSION,
consequent: {
type: NodeTypes.VNODE_CALL,
tag: `"div"`
},
alternate: {
type: NodeTypes.VNODE_CALL,
tag: `"p"`
}
}
} }
}) })
}) })

View File

@ -236,7 +236,7 @@ export interface CompoundExpressionNode extends Node {
export interface IfNode extends Node { export interface IfNode extends Node {
type: NodeTypes.IF type: NodeTypes.IF
branches: IfBranchNode[] branches: IfBranchNode[]
codegenNode?: IfConditionalExpression codegenNode?: IfConditionalExpression | CacheExpression // <div v-if v-once>
} }
export interface IfBranchNode extends Node { export interface IfBranchNode extends Node {

View File

@ -20,7 +20,8 @@ import {
IfNode, IfNode,
createVNodeCall, createVNodeCall,
AttributeNode, AttributeNode,
locStub locStub,
CacheExpression
} from '../ast' } from '../ast'
import { createCompilerError, ErrorCodes } from '../errors' import { createCompilerError, ErrorCodes } from '../errors'
import { processExpression } from './transformExpression' import { processExpression } from './transformExpression'
@ -62,13 +63,7 @@ export const transformIf = createStructuralDirectiveTransform(
) as IfConditionalExpression ) as IfConditionalExpression
} else { } else {
// attach this branch's codegen node to the v-if root. // attach this branch's codegen node to the v-if root.
let parentCondition = ifNode.codegenNode! const parentCondition = getParentCondition(ifNode.codegenNode!)
while (
parentCondition.alternate.type ===
NodeTypes.JS_CONDITIONAL_EXPRESSION
) {
parentCondition = parentCondition.alternate
}
parentCondition.alternate = createCodegenNodeForBranch( parentCondition.alternate = createCodegenNodeForBranch(
branch, branch,
key + ifNode.branches.length - 1, key + ifNode.branches.length - 1,
@ -293,3 +288,19 @@ function isSameKey(
} }
return true return true
} }
function getParentCondition(
node: IfConditionalExpression | CacheExpression
): IfConditionalExpression {
while (true) {
if (node.type === NodeTypes.JS_CONDITIONAL_EXPRESSION) {
if (node.alternate.type === NodeTypes.JS_CONDITIONAL_EXPRESSION) {
node = node.alternate
} else {
return node
}
} else if (node.type === NodeTypes.JS_CACHE_EXPRESSION) {
node = node.value as IfConditionalExpression
}
}
}