mirror of https://github.com/sveltejs/svelte
parent
3fd02f1c49
commit
ae4af6841a
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"svelte": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: eagerly unsubscribe when store is changed
|
@ -0,0 +1,52 @@
|
|||||||
|
import { tick } from 'svelte';
|
||||||
|
import { ok, test } from '../../test';
|
||||||
|
|
||||||
|
// Test that the store is unsubscribed from, even if it's not referenced once the store itself is set to null
|
||||||
|
export default test({
|
||||||
|
async test({ target, assert }) {
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>0</p> <button>add watcher</button>`
|
||||||
|
);
|
||||||
|
|
||||||
|
target.querySelector('button')?.click();
|
||||||
|
await tick();
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>1</p> 1 <button>remove watcher</button>`
|
||||||
|
);
|
||||||
|
|
||||||
|
const input = target.querySelector('input');
|
||||||
|
ok(input);
|
||||||
|
|
||||||
|
input.stepUp();
|
||||||
|
input.dispatchEvent(new Event('input', { bubbles: true }));
|
||||||
|
await tick();
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>2</p> 2 <button>remove watcher</button>`
|
||||||
|
);
|
||||||
|
|
||||||
|
target.querySelector('button')?.click();
|
||||||
|
await tick();
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>2</p> <button>add watcher</button>`
|
||||||
|
);
|
||||||
|
|
||||||
|
input.stepUp();
|
||||||
|
input.dispatchEvent(new Event('input', { bubbles: true }));
|
||||||
|
await tick();
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>2</p> <button>add watcher</button>`
|
||||||
|
);
|
||||||
|
|
||||||
|
target.querySelector('button')?.click();
|
||||||
|
await tick();
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`<input type="number"> <p>3</p> 3 <button>remove watcher</button>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,24 @@
|
|||||||
|
<script>
|
||||||
|
import { writable, derived } from "svelte/store";
|
||||||
|
|
||||||
|
const obj = writable({ a: 1 });
|
||||||
|
let count = $state(0);
|
||||||
|
let watcherA = $state();
|
||||||
|
|
||||||
|
function watch (prop) {
|
||||||
|
return derived(obj, (o) => {
|
||||||
|
count++;
|
||||||
|
return o[prop];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<input type="number" bind:value={$obj.a}>
|
||||||
|
<p>{count}</p>
|
||||||
|
|
||||||
|
{#if watcherA}
|
||||||
|
{$watcherA}
|
||||||
|
<button on:click={() => watcherA = null}>remove watcher</button>
|
||||||
|
{:else}
|
||||||
|
<button on:click={() => watcherA = watch("a")}>add watcher</button>
|
||||||
|
{/if}
|
Loading…
Reference in new issue