mirror of https://github.com/sveltejs/svelte
fix updating of slot contents when aborting transition (#6042)
parent
93a5511447
commit
ebd21ae6d3
@ -0,0 +1,18 @@
|
||||
<script>
|
||||
export let visible;
|
||||
|
||||
function fade(node) {
|
||||
return {
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.foo = t;
|
||||
}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
{#if visible}
|
||||
<div transition:fade>
|
||||
<slot></slot>
|
||||
</div>
|
||||
{/if}
|
@ -0,0 +1,23 @@
|
||||
export default {
|
||||
html: `
|
||||
<div>Foo</div>
|
||||
`,
|
||||
|
||||
async test({ assert, component, target, window, raf }) {
|
||||
await component.hide();
|
||||
const div = target.querySelector('div');
|
||||
|
||||
raf.tick(50);
|
||||
assert.equal(div.foo, 0.5);
|
||||
|
||||
await component.show();
|
||||
|
||||
assert.htmlEqual(target.innerHTML, '<div>Bar</div>');
|
||||
|
||||
raf.tick(75);
|
||||
assert.equal(div.foo, 0.75);
|
||||
|
||||
raf.tick(100);
|
||||
assert.equal(div.foo, 1);
|
||||
}
|
||||
};
|
@ -0,0 +1,18 @@
|
||||
<script>
|
||||
import Nested from './Nested.svelte';
|
||||
|
||||
let name = 'Foo';
|
||||
let visible = true;
|
||||
|
||||
export function show() {
|
||||
visible = true;
|
||||
}
|
||||
export function hide() {
|
||||
visible = false;
|
||||
name = 'Bar';
|
||||
}
|
||||
</script>
|
||||
|
||||
<Nested {visible}>
|
||||
{name}
|
||||
</Nested>
|
Loading…
Reference in new issue