Skip to content

Commit 6d4a253

Browse files
committed
If window is not defined, don't track signal usage in component render
1 parent 3def25f commit 6d4a253

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

packages/react/runtime/src/index.ts

+32-1
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,33 @@ function createEffectStore(_usage: EffectStoreUsage): EffectStore {
285285
};
286286
}
287287

288+
const noop = () => {};
289+
290+
function createEmptyEffectStore(): EffectStore {
291+
return {
292+
_usage: UNMANAGED,
293+
effect: {
294+
_sources: undefined,
295+
_callback() {},
296+
_start() {
297+
return /* endEffect */ noop;
298+
},
299+
_dispose() {},
300+
},
301+
subscribe() {
302+
return /* unsubscribe */ noop;
303+
},
304+
getSnapshot() {
305+
return 0;
306+
},
307+
_start() {},
308+
f() {},
309+
[symDispose]() {},
310+
};
311+
}
312+
313+
const emptyEffectStore = createEmptyEffectStore();
314+
288315
const _queueMicroTask = Promise.prototype.then.bind(Promise.resolve());
289316

290317
let finalCleanup: Promise<void> | undefined;
@@ -312,7 +339,11 @@ export function _useSignalsImplementation(
312339

313340
const storeRef = useRef<EffectStore>();
314341
if (storeRef.current == null) {
315-
storeRef.current = createEffectStore(_usage);
342+
if (typeof window === "undefined") {
343+
storeRef.current = emptyEffectStore;
344+
} else {
345+
storeRef.current = createEffectStore(_usage);
346+
}
316347
}
317348

318349
const store = storeRef.current;

0 commit comments

Comments
 (0)