diff --git a/packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js b/packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js index e00a06abfe2b9..e9abb25eb1768 100644 --- a/packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js +++ b/packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js @@ -8127,6 +8127,256 @@ describe('ReactDOMFizzServer', () => { expect(document.body.textContent).toBe('HelloWorld'); }); + it('can abort synchronously during render', async () => { + function Sibling() { + return

sibling

; + } + + function App() { + return ( +
+ loading 1...

}> + + +
+ loading 2...

}> + +
+
+ loading 3...

}> +
+ +
+
+
+
+ ); + } + + const abortRef = {current: null}; + function ComponentThatAborts() { + abortRef.current(); + return

hello world

; + } + + let finished = false; + await act(() => { + const {pipe, abort} = renderToPipeableStream(); + abortRef.current = abort; + writable.on('finish', () => { + finished = true; + }); + pipe(writable); + }); + + assertConsoleErrorDev([ + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + ]); + + expect(finished).toBe(true); + expect(getVisibleChildren(container)).toEqual( +
+

loading 1...

+

loading 2...

+
+

loading 3...

+
+
, + ); + }); + + it('can abort during render in a lazy initializer for a component', async () => { + function Sibling() { + return

sibling

; + } + + function App() { + return ( +
+ loading 1...

}> + + +
+ loading 2...

}> + +
+
+ loading 3...

}> +
+ +
+
+
+
+ ); + } + + const abortRef = {current: null}; + const LazyAbort = React.lazy(() => { + abortRef.current(); + return { + then(cb) { + cb({default: 'div'}); + }, + }; + }); + + let finished = false; + await act(() => { + const {pipe, abort} = renderToPipeableStream(); + abortRef.current = abort; + writable.on('finish', () => { + finished = true; + }); + pipe(writable); + }); + + assertConsoleErrorDev([ + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + ]); + + expect(finished).toBe(true); + expect(getVisibleChildren(container)).toEqual( +
+

loading 1...

+

loading 2...

+
+

loading 3...

+
+
, + ); + }); + + it('can abort during render in a lazy initializer for an element', async () => { + function Sibling() { + return

sibling

; + } + + function App() { + return ( +
+ loading 1...

}> + {lazyAbort} + +
+ loading 2...

}> + +
+
+ loading 3...

}> +
+ +
+
+
+
+ ); + } + + const abortRef = {current: null}; + const lazyAbort = React.lazy(() => { + abortRef.current(); + return { + then(cb) { + cb({default: 'hello world'}); + }, + }; + }); + + let finished = false; + await act(() => { + const {pipe, abort} = renderToPipeableStream(); + abortRef.current = abort; + writable.on('finish', () => { + finished = true; + }); + pipe(writable); + }); + + assertConsoleErrorDev([ + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + ]); + + expect(finished).toBe(true); + expect(getVisibleChildren(container)).toEqual( +
+

loading 1...

+

loading 2...

+
+

loading 3...

+
+
, + ); + }); + + it('can abort during a synchronous thenable resolution', async () => { + function Sibling() { + return

sibling

; + } + + function App() { + return ( +
+ loading 1...

}> + {thenable} + +
+ loading 2...

}> + +
+
+ loading 3...

}> +
+ +
+
+
+
+ ); + } + + const abortRef = {current: null}; + const thenable = { + then(cb) { + abortRef.current(); + cb(thenable.value); + }, + }; + + let finished = false; + await act(() => { + const {pipe, abort} = renderToPipeableStream(); + abortRef.current = abort; + writable.on('finish', () => { + finished = true; + }); + pipe(writable); + }); + + assertConsoleErrorDev([ + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + 'The render was aborted by the server without a reason.', + ]); + + expect(finished).toBe(true); + expect(getVisibleChildren(container)).toEqual( +
+

loading 1...

+

loading 2...

+
+

loading 3...

+
+
, + ); + }); + it('should warn for using generators as children props', async () => { function* getChildren() { yield

Hello

; diff --git a/packages/react-server/src/ReactFizzServer.js b/packages/react-server/src/ReactFizzServer.js index 4d2550758a677..d89de01da5a6f 100644 --- a/packages/react-server/src/ReactFizzServer.js +++ b/packages/react-server/src/ReactFizzServer.js @@ -294,11 +294,12 @@ const FLUSHED = 2; const ABORTED = 3; const ERRORED = 4; const POSTPONED = 5; +const RENDERING = 6; type Root = null; type Segment = { - status: 0 | 1 | 2 | 3 | 4 | 5, + status: 0 | 1 | 2 | 3 | 4 | 5 | 6, parentFlushed: boolean, // typically a segment will be flushed by its parent, except if its parent was already flushed id: number, // starts as 0 and is lazily assigned if the parent flushes early +index: number, // the index within the parent's chunks or 0 at the root @@ -314,8 +315,9 @@ type Segment = { }; const OPEN = 0; -const CLOSING = 1; -const CLOSED = 2; +const ABORTING = 1; +const CLOSING = 2; +const CLOSED = 3; export opaque type Request = { destination: null | Destination, @@ -324,7 +326,7 @@ export opaque type Request = { +renderState: RenderState, +rootFormatContext: FormatContext, +progressiveChunkSize: number, - status: 0 | 1 | 2, + status: 0 | 1 | 2 | 3, fatalError: mixed, nextSegmentId: number, allPendingTasks: number, // when it reaches zero, we can close the connection. @@ -650,6 +652,8 @@ export function resumeRequest( return request; } +const AbortSigil = {}; + let currentRequest: null | Request = null; export function resolveRequest(): null | Request { @@ -1158,6 +1162,7 @@ function renderSuspenseBoundary( task.blockedSegment = boundarySegment; task.keyPath = fallbackKeyPath; + boundarySegment.status = RENDERING; try { renderNode(request, task, fallback, -1); pushSegmentFinale( @@ -1167,6 +1172,13 @@ function renderSuspenseBoundary( boundarySegment.textEmbedded, ); boundarySegment.status = COMPLETED; + } catch (thrownValue: mixed) { + if (thrownValue === AbortSigil) { + boundarySegment.status = ABORTED; + } else { + boundarySegment.status = ERRORED; + } + throw thrownValue; } finally { task.blockedSegment = parentSegment; task.keyPath = prevKeyPath; @@ -1211,6 +1223,7 @@ function renderSuspenseBoundary( task.hoistableState = newBoundary.contentState; task.blockedSegment = contentRootSegment; task.keyPath = keyPath; + contentRootSegment.status = RENDERING; try { // We use the safe form because we don't handle suspending here. Only error handling. @@ -1230,9 +1243,17 @@ function renderSuspenseBoundary( newBoundary.status = COMPLETED; return; } - } catch (error: mixed) { - contentRootSegment.status = ERRORED; + } catch (thrownValue: mixed) { newBoundary.status = CLIENT_RENDERED; + let error: mixed; + if (thrownValue === AbortSigil) { + contentRootSegment.status = ABORTED; + error = request.fatalError; + } else { + contentRootSegment.status = ERRORED; + error = thrownValue; + } + const thrownInfo = getThrownInfo(task.componentStack); let errorDigest; if ( @@ -1579,6 +1600,9 @@ function finishClassComponent( } else { nextChildren = instance.render(); } + if (request.status === ABORTING) { + throw AbortSigil; + } if (__DEV__) { if (instance.props !== props) { @@ -1732,6 +1756,10 @@ function renderFunctionComponent( props, legacyContext, ); + if (request.status === ABORTING) { + throw AbortSigil; + } + const hasId = checkDidRenderIdHook(); const actionStateCount = getActionStateCount(); const actionStateMatchingIndex = getActionStateMatchingIndex(); @@ -2047,6 +2075,9 @@ function renderLazyComponent( const init = lazyComponent._init; Component = init(payload); } + if (request.status === ABORTING) { + throw AbortSigil; + } const resolvedProps = resolveDefaultPropsOnNonClassComponent( Component, props, @@ -2623,6 +2654,9 @@ function retryNode(request: Request, task: Task): void { const init = lazyNode._init; resolvedNode = init(payload); } + if (request.status === ABORTING) { + throw AbortSigil; + } // Now we render the resolved node renderNodeDestructive(request, task, resolvedNode, childIndex); return; @@ -3738,6 +3772,11 @@ function abortTask(task: Task, request: Request, error: mixed): void { const boundary = task.blockedBoundary; const segment = task.blockedSegment; if (segment !== null) { + if (segment.status === RENDERING) { + // This is the a currently rendering Segment. The render itself will + // abort the task. + return; + } segment.status = ABORTED; } @@ -4032,6 +4071,10 @@ function retryRenderTask( // We completed this by other means before we had a chance to retry it. return; } + + // We track when a Segment is rendering so we can handle aborts while rendering + segment.status = RENDERING; + // We restore the context to what it was when we suspended. // We don't restore it after we leave because it's likely that we'll end up // needing a very similar context soon again. @@ -4080,9 +4123,10 @@ function retryRenderTask( // $FlowFixMe[method-unbinding] if (typeof x.then === 'function') { // Something suspended again, let's pick it back up later. + segment.status = PENDING; + task.thenableState = getThenableStateAfterSuspending(); const ping = task.ping; x.then(ping, ping); - task.thenableState = getThenableStateAfterSuspending(); return; } else if ( enablePostpone && @@ -4111,14 +4155,26 @@ function retryRenderTask( const errorInfo = getThrownInfo(task.componentStack); task.abortSet.delete(task); - segment.status = ERRORED; - erroredTask( - request, - task.blockedBoundary, - x, - errorInfo, - __DEV__ && enableOwnerStacks ? task.debugTask : null, - ); + + if (x === AbortSigil) { + segment.status = ABORTED; + erroredTask( + request, + task.blockedBoundary, + request.fatalError, + errorInfo, + __DEV__ && enableOwnerStacks ? task.debugTask : null, + ); + } else { + segment.status = ERRORED; + erroredTask( + request, + task.blockedBoundary, + x, + errorInfo, + __DEV__ && enableOwnerStacks ? task.debugTask : null, + ); + } return; } finally { if (__DEV__) { @@ -4192,7 +4248,7 @@ function retryReplayTask(request: Request, task: ReplayTask): void { erroredReplay( request, task.blockedBoundary, - x, + x === AbortSigil ? request.fatalError : x, errorInfo, task.replay.nodes, task.replay.slots, @@ -4725,6 +4781,7 @@ function flushCompletedQueues( } } // We're done. + request.status = CLOSED; close(destination); // We need to stop flowing now because we do not want any async contexts which might call // float methods to initiate any flushes after this point @@ -4846,13 +4903,23 @@ export function stopFlowing(request: Request): void { // This is called to early terminate a request. It puts all pending boundaries in client rendered state. export function abort(request: Request, reason: mixed): void { + if (request.status === OPEN) { + request.status = ABORTING; + } try { const abortableTasks = request.abortableTasks; if (abortableTasks.size > 0) { const error = reason === undefined ? new Error('The render was aborted by the server without a reason.') - : reason; + : typeof reason === 'object' && + reason !== null && + typeof reason.then === 'function' + ? new Error('The render was aborted by the server with a promise.') + : reason; + // This error isn't necessarily fatal in this case but we need to stash it + // so we can use it to abort any pending work + request.fatalError = error; abortableTasks.forEach(task => abortTask(task, request, error)); abortableTasks.clear(); } diff --git a/packages/shared/ReactFeatureFlags.js b/packages/shared/ReactFeatureFlags.js index b713e9f068f4b..f74a181ab21dd 100644 --- a/packages/shared/ReactFeatureFlags.js +++ b/packages/shared/ReactFeatureFlags.js @@ -94,8 +94,8 @@ export const enableObjectFiber = false; export const enableTransitionTracing = false; -// No known bugs, but needs performance testing -export const enableLazyContextPropagation = false; +// Shipped on FB, waiting for next stable release to roll out to OSS +export const enableLazyContextPropagation = __EXPERIMENTAL__; // Expose unstable useContext for performance testing export const enableContextProfiling = false; diff --git a/packages/shared/forks/ReactFeatureFlags.test-renderer.js b/packages/shared/forks/ReactFeatureFlags.test-renderer.js index e41d98ce48cd9..47a138751bbdf 100644 --- a/packages/shared/forks/ReactFeatureFlags.test-renderer.js +++ b/packages/shared/forks/ReactFeatureFlags.test-renderer.js @@ -51,7 +51,7 @@ export const syncLaneExpirationMs = 250; export const transitionLaneExpirationMs = 5000; export const disableSchedulerTimeoutInWorkLoop = false; -export const enableLazyContextPropagation = false; +export const enableLazyContextPropagation = __EXPERIMENTAL__; export const enableContextProfiling = false; export const enableLegacyHidden = false; diff --git a/packages/shared/forks/ReactFeatureFlags.test-renderer.www.js b/packages/shared/forks/ReactFeatureFlags.test-renderer.www.js index 30bd7aea8a2f7..69b0ce5bd53d6 100644 --- a/packages/shared/forks/ReactFeatureFlags.test-renderer.www.js +++ b/packages/shared/forks/ReactFeatureFlags.test-renderer.www.js @@ -54,7 +54,7 @@ export const syncLaneExpirationMs = 250; export const transitionLaneExpirationMs = 5000; export const disableSchedulerTimeoutInWorkLoop = false; -export const enableLazyContextPropagation = false; +export const enableLazyContextPropagation = true; export const enableContextProfiling = false; export const enableLegacyHidden = false; diff --git a/packages/shared/forks/ReactFeatureFlags.www-dynamic.js b/packages/shared/forks/ReactFeatureFlags.www-dynamic.js index faf87deb6e0ab..15e0cf3b3c56c 100644 --- a/packages/shared/forks/ReactFeatureFlags.www-dynamic.js +++ b/packages/shared/forks/ReactFeatureFlags.www-dynamic.js @@ -21,7 +21,6 @@ export const disableSchedulerTimeoutInWorkLoop = __VARIANT__; export const enableAddPropertiesFastPath = __VARIANT__; export const enableDeferRootSchedulingToMicrotask = __VARIANT__; export const enableDO_NOT_USE_disableStrictPassiveEffect = __VARIANT__; -export const enableLazyContextPropagation = __VARIANT__; export const enableNoCloningMemoCache = __VARIANT__; export const enableObjectFiber = __VARIANT__; export const enableRenderableContext = __VARIANT__; diff --git a/packages/shared/forks/ReactFeatureFlags.www.js b/packages/shared/forks/ReactFeatureFlags.www.js index 5cbbd779d556a..54ead6657e036 100644 --- a/packages/shared/forks/ReactFeatureFlags.www.js +++ b/packages/shared/forks/ReactFeatureFlags.www.js @@ -24,7 +24,6 @@ export const { enableDeferRootSchedulingToMicrotask, enableDO_NOT_USE_disableStrictPassiveEffect, enableInfiniteRenderLoopDetection, - enableLazyContextPropagation, enableNoCloningMemoCache, enableObjectFiber, enableRenderableContext, @@ -59,6 +58,7 @@ export const enableFilterEmptyStringAttributesDOM = true; export const enableAsyncActions = true; export const disableInputAttributeSyncing = false; export const enableLegacyFBSupport = true; +export const enableLazyContextPropagation = true; // Logs additional User Timing API marks for use with an experimental profiling tool. export const enableSchedulingProfiler: boolean =