1.0.14 • Published 2 months ago

react-global-loading v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

React Global Loading

Example

npm version downloads license

React simple global loading package

Installation

With Yarn:

yarn add react-global-loading

With npm:

npm install --save react-global-loading

Getting Started

Add the GlobalLoading to your app first (should be at root component like index.js or app.js). It will take care of rendering global loading . Now you can trigger globalLoading.show() and globalLoading.hide() from anywhere!

import { GlobalLoading, showLoading } from 'react-global-loading';

const App = () => {
  const show = () => {
    showLoading(true);
    setTimeout(() => {
      showLoading(false);
    }, 1000);
  };

  return (
    <div>
      <button onClick={show}>Show Loading</button>
      <GlobalLoading />
    </div>
  );
};

Other way to trigger loading

import { showLoading } from 'react-global-loading';
showLoading(true); // show
showLoading(false); // hide

import { show, hide } from 'react-global-loading';
show(); // show
hide(); // hide

import { globalLoading } from 'react-global-loading';
globalLoading.show(); // show
globalLoading.hide(); // hide

Available Loaders, PropTypes, and Default Values

Default props:

  children: React.ReactNode;
  WrapperComponent?: (props: any) => ReactElement;
  backgroundColor?: string;
  loadingSize?: number;
  loadingColor?: string;
  loadingType?:
    | 'spin'
    | 'bars'
    | 'bubbles'
    | 'cubes'
    | 'cylon'
    | 'spin'
    | 'spinningBubbles'
    | 'spokes';

children prop

children will replace default loading icon

<GlobalLoading>
  <ReactLoading /> // OR your custom loading component
<GlobalLoading/>

WrapperComponent prop

The wrapper component ( background screen )

<GlobalLoading WrapperComponent={() => <div style={style} />} />;

// suggested style
style = {
  position: 'fixed',
  top: 0,
  left: 0,
  right: 0,
  bottom: 0,
  width: '100vw',
  height: '100vh',
  backgroundColor: 'rgba(0, 0, 0, 0.6)',

  display: 'flex',
  justifyContent: 'center',
  alignItems: 'center'
};

zIndex, backgroundColor, loadingSize, loadingThickness, loadingSpeed, loadingColor, and loadingType props

Style of the default loading component

1.0.14

2 months ago

1.0.12

2 months ago

1.0.11

4 months ago

1.0.10

4 months ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago