mirror of https://github.com/sveltejs/svelte
fix: improve signal consumer removal logic (#9837)
parent
e2dcdc2887
commit
388e3e68fc
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: improve signal consumer removal logic
|
@ -0,0 +1,52 @@
|
||||
import { flushSync } from 'svelte';
|
||||
import { test } from '../../test';
|
||||
|
||||
export default test({
|
||||
async test({ assert, target }) {
|
||||
const [b1, b2] = target.querySelectorAll('button');
|
||||
flushSync(() => {
|
||||
b1.click();
|
||||
});
|
||||
|
||||
assert.htmlEqual(
|
||||
target.innerHTML,
|
||||
`<div><button>A</button><button>B</button></div><div>A</div>`
|
||||
);
|
||||
|
||||
flushSync(() => {
|
||||
b2.click();
|
||||
});
|
||||
|
||||
assert.htmlEqual(
|
||||
target.innerHTML,
|
||||
`<div><button>A</button><button>B</button></div><div>B\n12</div>`
|
||||
);
|
||||
|
||||
flushSync(() => {
|
||||
b1.click();
|
||||
});
|
||||
|
||||
assert.htmlEqual(
|
||||
target.innerHTML,
|
||||
`<div><button>A</button><button>B</button></div><div>A</div>`
|
||||
);
|
||||
|
||||
flushSync(() => {
|
||||
b2.click();
|
||||
});
|
||||
|
||||
assert.htmlEqual(
|
||||
target.innerHTML,
|
||||
`<div><button>A</button><button>B</button></div><div>B\n12</div>`
|
||||
);
|
||||
|
||||
flushSync(() => {
|
||||
b1.click();
|
||||
});
|
||||
|
||||
assert.htmlEqual(
|
||||
target.innerHTML,
|
||||
`<div><button>A</button><button>B</button></div><div>A</div>`
|
||||
);
|
||||
}
|
||||
});
|
@ -0,0 +1,31 @@
|
||||
<script context="module">
|
||||
class Things {
|
||||
tab = $state('A');
|
||||
|
||||
data = $state([{no: 1}, {no: 2}]);
|
||||
list = $derived(this.filter());
|
||||
|
||||
filter() {
|
||||
this.tab;
|
||||
return this.data;
|
||||
}
|
||||
}
|
||||
|
||||
const things = new Things();
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<button onclick={() => things.tab = 'A'} >A</button>
|
||||
<button onclick={() => things.tab = 'B'} >B</button>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{#if things.tab === 'A'}
|
||||
A
|
||||
{:else}
|
||||
B
|
||||
{#each things.list as item}
|
||||
{item.no}
|
||||
{/each}
|
||||
{/if}
|
||||
</div>
|
Loading…
Reference in new issue