a4-http-overlay-interceptor

HTTP Overlay interceptor to show/hide overlay/spinner


Keywords
angular, overlay, spinner, http
License
MIT
Install
npm install a4-http-overlay-interceptor@9.0.0

Documentation

a4-http-overlay-interceptor

Angular 4 Http Overlay Interceptor

How-To

Install

npm install a4-http-overlay-interceptor

app.module.ts

  1. Add HttpOverlayModule to imports of the app.module.ts.
...
import { HttpOverlayModule } from 'a4-http-overlay-interceptor';
...

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    ...,
    HttpOverlayModule,
    ...
  ],
  ...
})

Inject the service

constructor(private httpOverlayService: HttpOverlayService) { }

Show/Hide the Spinner

this.httpOverlayService.setOverlayCallBacks(
    () => {
        ... // show spinner code
    }, () => {
        ... // hide spinner code
    }
);