fix(core): make error boundary fallback a component instead of a callback (#7368)

This commit is contained in:
Joshua Chen 2022-05-07 22:35:57 +08:00 committed by GitHub
parent 77fa3d1470
commit f29bb73300
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 18 deletions

View file

@ -75,10 +75,14 @@ declare module '@theme-original/*';
declare module '@theme-init/*';
declare module '@theme/Error' {
export interface Props {
readonly error: Error;
readonly tryAgain: () => void;
}
import type {ComponentProps} from 'react';
import type ErrorBoundary from '@docusaurus/ErrorBoundary';
type ErrorProps = ComponentProps<
NonNullable<ComponentProps<typeof ErrorBoundary>['fallback']>
>;
export interface Props extends ErrorProps {}
export default function Error(props: Props): JSX.Element;
}
@ -119,11 +123,13 @@ declare module '@docusaurus/constants' {
}
declare module '@docusaurus/ErrorBoundary' {
import type {ReactNode} from 'react';
import type ErrorComponent from '@theme/Error';
import type {ReactNode, ComponentType} from 'react';
export interface Props {
readonly fallback?: typeof ErrorComponent;
readonly fallback?: ComponentType<{
readonly error: Error;
readonly tryAgain: () => void;
}>;
readonly children: ReactNode;
}
export default function ErrorBoundary(props: Props): JSX.Element;

View file

@ -33,17 +33,13 @@ export default class ErrorBoundary extends React.Component<Props, State> {
const {error} = this.state;
if (error) {
const fallback = this.props.fallback ?? DefaultFallback;
return fallback({
error,
tryAgain: () => this.setState({error: null}),
});
const Fallback = this.props.fallback ?? DefaultFallback;
return (
<Fallback error={error} tryAgain={() => this.setState({error: null})} />
);
}
return (
children ??
// See https://github.com/facebook/docusaurus/issues/6337#issuecomment-1012913647
null
);
// See https://github.com/facebook/docusaurus/issues/6337#issuecomment-1012913647
return children ?? null;
}
}

View file

@ -55,7 +55,7 @@ This component doesn't catch build-time errors and only protects against client-
#### Props {#errorboundary-props}
- `fallback`: an optional callback returning a JSX element. It will receive two props: `error`, the error that was caught, and `tryAgain`, a function (`() => void`) callback to reset the error in the component and try rendering it again.
- `fallback`: a React component. The error boundary will render the component with two props: `error`, the error that was caught, and `tryAgain`, a function (`() => void`) callback to reset the error in the component and try rendering it again.
### `<Head/>` {#head}