Merge pull request #1693 from sveltejs/gh-1617

Fix for each-blocks preventing outros from completing
pull/1709/head
Rich Harris 6 years ago committed by GitHub
commit b4a3a60953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -480,6 +480,7 @@ export default class EachBlock extends Node {
if (outroBlock && this.compiler.options.nestedTransitions) {
const countdown = block.getUniqueName('countdown');
block.builders.outro.addBlock(deindent`
${iterations} = ${iterations}.filter(Boolean);
const ${countdown} = @callAfter(#outrocallback, ${iterations}.length);
for (let #i = 0; #i < ${iterations}.length; #i += 1) ${outroBlock}(#i, 0, ${countdown});`
);

@ -12,5 +12,8 @@ export default {
assert.equal( divs[0].foo, undefined );
assert.equal( divs[1].foo, 0.5 );
assert.equal( divs[2].foo, 0.5 );
raf.tick( 100 );
assert.htmlEqual(target.innerHTML, '<div>a</div>');
}
};

@ -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…
Cancel
Save