View on GitHub

react-loading-ui

React loaing component.

react-loading-ui

React loaing component.

npm package Build Status Dependencies Status Package Size

Getting started

Install with NPM:

$ npm install react-loading-ui

Usage

Live Demo CodeSandbox

Note: The Loading() function toggle between hide and show. But instead of toggling, you can also use ShowLoading() and HideLoading()

import React, { Component } from 'react';
import { Loading } from 'react-loading-ui'

class App extends Component {

    saveForm() {

        /* Show loading-ui */
        Loading();

        fetch(url, requestOptions)
            .then((response) => {
                if (response.ok) {
                    return response.json();
                }

                /* Hide loading-ui */
                Loading();
            });

    }
    render() {
        return (
            <div>
                <button type="button" onClick={(e) => this.saveForm()}>Save Form</button>
            </div>
        )
    }

}

export default App;
Default Settings

You can set the component settings for your entire application or whenever you call Loading({settings}).

SetDefault({
    /* Loading title */
    title: "",
    /* Loading text */
    text: "",
    /* Show progress bar */
    progress: false,
    /* Close the loading when progress is over */
    progressedClose: false,
    /* Default theme [light|dark] */
    theme: "light",
    /* Top Bar Loading */
    topBar: false,
    /* Top Bar Loading */
    topBar: false,
    /* Top Bar Loading Color */
    topBarColor: '#2764B0',
});
Loading

Loading() and ShowLoading() preview with light color theme.

Loading()

Progress

Loading({ progress: true }) and ShowLoading({ progress: true }) preview with light color theme.

With the Progress(progress) function you can ensure the loading progress, see the demo.

Porgress

Hide Loading

If you want to force hiding, you can use HideLoading() function.

CSS Overrides

If you want to customize the styles, you can use the following classNames:


Author

Barış Ateş