Easy loading spinner component and management service for React apps.
npm install @simply007org/react-spinners



A library for easily managing loading spinners in complex React applications.
:star: This library is basically a clone of @chevtek/react-spinners with this pull request merged.
> $ npm i @simply007org/react-spinners --save
If you're running npm v8 or higher then --save is implied if you don't include it.
First import the Spinner component and use it anywhere in your app.
``jsx
// ./src/App.jsx
import * as React from 'react';
import { Spinner } from '@simply007org/react-spinners';
export default class YourComponent extends React.Component {
...
render() {
return (
Now just import the
spinnerService wherever you need it.`javascript
// ./src/services/yourService.jsimport { spinnerService } from '@simply007org/react-spinners';
function beginSomeOperation() {
spinnerService.show('mySpinner');
doSomething().then(() => {
spinnerService.hide('mySpinner');
});
}
`@Simply/react-spinners contains a singleton instance of SpinnerService for your convenience and as you've seen above all you have to do is import and use it. Optionally, you can create your own instance of the SpinnerService and pass that to your Spinner components instead. This is useful in certain situations such as centralizing all your dependencies to be used for dependency injection.`jsx
import { Spinner, SpinnerServie } from '@simply007org/react-spinners';const yourCustomSpinnerService = new SpinnerService();
...
function SomeDumbComponent() {
return (
Loading...
);
}
`In this way you can declare the spinner service in a centralized location and have greater control over where you store this singleton.
---
Spinner Component
The spinner component gives you several options.
$3
The name attribute is required. It is what you must pass to the service when trying to show/hide that specific spinner.
`jsx
`$3
Optionally a group name may be specified so that you can show/hide groups of spinners.
`jsx
``javascript
this.spinnerService.showGroup('foo');
`$3
By default all spinners are hidden when first registered. You can set a spinner to be visible by default by setting the
show property to true.`jsx
`$3
Passing in a loading image is the simplest way to create a quick spinner.
`jsx
`If you want to disable the loading image entirely then simply do not specify the
loadingImage property and an image won't be used. If you don't include the loadingImage option then be sure to specify some custom markup within the spinner component itself so it can be used instead.$3
If you need more control over the kind of spinner you want to display, beyond just a simple animated image. You are able to supply any custom markup that you need by simply nesting it within the spinner component. Any content will be projeced into the spinner template below the
loadingImage if one was specified.`jsx
Loading...
`Content projection is the most common way to use the
SpinnerComponent as it allows you to pass in custom markup and use CSS animations instead of just an animated .gif image.---
Spinner Service
The most common way of interacting with your spinners is via the
spinnerService. This service can be injected just like any other Angular service. Once you have reference to the service you can take advantage of several methods.`javascript
import { spinnerService } from '@simply007org/react-spinners';
import * as axios from 'axios'; // replace with your preferred ajax request library
function loadData() {
spinnerService.show('mySpinner');
axios.get('/some/url/for/data/')
.then(res => {
spinnerService.hide('mySpinner');
// do stuff with res
})
.catch(err => {
spinnerService.hide('mySpinner');
// log error
});
}
`$3
The
show method allows you to display a specific spinner by name.`jsx
``javascript
spinnerService.show('mySpinner');
`$3
Works exactly like
show but hides the spinner element.$3
The
showGroup method allows you to display all spinners with the same group name.`jsx
``javascript
spinnerService.showGroup('foo');
`Spinners 1 and 2 would show but spinner 3 would not since it is not part of group "foo".
$3
Works exactly the same as
showGroup except it hides the spinners instead.$3
Hopefully it's obvious that this method will show every single spinner registered with the service. This method is rarely used but is there for parity just in case.
$3
The
hideAll method is identical to showAll except it hides every spinner that is registered. This method also isn't used very often but is extremely useful in global error handlers. We all know how much users HATE frozen spinners, right?$3
The
isShowing` method returns a boolean indicating whether or not the specified spinner is currently showing.