File tree 1 file changed +32
-1
lines changed
packages/react/runtime/src
1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -285,6 +285,33 @@ function createEffectStore(_usage: EffectStoreUsage): EffectStore {
285
285
} ;
286
286
}
287
287
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
+
288
315
const _queueMicroTask = Promise . prototype . then . bind ( Promise . resolve ( ) ) ;
289
316
290
317
let finalCleanup : Promise < void > | undefined ;
@@ -312,7 +339,11 @@ export function _useSignalsImplementation(
312
339
313
340
const storeRef = useRef < EffectStore > ( ) ;
314
341
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
+ }
316
347
}
317
348
318
349
const store = storeRef . current ;
You can’t perform that action at this time.
0 commit comments