mirror of https://github.com/sveltejs/svelte
Merge pull request #1693 from sveltejs/gh-1617
Fix for each-blocks preventing outros from completingpull/1709/head
commit
b4a3a60953
@ -0,0 +1,29 @@
|
|||||||
|
export default {
|
||||||
|
nestedTransitions: true,
|
||||||
|
skipIntroByDefault: true,
|
||||||
|
|
||||||
|
data: {
|
||||||
|
visible: true,
|
||||||
|
things: [ 'a', 'b', 'c' ]
|
||||||
|
},
|
||||||
|
|
||||||
|
test ( assert, component, target, window, raf ) {
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div>a</div>
|
||||||
|
<div>b</div>
|
||||||
|
<div>c</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
component.set({ things: [ 'a' ] });
|
||||||
|
|
||||||
|
raf.tick( 100 );
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div>a</div>
|
||||||
|
`);
|
||||||
|
|
||||||
|
component.set({ visible: false });
|
||||||
|
|
||||||
|
raf.tick( 200 );
|
||||||
|
assert.htmlEqual(target.innerHTML, '');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,20 @@
|
|||||||
|
{#if visible}
|
||||||
|
{#each things as thing}
|
||||||
|
<div transition:foo>{thing}</div>
|
||||||
|
{/each}
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
transitions: {
|
||||||
|
foo(node, params) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: t => {
|
||||||
|
node.foo = t;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue