Package Exports
- react-topbar-progress-indicator
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 (react-topbar-progress-indicator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-topbar-progress-indicator
topbar progress indicator React component
Will simply show()
and hide()
topbar
when the component is respectively mounted and unmounted.
Since topbar is a singleton, using <TopBarProgress />
multiples times will
take this in consideration. This means that hide()
will only be called when
all <TopBarProgress />
have been unmounted.
For example, if you render 2 <TopBarProgress />
and unmount one (eg: you are doing 2
async things and only once is done), hide()
won't be called.
You will need to have both instances unmounted.
Installation
$ npm install react-topbar-progress-indicator
Usage
import TopBarProgress from "react-topbar-progress-indicator";
TopBarProgress.config({
barColors: {
"0": "#fff",
"1.0": "#fff"
},
shadowBlur: 5
});
const YourThing = () => {
return <div>{this.state.loading && <TopBarProgress />}</div>;
};
Config
Since topbar
is a singleton, you should configure via Topbar.config()
.
barThickness
(Integer, px)
The progress bar thickness in px
(default: 3).
barColors
(Object { progress: color })
Object of gradient color stops used to draw the progress bar.
Example:
barColors: {
"0": "#f00",
"0.5": "#0f0",
"1.0": "#00f",
},
shadowBlur
Integer of the shadow blur in px
(default: 10
).
shadowColor
String that represent the shadow color (hexa, default: #000
).
CONTRIBUTING
- ⇄ Pull requests and ★ Stars are always welcome.
- For bugs and feature requests, please create an issue.
- Pull requests must be accompanied by passing automated tests (
$ npm test
).