Skip to content

Commit

Permalink
fix(slots): ensure different branches of dynamic slots have different…
Browse files Browse the repository at this point in the history
… keys

fix #6202
  • Loading branch information
yyx990803 committed Aug 30, 2022
1 parent 96eb745 commit 00036bb
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 20 deletions.
Expand Up @@ -43,7 +43,8 @@ export function render(_ctx, _cache) {
name: \\"foo\\",
fn: _withCtx(() => [
_createElementVNode(\\"div\\")
])
]),
key: \\"0\\"
}
: undefined,
_renderList(_ctx.list, (i) => {
Expand Down
Expand Up @@ -56,7 +56,8 @@ return function render(_ctx, _cache) {
(_ctx.ok)
? {
name: \\"one\\",
fn: _withCtx((props) => [_toDisplayString(props)])
fn: _withCtx((props) => [_toDisplayString(props)]),
key: \\"0\\"
}
: undefined
]), 1024 /* DYNAMIC_SLOTS */))
Expand All @@ -76,16 +77,19 @@ return function render(_ctx, _cache) {
ok
? {
name: \\"one\\",
fn: _withCtx(() => [\\"foo\\"])
fn: _withCtx(() => [\\"foo\\"]),
key: \\"0\\"
}
: orNot
? {
name: \\"two\\",
fn: _withCtx((props) => [\\"bar\\"])
fn: _withCtx((props) => [\\"bar\\"]),
key: \\"1\\"
}
: {
name: \\"one\\",
fn: _withCtx(() => [\\"baz\\"])
fn: _withCtx(() => [\\"baz\\"]),
key: \\"2\\"
}
]), 1024 /* DYNAMIC_SLOTS */))
}
Expand All @@ -105,7 +109,8 @@ return function render(_ctx, _cache) {
ok
? {
name: \\"one\\",
fn: _withCtx(() => [\\"hello\\"])
fn: _withCtx(() => [\\"hello\\"]),
key: \\"0\\"
}
: undefined
]), 1024 /* DYNAMIC_SLOTS */))
Expand Down
15 changes: 10 additions & 5 deletions packages/compiler-core/__tests__/transforms/vSlot.spec.ts
Expand Up @@ -568,7 +568,8 @@ describe('compiler: transform component slots', () => {
fn: {
type: NodeTypes.JS_FUNCTION_EXPRESSION,
returns: [{ type: NodeTypes.TEXT, content: `hello` }]
}
},
key: `0`
}),
alternate: {
content: `undefined`,
Expand Down Expand Up @@ -616,7 +617,8 @@ describe('compiler: transform component slots', () => {
content: { content: `props` }
}
]
}
},
key: `0`
}),
alternate: {
content: `undefined`,
Expand Down Expand Up @@ -660,7 +662,8 @@ describe('compiler: transform component slots', () => {
type: NodeTypes.JS_FUNCTION_EXPRESSION,
params: undefined,
returns: [{ type: NodeTypes.TEXT, content: `foo` }]
}
},
key: `0`
}),
alternate: {
type: NodeTypes.JS_CONDITIONAL_EXPRESSION,
Expand All @@ -671,15 +674,17 @@ describe('compiler: transform component slots', () => {
type: NodeTypes.JS_FUNCTION_EXPRESSION,
params: { content: `props` },
returns: [{ type: NodeTypes.TEXT, content: `bar` }]
}
},
key: `1`
}),
alternate: createObjectMatcher({
name: `one`,
fn: {
type: NodeTypes.JS_FUNCTION_EXPRESSION,
params: undefined,
returns: [{ type: NodeTypes.TEXT, content: `baz` }]
}
},
key: `2`
})
}
}
Expand Down
24 changes: 18 additions & 6 deletions packages/compiler-core/src/transforms/vSlot.ts
Expand Up @@ -160,6 +160,7 @@ export function buildSlots(
let hasNamedDefaultSlot = false
const implicitDefaultChildren: TemplateChildNode[] = []
const seenSlotNames = new Set<string>()
let conditionalBranchIndex = 0

for (let i = 0; i < children.length; i++) {
const slotElement = children[i]
Expand Down Expand Up @@ -210,7 +211,7 @@ export function buildSlots(
dynamicSlots.push(
createConditionalExpression(
vIf.exp!,
buildDynamicSlot(slotName, slotFunction),
buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++),
defaultFallback
)
)
Expand Down Expand Up @@ -243,10 +244,14 @@ export function buildSlots(
conditional.alternate = vElse.exp
? createConditionalExpression(
vElse.exp,
buildDynamicSlot(slotName, slotFunction),
buildDynamicSlot(
slotName,
slotFunction,
conditionalBranchIndex++
),
defaultFallback
)
: buildDynamicSlot(slotName, slotFunction)
: buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++)
} else {
context.onError(
createCompilerError(ErrorCodes.X_V_ELSE_NO_ADJACENT_IF, vElse.loc)
Expand Down Expand Up @@ -369,12 +374,19 @@ export function buildSlots(

function buildDynamicSlot(
name: ExpressionNode,
fn: FunctionExpression
fn: FunctionExpression,
index?: number
): ObjectExpression {
return createObjectExpression([
const props = [
createObjectProperty(`name`, name),
createObjectProperty(`fn`, fn)
])
]
if (index != null) {
props.push(
createObjectProperty(`key`, createSimpleExpression(String(index), true))
)
}
return createObjectExpression(props)
}

function hasForwardedSlots(children: TemplateChildNode[]): boolean {
Expand Down
3 changes: 2 additions & 1 deletion packages/compiler-ssr/__tests__/ssrComponent.spec.ts
Expand Up @@ -166,7 +166,8 @@ describe('ssr: components', () => {
_createTextVNode(\\"foo\\")
]
}
})
}),
key: \\"0\\"
}
: undefined
]), _parent))
Expand Down
9 changes: 9 additions & 0 deletions packages/runtime-core/__tests__/helpers/createSlots.spec.ts
Expand Up @@ -17,6 +17,15 @@ describe('createSlot', () => {
expect(actual).toEqual({ descriptor: slot })
})

