Busy
May 24, 2016 ยท View on GitHub
Component that conditionally shows a spinner when a flag is set.
Usage
<rl-busy loading="" size=""> ... </rl-busy>
Options
loading
If the loading expression evaluates to truthy, the spinner will be shown.
size
This will set the size of the spinner. We use the following sizes: 2x, 3x, 4x, 5x, lg. This option is applied to the spinner's class attribute and prefixed with rl-.
API (Angular 2 ONLY)
trigger(waitOn: Observable<any> | Promise<any> | boolean): void
Programmatically triggers the spinner to show based on a set condition. If an observable or promise is specified, the spinner will show until an event is received, or the promise resolved. If a boolean is specified, the spinner will be shown or hidden accordingly, with no wait conditions.
Full example
A spinner with loading and size.
<rl-busy loading="true" size="2x"></rl-busy>
Output:
<i class="busy rl-2x"></i>