7
7
* @noflow
8
8
* @nolint
9
9
* @preventMunge
10
- * @generated SignedSource<<90d01c86a28a69abef2fe93114ca8dd8 >>
10
+ * @generated SignedSource<<f41656c617fa40163bc178f355249017 >>
11
11
*/
12
12
13
13
"use strict" ;
@@ -930,7 +930,7 @@ eventPluginOrder = Array.prototype.slice.call([
930
930
"ReactNativeBridgeEventPlugin"
931
931
] ) ;
932
932
recomputePluginOrdering ( ) ;
933
- var injectedNamesToPlugins$jscomp$inline_215 = {
933
+ var injectedNamesToPlugins$jscomp$inline_214 = {
934
934
ResponderEventPlugin : ResponderEventPlugin ,
935
935
ReactNativeBridgeEventPlugin : {
936
936
eventTypes : { } ,
@@ -965,34 +965,34 @@ var injectedNamesToPlugins$jscomp$inline_215 = {
965
965
}
966
966
}
967
967
} ,
968
- isOrderingDirty$jscomp$inline_216 = ! 1 ,
969
- pluginName$jscomp$inline_217 ;
970
- for ( pluginName$jscomp$inline_217 in injectedNamesToPlugins$jscomp$inline_215 )
968
+ isOrderingDirty$jscomp$inline_215 = ! 1 ,
969
+ pluginName$jscomp$inline_216 ;
970
+ for ( pluginName$jscomp$inline_216 in injectedNamesToPlugins$jscomp$inline_214 )
971
971
if (
972
- injectedNamesToPlugins$jscomp$inline_215 . hasOwnProperty (
973
- pluginName$jscomp$inline_217
972
+ injectedNamesToPlugins$jscomp$inline_214 . hasOwnProperty (
973
+ pluginName$jscomp$inline_216
974
974
)
975
975
) {
976
- var pluginModule$jscomp$inline_218 =
977
- injectedNamesToPlugins$jscomp$inline_215 [ pluginName$jscomp$inline_217 ] ;
976
+ var pluginModule$jscomp$inline_217 =
977
+ injectedNamesToPlugins$jscomp$inline_214 [ pluginName$jscomp$inline_216 ] ;
978
978
if (
979
- ! namesToPlugins . hasOwnProperty ( pluginName$jscomp$inline_217 ) ||
980
- namesToPlugins [ pluginName$jscomp$inline_217 ] !==
981
- pluginModule$jscomp$inline_218
979
+ ! namesToPlugins . hasOwnProperty ( pluginName$jscomp$inline_216 ) ||
980
+ namesToPlugins [ pluginName$jscomp$inline_216 ] !==
981
+ pluginModule$jscomp$inline_217
982
982
) {
983
- if ( namesToPlugins [ pluginName$jscomp$inline_217 ] )
983
+ if ( namesToPlugins [ pluginName$jscomp$inline_216 ] )
984
984
throw Error (
985
985
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
986
- pluginName$jscomp$inline_217 +
986
+ pluginName$jscomp$inline_216 +
987
987
"`."
988
988
) ;
989
989
namesToPlugins [
990
- pluginName$jscomp$inline_217
991
- ] = pluginModule$jscomp$inline_218 ;
992
- isOrderingDirty$jscomp$inline_216 = ! 0 ;
990
+ pluginName$jscomp$inline_216
991
+ ] = pluginModule$jscomp$inline_217 ;
992
+ isOrderingDirty$jscomp$inline_215 = ! 0 ;
993
993
}
994
994
}
995
- isOrderingDirty$jscomp$inline_216 && recomputePluginOrdering ( ) ;
995
+ isOrderingDirty$jscomp$inline_215 && recomputePluginOrdering ( ) ;
996
996
function getInstanceFromInstance ( instanceHandle ) {
997
997
return instanceHandle ;
998
998
}
@@ -1730,12 +1730,13 @@ function computeExpirationTime(lane, currentTime) {
1730
1730
case 524288 :
1731
1731
case 1048576 :
1732
1732
case 2097152 :
1733
+ return currentTime + 5e3 ;
1733
1734
case 4194304 :
1734
1735
case 8388608 :
1735
1736
case 16777216 :
1736
1737
case 33554432 :
1737
1738
case 67108864 :
1738
- return currentTime + 5e3 ;
1739
+ return - 1 ;
1739
1740
case 134217728 :
1740
1741
case 268435456 :
1741
1742
case 536870912 :
@@ -6138,8 +6139,10 @@ function performConcurrentWorkOnRoot(root, didTimeout) {
6138
6139
2 === didTimeout &&
6139
6140
( ( executionContext |= 32 ) ,
6140
6141
root . hydrate && ( ( root . hydrate = ! 1 ) , shim ( root . containerInfo ) ) ,
6141
- ( lanes = getLanesToRetrySynchronouslyOnError ( root ) ) ,
6142
- 0 !== lanes && ( didTimeout = renderRootSync ( root , lanes ) ) ) ;
6142
+ ( prevExecutionContext = getLanesToRetrySynchronouslyOnError ( root ) ) ,
6143
+ 0 !== prevExecutionContext &&
6144
+ ( ( lanes = prevExecutionContext ) ,
6145
+ ( didTimeout = renderRootSync ( root , prevExecutionContext ) ) ) ) ;
6143
6146
if ( 1 === didTimeout )
6144
6147
throw ( ( originalCallbackNode = workInProgressRootFatalError ) ,
6145
6148
prepareFreshStack ( root , 0 ) ,
@@ -6241,17 +6244,20 @@ function performSyncWorkOnRoot(root) {
6241
6244
if ( 0 !== ( executionContext & 24 ) )
6242
6245
throw Error ( "Should not already be working." ) ;
6243
6246
flushPassiveEffects ( ) ;
6244
- var lanes ;
6245
- if ( ( lanes = root === workInProgressRoot ) )
6246
- lanes = 0 !== ( root . entanglements [ 0 ] & workInProgressRootRenderLanes ) ;
6247
- lanes = lanes ? workInProgressRootRenderLanes : getNextLanes ( root , 0 ) ;
6247
+ var lanes = getNextLanes ( root , 0 ) ;
6248
+ if ( 0 !== ( lanes & 1 ) )
6249
+ root === workInProgressRoot &&
6250
+ 0 !== ( lanes & workInProgressRootRenderLanes ) &&
6251
+ ( lanes = workInProgressRootRenderLanes ) ;
6252
+ else return ensureRootIsScheduled ( root , now ( ) ) , null ;
6248
6253
var exitStatus = renderRootSync ( root , lanes ) ;
6249
- 0 !== root . tag &&
6250
- 2 === exitStatus &&
6251
- ( ( executionContext |= 32 ) ,
6252
- root . hydrate && ( ( root . hydrate = ! 1 ) , shim ( root . containerInfo ) ) ,
6253
- ( lanes = getLanesToRetrySynchronouslyOnError ( root ) ) ,
6254
- 0 !== lanes && ( exitStatus = renderRootSync ( root , lanes ) ) ) ;
6254
+ if ( 0 !== root . tag && 2 === exitStatus ) {
6255
+ executionContext |= 32 ;
6256
+ root . hydrate && ( ( root . hydrate = ! 1 ) , shim ( root . containerInfo ) ) ;
6257
+ var errorRetryLanes = getLanesToRetrySynchronouslyOnError ( root ) ;
6258
+ 0 !== errorRetryLanes &&
6259
+ ( ( lanes = errorRetryLanes ) , ( exitStatus = renderRootSync ( root , lanes ) ) ) ;
6260
+ }
6255
6261
if ( 1 === exitStatus )
6256
6262
throw ( ( exitStatus = workInProgressRootFatalError ) ,
6257
6263
prepareFreshStack ( root , 0 ) ,
@@ -7738,7 +7744,7 @@ batchedUpdatesImpl = function(fn, a) {
7738
7744
}
7739
7745
} ;
7740
7746
var roots = new Map ( ) ,
7741
- devToolsConfig$jscomp$inline_941 = {
7747
+ devToolsConfig$jscomp$inline_934 = {
7742
7748
findFiberByHostInstance : getInstanceFromInstance ,
7743
7749
bundleType : 0 ,
7744
7750
version : "17.0.3" ,
@@ -7756,11 +7762,11 @@ var roots = new Map(),
7756
7762
} . bind ( null , findNodeHandle )
7757
7763
}
7758
7764
} ;
7759
- var internals$jscomp$inline_1175 = {
7760
- bundleType : devToolsConfig$jscomp$inline_941 . bundleType ,
7761
- version : devToolsConfig$jscomp$inline_941 . version ,
7762
- rendererPackageName : devToolsConfig$jscomp$inline_941 . rendererPackageName ,
7763
- rendererConfig : devToolsConfig$jscomp$inline_941 . rendererConfig ,
7765
+ var internals$jscomp$inline_1168 = {
7766
+ bundleType : devToolsConfig$jscomp$inline_934 . bundleType ,
7767
+ version : devToolsConfig$jscomp$inline_934 . version ,
7768
+ rendererPackageName : devToolsConfig$jscomp$inline_934 . rendererPackageName ,
7769
+ rendererConfig : devToolsConfig$jscomp$inline_934 . rendererConfig ,
7764
7770
overrideHookState : null ,
7765
7771
overrideHookStateDeletePath : null ,
7766
7772
overrideHookStateRenamePath : null ,
@@ -7775,7 +7781,7 @@ var internals$jscomp$inline_1175 = {
7775
7781
return null === fiber ? null : fiber . stateNode ;
7776
7782
} ,
7777
7783
findFiberByHostInstance :
7778
- devToolsConfig$jscomp$inline_941 . findFiberByHostInstance ||
7784
+ devToolsConfig$jscomp$inline_934 . findFiberByHostInstance ||
7779
7785
emptyFindFiberByHostInstance ,
7780
7786
findHostInstancesForRefresh : null ,
7781
7787
scheduleRefresh : null ,
@@ -7785,16 +7791,16 @@ var internals$jscomp$inline_1175 = {
7785
7791
reconcilerVersion : "17.0.3"
7786
7792
} ;
7787
7793
if ( "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ ) {
7788
- var hook$jscomp$inline_1176 = __REACT_DEVTOOLS_GLOBAL_HOOK__ ;
7794
+ var hook$jscomp$inline_1169 = __REACT_DEVTOOLS_GLOBAL_HOOK__ ;
7789
7795
if (
7790
- ! hook$jscomp$inline_1176 . isDisabled &&
7791
- hook$jscomp$inline_1176 . supportsFiber
7796
+ ! hook$jscomp$inline_1169 . isDisabled &&
7797
+ hook$jscomp$inline_1169 . supportsFiber
7792
7798
)
7793
7799
try {
7794
- ( rendererID = hook$jscomp$inline_1176 . inject (
7795
- internals$jscomp$inline_1175
7800
+ ( rendererID = hook$jscomp$inline_1169 . inject (
7801
+ internals$jscomp$inline_1168
7796
7802
) ) ,
7797
- ( injectedHook = hook$jscomp$inline_1176 ) ;
7803
+ ( injectedHook = hook$jscomp$inline_1169 ) ;
7798
7804
} catch ( err ) { }
7799
7805
}
7800
7806
exports . createPortal = function ( children , containerTag ) {
0 commit comments