Skip to content

Commit

Permalink
Don't let error boundaries catch errors during hydration (#28675)
Browse files Browse the repository at this point in the history
When an error boundary catches an error during hydration it'll try to
render the error state which will then try to hydrate that state,
causing hydration warnings.

When an error happens inside a Suspense boundary during hydration, we
instead let the boundary catch it and restart a client render from
there. However, when it's in the root we instead let it fail the root
and do the sync recovery pass. This didn't consider that we might hit an
error boundary first so this just skips the error boundary in that case.

We should probably instead let the root do a concurrent client render in
this same pass instead to unify with Suspense boundaries.
  • Loading branch information
sebmarkbage authored Mar 29, 2024
1 parent 2aed507 commit 5d4b758
Show file tree
Hide file tree
Showing 2 changed files with 232 additions and 0 deletions.
225 changes: 225 additions & 0 deletions packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,229 @@ describe('ReactDOMFizzShellHydration', () => {
'RangeError: Maximum call stack size exceeded',
);
});

it('client renders when an error is thrown in an error boundary', async () => {
function Throws() {
throw new Error('plain error');
}

class ErrorBoundary extends React.Component {
state = {error: null};
static getDerivedStateFromError(error) {
return {error};
}
render() {
if (this.state.error) {
return <div>Caught an error: {this.state.error.message}</div>;
}
return this.props.children;
}
}

function App() {
return (
<ErrorBoundary>
<Throws />
</ErrorBoundary>
);
}

// Server render
let shellError;
try {
await serverAct(async () => {
const {pipe} = ReactDOMFizzServer.renderToPipeableStream(<App />, {
onError(error) {
Scheduler.log('onError: ' + error.message);
},
});
pipe(writable);
});
} catch (x) {
shellError = x;
}
expect(shellError).toEqual(
expect.objectContaining({message: 'plain error'}),
);
assertLog(['onError: plain error']);

function ErroredApp() {
return <span>loading</span>;
}

// Reset test environment
buffer = '';
hasErrored = false;
writable = new Stream.PassThrough();
writable.setEncoding('utf8');
writable.on('data', chunk => {
buffer += chunk;
});
writable.on('error', error => {
hasErrored = true;
fatalError = error;
});

// The Server errored at the shell. The recommended approach is to render a
// fallback loading state, which can then be hydrated with a mismatch.
await serverAct(async () => {
const {pipe} = ReactDOMFizzServer.renderToPipeableStream(<ErroredApp />);
pipe(writable);
});

expect(container.innerHTML).toBe('<span>loading</span>');

// Hydration suspends because the data for the shell hasn't loaded yet
await clientAct(async () => {
ReactDOMClient.hydrateRoot(container, <App />, {
onCaughtError(error) {
Scheduler.log('onCaughtError: ' + error.message);
},
onUncaughtError(error) {
Scheduler.log('onUncaughtError: ' + error.message);
},
onRecoverableError(error) {
Scheduler.log('onRecoverableError: ' + error.message);
},
});
});

assertLog(['onCaughtError: plain error']);
expect(container.textContent).toBe('Caught an error: plain error');
});

it('client renders when a client error is thrown in an error boundary', async () => {
let isClient = false;

function Throws() {
if (isClient) {
throw new Error('plain error');
}
return <div>Hello world</div>;
}

class ErrorBoundary extends React.Component {
state = {error: null};
static getDerivedStateFromError(error) {
return {error};
}
render() {
if (this.state.error) {
return <div>Caught an error: {this.state.error.message}</div>;
}
return this.props.children;
}
}

function App() {
return (
<ErrorBoundary>
<Throws />
</ErrorBoundary>
);
}

// Server render
await serverAct(async () => {
const {pipe} = ReactDOMFizzServer.renderToPipeableStream(<App />, {
onError(error) {
Scheduler.log('onError: ' + error.message);
},
});
pipe(writable);
});
assertLog([]);

expect(container.innerHTML).toBe('<div>Hello world</div>');

isClient = true;

// Hydration suspends because the data for the shell hasn't loaded yet
await clientAct(async () => {
ReactDOMClient.hydrateRoot(container, <App />, {
onCaughtError(error) {
Scheduler.log('onCaughtError: ' + error.message);
},
onUncaughtError(error) {
Scheduler.log('onUncaughtError: ' + error.message);
},
onRecoverableError(error) {
Scheduler.log('onRecoverableError: ' + error.message);
},
});
});

assertLog(['onCaughtError: plain error']);
expect(container.textContent).toBe('Caught an error: plain error');
});

it('client renders when a hydration pass error is thrown in an error boundary', async () => {
let isClient = false;
let isFirst = true;

function Throws() {
if (isClient && isFirst) {
isFirst = false; // simulate a hydration or concurrent error
throw new Error('plain error');
}
return <div>Hello world</div>;
}

class ErrorBoundary extends React.Component {
state = {error: null};
static getDerivedStateFromError(error) {
return {error};
}
render() {
if (this.state.error) {
return <div>Caught an error: {this.state.error.message}</div>;
}
return this.props.children;
}
}

function App() {
return (
<ErrorBoundary>
<Throws />
</ErrorBoundary>
);
}

// Server render
await serverAct(async () => {
const {pipe} = ReactDOMFizzServer.renderToPipeableStream(<App />, {
onError(error) {
Scheduler.log('onError: ' + error.message);
},
});
pipe(writable);
});
assertLog([]);

expect(container.innerHTML).toBe('<div>Hello world</div>');

isClient = true;

// Hydration suspends because the data for the shell hasn't loaded yet
await clientAct(async () => {
ReactDOMClient.hydrateRoot(container, <App />, {
onCaughtError(error) {
Scheduler.log('onCaughtError: ' + error.message);
},
onUncaughtError(error) {
Scheduler.log('onUncaughtError: ' + error.message);
},
onRecoverableError(error) {
Scheduler.log('onRecoverableError: ' + error.message);
},
});
});

assertLog([
'onRecoverableError: plain error',
'onRecoverableError: There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering.',
]);
expect(container.textContent).toBe('Hello world');
});
});
7 changes: 7 additions & 0 deletions packages/react-reconciler/src/ReactFiberThrow.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,13 @@ function throwException(
return false;
}
case ClassComponent:
if (getIsHydrating() && sourceFiber.mode & ConcurrentMode) {
// If we're hydrating and got here, it means that we didn't find a suspense
// boundary above so it's a root error. In this case we shouldn't let the
// error boundary capture it because it'll just try to hydrate the error state.
// Instead we let it bubble to the root and let the recover pass handle it.
break;
}
// Capture and retry
const errorInfo = value;
const ctor = workInProgress.type;
Expand Down

0 comments on commit 5d4b758

Please sign in to comment.