Skip to content

Commit 68be112

Browse files
committed
Revert "support transition on component with v-show in root node (fix #3431)"
This reverts commit aab560e.
1 parent e08d6b9 commit 68be112

File tree

2 files changed

+7
-66
lines changed

2 files changed

+7
-66
lines changed

src/platforms/web/runtime/directives/show.js

+7-27
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,16 @@
33
import { isIE9 } from 'web/util/index'
44
import { enter, leave } from '../modules/transition'
55

6-
// The v-show directive may appear on a component's parent vnode or its
7-
// inner vnode, and the transition wrapper may be defined outside or inside
8-
// the component. To cater for all possible cases, recursively search for
9-
// possible transition defined on component parent placeholder or inside
10-
// child component.
11-
function detectTransitionNode (vnode: VNode): VNodeWithData {
12-
let parent = vnode
13-
while ((parent = parent.parent)) {
14-
if (hasTransition(parent)) {
15-
return parent
16-
}
17-
}
18-
if (hasTransition(vnode)) {
19-
return vnode
20-
}
21-
while (vnode.child && (vnode = vnode.child._vnode)) {
22-
if (hasTransition(vnode)) {
23-
return vnode
24-
}
25-
}
26-
return vnode
27-
}
28-
29-
function hasTransition (vnode) {
30-
return vnode.data && vnode.data.transition
6+
// recursively search for possible transition defined inside the component root
7+
function locateNode (vnode: VNode): VNodeWithData {
8+
return vnode.child && (!vnode.data || !vnode.data.transition)
9+
? locateNode(vnode.child._vnode)
10+
: vnode
3111
}
3212

3313
export default {
3414
bind (el: any, { value }: VNodeDirective, vnode: VNodeWithData) {
35-
vnode = detectTransitionNode(vnode)
15+
vnode = locateNode(vnode)
3616
const transition = vnode.data && vnode.data.transition
3717
if (value && transition && transition.appear && !isIE9) {
3818
enter(vnode)
@@ -44,7 +24,7 @@ export default {
4424
update (el: any, { value, oldValue }: VNodeDirective, vnode: VNodeWithData) {
4525
/* istanbul ignore if */
4626
if (value === oldValue) return
47-
vnode = detectTransitionNode(vnode)
27+
vnode = locateNode(vnode)
4828
const transition = vnode.data && vnode.data.transition
4929
if (transition && !isIE9) {
5030
if (value) {

test/unit/features/transition/transition.spec.js

-39
Original file line numberDiff line numberDiff line change
@@ -558,45 +558,6 @@ if (!isIE9) {
558558
}).then(done)
559559
})
560560

561-
it('transition with v-show, with transition outside and v-show inside', done => {
562-
const vm = new Vue({
563-
template: `
564-
<div>
565-
<transition name="test">
566-
<test :ok="ok"></test>
567-
</transition>
568-
</div>
569-
`,
570-
data: { ok: true },
571-
components: {
572-
test: {
573-
props: ['ok'],
574-
template: `<div v-show="ok" class="test">foo</div>`
575-
}
576-
}
577-
}).$mount(el)
578-
579-
// should not apply transition on initial render by default
580-
expect(vm.$el.textContent).toBe('foo')
581-
expect(vm.$el.children[0].style.display).toBe('')
582-
vm.ok = false
583-
waitForUpdate(() => {
584-
expect(vm.$el.children[0].className).toBe('test test-leave test-leave-active')
585-
}).thenWaitFor(nextFrame).then(() => {
586-
expect(vm.$el.children[0].className).toBe('test test-leave-active')
587-
}).thenWaitFor(duration + 10).then(() => {
588-
expect(vm.$el.children[0].style.display).toBe('none')
589-
vm.ok = true
590-
}).then(() => {
591-
expect(vm.$el.children[0].style.display).toBe('')
592-
expect(vm.$el.children[0].className).toBe('test test-enter test-enter-active')
593-
}).thenWaitFor(nextFrame).then(() => {
594-
expect(vm.$el.children[0].className).toBe('test test-enter-active')
595-
}).thenWaitFor(duration + 10).then(() => {
596-
expect(vm.$el.children[0].className).toBe('test')
597-
}).then(done)
598-
})
599-
600561
it('leaveCancelled (v-show only)', done => {
601562
const spy = jasmine.createSpy('leaveCancelled')
602563
const vm = new Vue({

0 commit comments

Comments
 (0)