mirror of https://github.com/sveltejs/svelte
maintain context for transition (#5392)
parent
46d423d9db
commit
338cf877bc
@ -0,0 +1,15 @@
|
|||||||
|
export default {
|
||||||
|
test({ assert, component, target, window, raf }) {
|
||||||
|
component.visible = true;
|
||||||
|
|
||||||
|
const div = target.querySelector('div');
|
||||||
|
|
||||||
|
assert.equal(div.value, 0);
|
||||||
|
|
||||||
|
raf.tick(200);
|
||||||
|
|
||||||
|
div.value = 'test';
|
||||||
|
component.visible = false;
|
||||||
|
assert.equal(div.value, 'test');
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,17 @@
|
|||||||
|
<script>
|
||||||
|
export let visible = false;
|
||||||
|
export let value = 0;
|
||||||
|
|
||||||
|
function foo(node, params) {
|
||||||
|
return {
|
||||||
|
duration: 100,
|
||||||
|
tick: () => {
|
||||||
|
node.value = value;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if visible}
|
||||||
|
<div transition:foo={{value}}></div>
|
||||||
|
{/if}
|
Loading…
Reference in new issue