Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-loading-progress

wheatandcat31MIT1.0.21TypeScript support: included

Loading display components

readme

react-loading-progress

npm version

Loading display components

Installation

npm i react-loading-progress

Usage

src

import React from "react"
import Button from "material-ui/Button"
import Loading from "react-loading-progress"

export default () => (
  <Loading loading={true} error={false}>
    <table>
      <thead>
        <tr>
          <th>id</th>
          <th>name</th>
          <th>description</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>1</td>
          <td>foo</td>
          <td>baz</td>
        </tr>
        <tr>
          <td>2</td>
          <td>bar</td>
          <td>baz</td>
        </tr>
      </tbody>
    </table>
  </Loading>
)

Props

Loading

import Loading from "react-loading-progress"

render ( <Loading loading={true} error={false} icon={<div>foo</div>} >...)
name Type default Description
loading boolean false loading display
error boolean false error display
icon node (default loading icon) Use when you want to customize loading display

Progress

import { Progress } from "react-loading-progress"

render ( <Progress isCheckRow>...)
name Type default Description
placement center,left.right center Display position
mask boolean false Display mask
noChild boolean false Do not display children while loading
errorNoChild boolean false Do not display children while error
errorText string null Text to display on error
size number 1 Loading display size
heightSize number 1 Loading display height size
widthSize number 1 Loading display width size
maxHeight number 100 Maximum height in loading (px)
maxWidth number 100 Maximum width in loading (px)
ripple boolean false on ripple effect
update boolean false display updating

DEMOS

changelog

2.0.6

Version 2.0.4 adds support for React Native by clarifying in package.json that the browser environment does not support Node.js domains. Why this is necessary, we leave as an exercise for the user.

2.0.3

Version 2.0.3 fixes a bug when adjusting the capacity of the task queue.

2.0.1-2.02

Version 2.0.1 fixes a bug in the way redirects were expressed that affected the function of Browserify, but which Mr would tolerate.

2.0.0

Version 2 of ASAP is a full rewrite with a few salient changes. First, the ASAP source is CommonJS only and designed with Browserify and Browserify-compatible module loaders in mind.

The new version has been refactored in two dimensions. Support for Node.js and browsers have been separated, using Browserify redirects and ASAP has been divided into two modules. The "raw" layer depends on the tasks to catch thrown exceptions and unravel Node.js domains.

The full implementation of ASAP is loadable as require("asap") in both Node.js and browsers.

The raw layer that lacks exception handling overhead is loadable as require("asap/raw"). The interface is the same for both layers.

Tasks are no longer required to be functions, but can rather be any object that implements task.call(). With this feature you can recycle task objects to avoid garbage collector churn and avoid closures in general.

The implementation has been rigorously documented so that our successors can understand the scope of the problem that this module solves and all of its nuances, ensuring that the next generation of implementations know what details are essential.

The new version has also been rigorously tested across a broad spectrum of browsers, in both the window and worker context. The following charts capture the browser test results for the most recent release. The first chart shows test results for ASAP running in the main window context. The second chart shows test results for ASAP running in a web worker context. Test results are inconclusive (grey) on browsers that do not support web workers. These data are captured automatically by Continuous Integration.

Browser Compatibility

Compatibility in Web Workers