Skip to content

Commit ba9d4f3

Browse files
committed
signals unwatch issue
1 parent 652e2f4 commit ba9d4f3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/utils/signals.ts

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const w = new Signal.subtle.Watcher(() => {
99
scheduleRevalidate();
1010
});
1111

12+
export let signalsToUnwatch: Signal.Computed<any>[] = [];
1213
export function setResolveRender(value: () => void) {
1314
resolveRender = value;
1415
}
@@ -36,6 +37,7 @@ export async function syncDom() {
3637
w.getPending().forEach((cell) => {
3738
cell.get();
3839
});
40+
w.unwatch(...signalsToUnwatch);
3941
w.watch();
4042
setIsRendering(false);
4143
}

src/utils/vm.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import { isFn } from './shared';
1111
import { Signal } from "signal-polyfill";
1212

13-
import { w } from './signals';
13+
import { signalsToUnwatch, w } from './signals';
1414
type maybeDestructor = undefined | (() => void);
1515
type maybePromise = undefined | Promise<void>;
1616

@@ -98,6 +98,6 @@ export function opcodeFor(tag: AnyCell, op: tagOp) {
9898
w.watch(computed);
9999
computed.get();
100100
return () => {
101-
w.unwatch(computed);
101+
signalsToUnwatch.push(computed);
102102
};
103103
}

0 commit comments

Comments
 (0)