From accf8396ae1c9dd49759ba0546483f1d2c70c9bc Mon Sep 17 00:00:00 2001 From: edison Date: Mon, 29 Apr 2024 13:50:49 +0800 Subject: [PATCH] fix(Transition): re-fix #10620 (#10832) revert #10632 re-fix #10620 close #10827 --- .../components/BaseTransition.spec.ts | 37 ------------ packages/runtime-core/__tests__/hmr.spec.ts | 2 +- .../src/components/BaseTransition.ts | 2 +- .../runtime-core/src/components/KeepAlive.ts | 2 +- packages/vue/__tests__/e2e/Transition.spec.ts | 57 +++++++++++++++++++ 5 files changed, 60 insertions(+), 40 deletions(-) diff --git a/packages/runtime-core/__tests__/components/BaseTransition.spec.ts b/packages/runtime-core/__tests__/components/BaseTransition.spec.ts index 1923d161897..aaeae3fb4f0 100644 --- a/packages/runtime-core/__tests__/components/BaseTransition.spec.ts +++ b/packages/runtime-core/__tests__/components/BaseTransition.spec.ts @@ -7,7 +7,6 @@ import { h, nextTick, nodeOps, - onUnmounted, ref, render, serialize, @@ -769,42 +768,6 @@ describe('BaseTransition', () => { test('w/ KeepAlive', async () => { await runTestWithKeepAlive(testOutIn) }) - - test('w/ KeepAlive + unmount innerChild', async () => { - const unmountSpy = vi.fn() - const includeRef = ref(['TrueBranch']) - const trueComp = { - name: 'TrueBranch', - setup() { - onUnmounted(unmountSpy) - const count = ref(0) - return () => h('div', count.value) - }, - } - - const toggle = ref(true) - const { props } = mockProps({ mode: 'out-in' }, true /*withKeepAlive*/) - const root = nodeOps.createElement('div') - const App = { - render() { - return h(BaseTransition, props, () => { - return h( - KeepAlive, - { include: includeRef.value }, - toggle.value ? h(trueComp) : h('div'), - ) - }) - }, - } - render(h(App), root) - - // trigger toggle - toggle.value = false - includeRef.value = [] - - await nextTick() - expect(unmountSpy).toHaveBeenCalledTimes(1) - }) }) // #6835 diff --git a/packages/runtime-core/__tests__/hmr.spec.ts b/packages/runtime-core/__tests__/hmr.spec.ts index 000fbf40bf8..619147d55c1 100644 --- a/packages/runtime-core/__tests__/hmr.spec.ts +++ b/packages/runtime-core/__tests__/hmr.spec.ts @@ -356,7 +356,7 @@ describe('hot module replacement', () => { triggerEvent(root.children[1] as TestElement, 'click') await nextTick() await new Promise(r => setTimeout(r, 0)) - expect(serializeInner(root)).toBe(``) + expect(serializeInner(root)).toBe(``) expect(unmountSpy).toHaveBeenCalledTimes(1) expect(mountSpy).toHaveBeenCalledTimes(1) expect(activeSpy).toHaveBeenCalledTimes(1) diff --git a/packages/runtime-core/src/components/BaseTransition.ts b/packages/runtime-core/src/components/BaseTransition.ts index 8fa272d2613..070418a19a0 100644 --- a/packages/runtime-core/src/components/BaseTransition.ts +++ b/packages/runtime-core/src/components/BaseTransition.ts @@ -224,7 +224,7 @@ const BaseTransitionImpl: ComponentOptions = { // update old tree's hooks in case of dynamic transition setTransitionHooks(oldInnerChild, leavingHooks) // switching between different views - if (mode === 'out-in') { + if (mode === 'out-in' && innerChild.type !== Comment) { state.isLeaving = true // return placeholder node and queue update when leave finishes leavingHooks.afterLeave = () => { diff --git a/packages/runtime-core/src/components/KeepAlive.ts b/packages/runtime-core/src/components/KeepAlive.ts index 7697096bcd7..db6088cf5c6 100644 --- a/packages/runtime-core/src/components/KeepAlive.ts +++ b/packages/runtime-core/src/components/KeepAlive.ts @@ -254,7 +254,7 @@ const KeepAliveImpl: ComponentOptions = { pendingCacheKey = null if (!slots.default) { - return (current = null) + return null } const children = slots.default() diff --git a/packages/vue/__tests__/e2e/Transition.spec.ts b/packages/vue/__tests__/e2e/Transition.spec.ts index e8d6d1e049e..b2c1ba572dc 100644 --- a/packages/vue/__tests__/e2e/Transition.spec.ts +++ b/packages/vue/__tests__/e2e/Transition.spec.ts @@ -1214,6 +1214,63 @@ describe('e2e: Transition', () => { }, E2E_TIMEOUT, ) + + test( + 'w/ KeepAlive + unmount innerChild', + async () => { + const unmountSpy = vi.fn() + await page().exposeFunction('unmountSpy', unmountSpy) + await page().evaluate(() => { + const { unmountSpy } = window as any + const { createApp, ref, h, onUnmounted } = (window as any).Vue + createApp({ + template: ` +
+ + + + + +
+ + `, + components: { + TrueBranch: { + name: 'TrueBranch', + setup() { + onUnmounted(unmountSpy) + const count = ref(0) + return () => h('div', count.value) + }, + }, + }, + setup: () => { + const includeRef = ref(['TrueBranch']) + const toggle = ref(true) + const click = () => { + toggle.value = !toggle.value + if (toggle.value) { + includeRef.value = ['TrueBranch'] + } else { + includeRef.value = [] + } + } + return { toggle, click, unmountSpy, includeRef } + }, + }).mount('#app') + }) + + await transitionFinish() + expect(await html('#container')).toBe('
0
') + + await click('#toggleBtn') + + await transitionFinish() + expect(await html('#container')).toBe('') + expect(unmountSpy).toBeCalledTimes(1) + }, + E2E_TIMEOUT, + ) }) describe('transition with Suspense', () => {