mirror of https://github.com/sveltejs/svelte
fix removing elements that are currently transitioning out (#5849)
parent
82fcdfc2fa
commit
9cc21e3c09
@ -0,0 +1,38 @@
|
|||||||
|
export default {
|
||||||
|
async test({ assert, component, target, window, raf }) {
|
||||||
|
const t = target.querySelector('#t');
|
||||||
|
|
||||||
|
await (component.condition = false);
|
||||||
|
|
||||||
|
let time = 0;
|
||||||
|
raf.tick(time += 25);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div id="t" foo="0.75">TRUE</div>
|
||||||
|
<div id="f">FALSE</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
// toggling back in the middle of the out transition
|
||||||
|
// will reuse the previous element
|
||||||
|
await (component.condition = true);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div id="f">FALSE</div>
|
||||||
|
<div id="t" foo="1">TRUE</div>
|
||||||
|
`);
|
||||||
|
assert.equal(target.querySelector('#t'), t);
|
||||||
|
|
||||||
|
raf.tick(time += 25);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div id="f" foo="0.75">FALSE</div>
|
||||||
|
<div id="t" foo="1">TRUE</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
raf.tick(time += 75);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div id="t" foo="1">TRUE</div>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,18 @@
|
|||||||
|
<script>
|
||||||
|
export let condition = true;
|
||||||
|
|
||||||
|
function foo(node) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.setAttribute('foo', t);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if condition}
|
||||||
|
<div id="t" out:foo>TRUE</div>
|
||||||
|
{:else}
|
||||||
|
<div id="f" out:foo>FALSE</div>
|
||||||
|
{/if}
|
Loading…
Reference in new issue