Skip to content

Commit 5191f13

Browse files
Guillaume Chauyyx990803
Guillaume Chau
authored andcommitted
fix(transition): should not add transition class when cancelled (#7391)
fix #7390
1 parent 0529961 commit 5191f13

File tree

2 files changed

+60
-12
lines changed

2 files changed

+60
-12
lines changed

src/platforms/web/runtime/modules/transition.js

+16-12
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,15 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {
149149
addTransitionClass(el, startClass)
150150
addTransitionClass(el, activeClass)
151151
nextFrame(() => {
152-
addTransitionClass(el, toClass)
153152
removeTransitionClass(el, startClass)
154-
if (!cb.cancelled && !userWantsControl) {
155-
if (isValidDuration(explicitEnterDuration)) {
156-
setTimeout(cb, explicitEnterDuration)
157-
} else {
158-
whenTransitionEnds(el, type, cb)
153+
if (!cb.cancelled) {
154+
addTransitionClass(el, toClass)
155+
if (!userWantsControl) {
156+
if (isValidDuration(explicitEnterDuration)) {
157+
setTimeout(cb, explicitEnterDuration)
158+
} else {
159+
whenTransitionEnds(el, type, cb)
160+
}
159161
}
160162
}
161163
})
@@ -257,13 +259,15 @@ export function leave (vnode: VNodeWithData, rm: Function) {
257259
addTransitionClass(el, leaveClass)
258260
addTransitionClass(el, leaveActiveClass)
259261
nextFrame(() => {
260-
addTransitionClass(el, leaveToClass)
261262
removeTransitionClass(el, leaveClass)
262-
if (!cb.cancelled && !userWantsControl) {
263-
if (isValidDuration(explicitLeaveDuration)) {
264-
setTimeout(cb, explicitLeaveDuration)
265-
} else {
266-
whenTransitionEnds(el, type, cb)
263+
if (!cb.cancelled) {
264+
addTransitionClass(el, leaveToClass)
265+
if (!userWantsControl) {
266+
if (isValidDuration(explicitLeaveDuration)) {
267+
setTimeout(cb, explicitLeaveDuration)
268+
} else {
269+
whenTransitionEnds(el, type, cb)
270+
}
267271
}
268272
}
269273
})

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

+44
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,50 @@ if (!isIE9) {
612612
}).then(done)
613613
})
614614

615+
it('leave transition with v-show: cancelled on next frame', done => {
616+
const vm = new Vue({
617+
template: `
618+
<div>
619+
<transition name="test">
620+
<div v-show="ok" class="test">foo</div>
621+
</transition>
622+
</div>
623+
`,
624+
data: { ok: true }
625+
}).$mount(el)
626+
627+
vm.ok = false
628+
waitForUpdate(() => {
629+
vm.ok = true
630+
}).thenWaitFor(nextFrame).then(() => {
631+
expect(vm.$el.children[0].className).toBe('test test-enter-active test-enter-to')
632+
}).thenWaitFor(duration + buffer).then(() => {
633+
expect(vm.$el.children[0].className).toBe('test')
634+
}).then(done)
635+
})
636+
637+
it('enter transition with v-show: cancelled on next frame', done => {
638+
const vm = new Vue({
639+
template: `
640+
<div>
641+
<transition name="test">
642+
<div v-show="ok" class="test">foo</div>
643+
</transition>
644+
</div>
645+
`,
646+
data: { ok: false }
647+
}).$mount(el)
648+
649+
vm.ok = true
650+
waitForUpdate(() => {
651+
vm.ok = false
652+
}).thenWaitFor(nextFrame).then(() => {
653+
expect(vm.$el.children[0].className).toBe('test test-leave-active test-leave-to')
654+
}).thenWaitFor(duration + buffer).then(() => {
655+
expect(vm.$el.children[0].className).toBe('test')
656+
}).then(done)
657+
})
658+
615659
it('animations', done => {
616660
const vm = new Vue({
617661
template: `

0 commit comments

Comments
 (0)