For Angular 6
NgBusy can show busy/loading indicators on any Promise, Observable, or on any Observable's subscription.
Rewritten from ng-busy, to allow plain observables.
Built with Angular 6.0.0
Demo
https://github.com/noskap/ng-busy-observable/
Installation
npm install --save ng-busy-observable
Link CSS
Getting Started
Import the NgBusyModule
in your root application module:
;;;
Reference your Promise in the ngBusy
directive:
;;
Moreover, the subscription of an Observable is also supported:
// ...; // ...
The Observable itself is also supported:
// ...; // ...
Directive Syntax
The ngBusy
directive expects a busy thing, which means:
- A promise
- Or an Observable's subscription
- Or an Observable
- Or an array of them
- Or a configuration object In other words, you may use flexible syntax:
<!-- Collection syntax -->
<!-- Advanced syntax -->
Event
- busyStop : Will be triggered when the busy is done
- busyStart : Will be triggered when the busy comes out.
Usage
<!-- Simple syntax -->
Options
Option | Required | Default | Details |
---|---|---|---|
busy | Required | null | A busy thing (or an array of busy things) that will cause the loading indicator to show. |
message | Optional | 'Please wait...' | The message to show in the indicator which will reflect the updated values as they are changed. |
backdrop | Optional | true | A faded backdrop will be shown behind the indicator if true. |
template | Optional | A default template component | The template can be a template or a component. If provided, the custom template will be shown in place of the default indicatory template. The scope can be augmented with a {{message}} field containing the indicator message text. |
delay | Optional | 0 | The amount of time to wait until showing the indicator. Specified in milliseconds. |
minDuration | Optional | 0 | The amount of time to keep the indicator showing even if the busy thing was completed quicker. Specified in milliseconds. |
disableAnimation | Optional | false | Disable the animation when the spinner appear |
wrapperClass | Optional | 'ng-busy-observable' | The name(s) of the CSS classes to be applied to the wrapper element of the indicator. |
templateNgStyle | Optional | { } | An object that will be assigned to the custom component assigned to template option, if one was configured (see example below in Overriding Defaults). |
Overriding Defaults
The default values of options can be overriden by configuring the provider of the BusyModule
.
In the root application module, you can do this:
;;
Credits
Rewritten from ng-busy, to allow plain observables. Which is also rewritten from devyumao's angular2-busy.
LICENSE
This project is licensed under the MIT license. See the LICENSE file for more info.