1.0.0-rc.3 • Published 4 years ago

@gdo-bzh/error-boundary v1.0.0-rc.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

version

error-boundary

NPM JavaScript Style Guide

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.

more info here

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