mirror of https://github.com/sveltejs/svelte
play transitions in slots - fixes #2303
parent
d1536b21a2
commit
dbf0f6a2f3
@ -0,0 +1,9 @@
|
|||||||
|
<script>
|
||||||
|
export let visible;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{#if visible}
|
||||||
|
<slot/>
|
||||||
|
{/if}
|
||||||
|
</div>
|
@ -0,0 +1,26 @@
|
|||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
visible: false
|
||||||
|
},
|
||||||
|
|
||||||
|
html: `
|
||||||
|
<div></div>
|
||||||
|
`,
|
||||||
|
|
||||||
|
test({ assert, component, target, window, raf }) {
|
||||||
|
component.visible = true;
|
||||||
|
const p = target.querySelector('p');
|
||||||
|
assert.equal(p.foo, 0);
|
||||||
|
|
||||||
|
raf.tick(50);
|
||||||
|
assert.equal(p.foo, 0.5);
|
||||||
|
|
||||||
|
component.visible = false;
|
||||||
|
|
||||||
|
raf.tick(75);
|
||||||
|
assert.equal(p.foo, 0.25);
|
||||||
|
|
||||||
|
raf.tick(100);
|
||||||
|
assert.equal(p.foo, 0);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,18 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.svelte';
|
||||||
|
|
||||||
|
export let visible;
|
||||||
|
|
||||||
|
function foo(node, params) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.foo = t;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested {visible}>
|
||||||
|
<p transition:foo>slotted</p>
|
||||||
|
</Nested>
|
Loading…
Reference in new issue