forked from vuejs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(transition/v-show): ensure transition is in persisted mode when u…
…sed with v-show fix vuejs#4845 close vuejs#4852
- Loading branch information
Showing
8 changed files
with
319 additions
and
166 deletions.
There are no files selected for viewing
166 changes: 166 additions & 0 deletions
166
packages/compiler-dom/__tests__/transforms/Transition.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
import { compile } from '../../src' | ||
|
||
describe('Transition multi children warnings', () => { | ||
function checkWarning( | ||
template: string, | ||
shouldWarn: boolean, | ||
message = `<Transition> expects exactly one child element or component.` | ||
) { | ||
const spy = jest.fn() | ||
compile(template.trim(), { | ||
hoistStatic: true, | ||
transformHoist: null, | ||
onError: err => { | ||
spy(err.message) | ||
} | ||
}) | ||
|
||
if (shouldWarn) expect(spy).toHaveBeenCalledWith(message) | ||
else expect(spy).not.toHaveBeenCalled() | ||
} | ||
|
||
test('warns if multiple children', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div>hey</div> | ||
<div>hey</div> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('warns with v-for', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-for="i in items">hey</div> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('warns with multiple v-if + v-for', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-if="a" v-for="i in items">hey</div> | ||
<div v-else v-for="i in items">hey</div> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('warns with template v-if', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<template v-if="ok"></template> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('warns with multiple templates', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<template v-if="a"></template> | ||
<template v-else></template> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('warns if multiple children with v-if', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-if="one">hey</div> | ||
<div v-if="other">hey</div> | ||
</transition> | ||
`, | ||
true | ||
) | ||
}) | ||
|
||
test('does not warn with regular element', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div>hey</div> | ||
</transition> | ||
`, | ||
false | ||
) | ||
}) | ||
|
||
test('does not warn with one single v-if', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-if="a">hey</div> | ||
</transition> | ||
`, | ||
false | ||
) | ||
}) | ||
|
||
test('does not warn with v-if v-else-if v-else', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-if="a">hey</div> | ||
<div v-else-if="b">hey</div> | ||
<div v-else>hey</div> | ||
</transition> | ||
`, | ||
false | ||
) | ||
}) | ||
|
||
test('does not warn with v-if v-else', () => { | ||
checkWarning( | ||
` | ||
<transition> | ||
<div v-if="a">hey</div> | ||
<div v-else>hey</div> | ||
</transition> | ||
`, | ||
false | ||
) | ||
}) | ||
}) | ||
|
||
test('inject persisted when child has v-show', () => { | ||
expect( | ||
compile(` | ||
<transition> | ||
<div v-show="ok" /> | ||
</transition> | ||
`).code | ||
).toMatchSnapshot() | ||
}) | ||
|
||
test('the v-if/else-if/else branches in Transition should ignore comments', () => { | ||
expect( | ||
compile(` | ||
<transition> | ||
<div v-if="a">hey</div> | ||
<!-- this should be ignored --> | ||
<div v-else-if="b">hey</div> | ||
<!-- this should be ignored --> | ||
<div v-else> | ||
<p v-if="c"/> | ||
<!-- this should not be ignored --> | ||
<p v-else/> | ||
</div> | ||
</transition> | ||
`).code | ||
).toMatchSnapshot() | ||
}) |
19 changes: 19 additions & 0 deletions
19
...ots__/warnTransitionChildren.spec.ts.snap → ...rms/__snapshots__/Transition.spec.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
158 changes: 0 additions & 158 deletions
158
packages/compiler-dom/__tests__/transforms/warnTransitionChildren.spec.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.