mirror of https://github.com/sveltejs/svelte
fix: ensure unowned derived signals correctly re-connect to graph (#13184)
Fixes #13174. Turns out that we we skipping this important work because we return true early – thus not connecting the unowned derived back to the reaction.pull/13198/head
parent
4f10c83d32
commit
fd7e8b70cf
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: ensure unowned derived signals correctly re-connect to graph
|
@ -0,0 +1,71 @@
|
|||||||
|
import { flushSync } from 'svelte';
|
||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
mode: ['client'],
|
||||||
|
async test({ assert, target, logs }) {
|
||||||
|
let [btn1, btn2] = target.querySelectorAll('button');
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
btn2.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>1</div>\ndouble:\n2`
|
||||||
|
);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
btn2.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>2</div>\ndouble:\n4`
|
||||||
|
);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>3</div>\ndouble:\n6`
|
||||||
|
);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>4</div>\ndouble:\n8`
|
||||||
|
);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `<button>a</button><button>b</button><div>5</div>`);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>6</div>\ndouble:\n12`
|
||||||
|
);
|
||||||
|
|
||||||
|
btn1.click();
|
||||||
|
|
||||||
|
flushSync();
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<button>a</button><button>b</button><div>7</div>\ndouble:\n14`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,24 @@
|
|||||||
|
<script>
|
||||||
|
let count = $state(0);
|
||||||
|
|
||||||
|
function increment() {
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
let double = $state();
|
||||||
|
function setDerived() {
|
||||||
|
const d = $derived(count * 2);
|
||||||
|
double = {
|
||||||
|
get v() { return d }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<button onclick={increment}>a</button>
|
||||||
|
<button onclick={setDerived}>b</button>
|
||||||
|
|
||||||
|
<div>{count}</div>
|
||||||
|
|
||||||
|
{#if double && count % 5}
|
||||||
|
double: {double.v}
|
||||||
|
{/if}
|
Loading…
Reference in new issue