it('should attach key', () => {
const dynamicSlot = [{ name: 'descriptor', fn: slot, key: '1' }]

const actual = createSlots(record, dynamicSlot)
const ret = actual.descriptor()
// @ts-ignore
expect(ret.key).toBe('1')
})

it('should add all slots to the record', () => {
const dynamicSlot = [
{ name: 'descriptor', fn: slot },
Expand Down
11 changes: 10 additions & 1 deletion packages/runtime-core/src/helpers/createSlots.ts
Expand Up @@ -4,6 +4,7 @@ import { isArray } from '@vue/shared'
interface CompiledSlotDescriptor {
name: string
fn: Slot
key?: string
}

/**
Expand All @@ -27,7 +28,15 @@ export function createSlots(
}
} else if (slot) {
// conditional single slot generated by <template v-if="..." #foo>
slots[slot.name] = slot.fn
slots[slot.name] = slot.key
? (...args: any[]) => {
const res = slot.fn(...args)
// attach branch key so each conditional branch is considered a
// different fragment
;(res as any).key = slot.key
return res
}
: slot.fn
}
}
return slots
Expand Down
9 changes: 8 additions & 1 deletion packages/runtime-core/src/helpers/renderSlot.ts
Expand Up @@ -66,7 +66,14 @@ export function renderSlot(
const validSlotContent = slot && ensureValidVNode(slot(props))
const rendered = createBlock(
Fragment,
{ key: props.key || `_${name}` },
{
key:
props.key ||
// slot content array of a dynamic conditional slot may have a branch
// key attached in the `createSlots` helper, respect that
(validSlotContent && (validSlotContent as any).key) ||
`_${name}`
},
validSlotContent || (fallback ? fallback() : []),
validSlotContent && (slots as RawSlots)._ === SlotFlags.STABLE
? PatchFlags.STABLE_FRAGMENT
Expand Down

0 comments on commit 00036bb

Please sign in to comment.