mirror of https://github.com/sveltejs/svelte
apply delays to bidirectional transitions - fixes #562
parent
90d2e7f883
commit
1a92398101
@ -0,0 +1,24 @@
|
||||
export default {
|
||||
test ( assert, component, target, window, raf ) {
|
||||
component.set({ visible: true });
|
||||
const div = target.querySelector( 'div' );
|
||||
assert.equal( div.foo, 0 );
|
||||
|
||||
raf.tick( 50 );
|
||||
assert.equal( div.foo, 0 );
|
||||
|
||||
raf.tick( 150 );
|
||||
assert.equal( div.foo, 1 );
|
||||
|
||||
component.set({ visible: false });
|
||||
assert.equal( div.bar, undefined );
|
||||
|
||||
raf.tick( 200 );
|
||||
assert.equal( div.bar, 1 );
|
||||
|
||||
raf.tick( 300 );
|
||||
assert.equal( div.bar, 0 );
|
||||
|
||||
component.destroy();
|
||||
}
|
||||
};
|
@ -0,0 +1,29 @@
|
||||
{{#if visible}}
|
||||
<div in:foo out:bar>delayed</div>
|
||||
{{/if}}
|
||||
|
||||
<script>
|
||||
export default {
|
||||
transitions: {
|
||||
foo: function ( node, params ) {
|
||||
return {
|
||||
delay: 50,
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.foo = t;
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
bar: function ( node, params ) {
|
||||
return {
|
||||
delay: 50,
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.bar = t;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
@ -0,0 +1,29 @@
|
||||
export default {
|
||||
test ( assert, component, target, window, raf ) {
|
||||
component.set({ visible: true });
|
||||
const div = target.querySelector( 'div' );
|
||||
assert.equal( div.foo, 0 );
|
||||
|
||||
raf.tick( 50 );
|
||||
assert.equal( div.foo, 0 );
|
||||
|
||||
raf.tick( 100 );
|
||||
assert.equal( div.foo, 0.5 );
|
||||
|
||||
component.set({ visible: false });
|
||||
|
||||
raf.tick( 125 );
|
||||
assert.equal( div.foo, 0.75 );
|
||||
|
||||
raf.tick( 150 );
|
||||
assert.equal( div.foo, 1 );
|
||||
|
||||
raf.tick( 175 );
|
||||
assert.equal( div.foo, 0.75 );
|
||||
|
||||
raf.tick( 250 );
|
||||
assert.equal( div.foo, 0 );
|
||||
|
||||
component.destroy();
|
||||
}
|
||||
};
|
@ -0,0 +1,19 @@
|
||||
{{#if visible}}
|
||||
<div transition:foo>delayed</div>
|
||||
{{/if}}
|
||||
|
||||
<script>
|
||||
export default {
|
||||
transitions: {
|
||||
foo: function ( node, params ) {
|
||||
return {
|
||||
delay: 50,
|
||||
duration: 100,
|
||||
tick: t => {
|
||||
node.foo = t;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue