Package Exports
- @gdo-bzh/error-boundary
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gdo-bzh/error-boundary) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
error-boundary
React component that catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI instead of the component tree that crashed. Error boundaries catch errors during rendering, in lifecycle methods, and in constructors of the whole tree below them.
Install
yarn add @gdo-bzh/error-boundary react
Usage
import React from 'react'
const Example = () => (
<ErrorBoundary Fallback={({error, onRetry}) => (
<div>
<pre>{error.message}</pre>
<button type="button" onClick={onRetry}>retry</button>
</div>)}>
<div>somme content ...</div>
</ErrorBoundary>
)
Types
/**
* Fallback component Props
*/
export type FallbackProps = {
/**
* Error object
*/
error: Error;
/**
* retry callback
*/
onRetry: () => void;
}
type Props = {
/**
* Fallback component
*/
Fallback: React.ComponentType<FallbackProps>
/**
* logError callback to log error to the server for instance
*/
logError?: (error: Error, errorInfo: React.ErrorInfo) => void
}
License
MIT © gdo-bzh