Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ng-http-loader
Advanced tools
[![CI](https://github.com/mpalourdio/ng-http-loader/actions/workflows/main.yml/badge.svg)](https://github.com/mpalourdio/ng-http-loader/actions/workflows/main.yml) [![Coverage Status](https://coveralls.io/repos/github/mpalourdio/ng-http-loader/badge.svg?b
Use the fork, Luke. PR without tests will likely not be merged.
To install this library, run:
$ npm install ng-http-loader --save / yarn add ng-http-loader
This package provides an HTTP Interceptor, and some spinner components (All from SpinKit at the moment). The HTTP interceptor listens to all HTTP requests and shows a spinner / loader indicator during pending HTTP requests.
ng-http-loader | Angular |
---|---|
>=0.1.0 <0.4.0 | ^4.3.0 |
>=0.4.0 <1.0.0 | ^5.0.0 |
>=1.0.0 <3.2.0 | ^6.0.0 |
>=3.2.0 <5.1.0 | ^7.0.0 |
>=6.0.0 <7.0.0 | ^8.0.0 |
>=7.0.0 <8.0.0 | ^9.0.0 |
>=8.0.0 <9.0.0 | ^10.0.0 |
>=9.0.0 | ^11.0.0 |
>=10.0.0 | ^12.0.0 |
>=11.0.0 | ^13.0.0 |
>=12.0.0 | ^14.0.0 |
>=13.0.0 | ^15.0.0 |
>=14.0.0 | ^16.0.0 |
>=15.0.0 | ^17.0.0 |
>=16.0.0 | ^18.0.0 |
>=17.0.0 | ^19.0.0 |
If you experience errors like below, please double-check the version you use.
ERROR in Error: Metadata version mismatch for module [...]/angular/node_modules/ng-http-loader/ng-http-loader.module.d.ts, found version x, expected y [...]
Performing HTTP requests with the HttpClient
API is mandatory. Otherwise, the spinner will not be fired at all.
From your Angular root component (app.component.ts
for example):
@Component({
selector: 'app-root',
standalone: true,
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
imports: [NgHttpLoaderComponent] <====== import the component
})
In your app.component.html
, simply add:
<ng-http-loader></ng-http-loader>
At last, configure your ApplicationConfig
like following:
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
import { provideRouter } from '@angular/router';
import { NgHttpLoaderModule } from 'ng-http-loader';
import { routes } from './app.routes';
import { provideHttpClient, withInterceptors } from '@angular/common/http';
import { pendingRequestsInterceptor$ } from 'ng-http-loader';
export const appConfig: ApplicationConfig = {
providers: [
provideRouter(routes),
provideHttpClient(withInterceptors([pendingRequestsInterceptor$])),
],
};
You can customize the following parameters:
<ng-http-loader
[backdrop]="false"
[backgroundColor]="'#ff0000'"
[debounceDelay]="100"
[extraDuration]="300"
[minDuration]="300"
[opacity]=".6"
[backdropBackgroundColor]="'#777777'"
[spinner]="spinkit.skWave">
</ng-http-loader>
To specify the spinner type this way, you must reference the Spinkit
const as a public property in your app.component.ts:
import { Component } from '@angular/core';
import { Spinkit } from 'ng-http-loader'; // <============
@Component({
selector: 'app-root',
standalone: true,
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
imports: [NgHttpLoaderComponent]
})
export class AppComponent {
public spinkit = Spinkit; // <============
}
The different spinners available are referenced in this file.
Otherwise, you can reference the spinner type as a simple string:
<ng-http-loader spinner="sk-wave"></ng-http-loader>
You can define your own spinner component in place of the built-in ones. The needed steps are:
app.component.ts
entryComponent
component selector like this:import { Component } from '@angular/core';
import { AwesomeComponent } from 'my.awesome.component';
@Component({
selector: 'app-root',
standalone: true,
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
imports: [NgHttpLoaderComponent]
})
export class AppComponent {
public awesomeComponent = AwesomeComponent;
}
<ng-http-loader [entryComponent]="awesomeComponent"></ng-http-loader>
You can find some examples here and here.
You can filter the HTTP requests that shouldn't be caught by the interceptor by providing an array of regex patterns:
<ng-http-loader [filteredUrlPatterns]="['\\d', '[a-zA-Z]', 'my-api']"></ng-http-loader>
You can filter the HTTP requests by providing an array of HTTP methods (case insensitive):
<ng-http-loader [filteredMethods]="['gEt', 'POST', 'PuT']"></ng-http-loader>
You can also filter the HTTP requests by providing an array of HTTP headers (case insensitive):
<ng-http-loader [filteredHeaders]="['hEaDeR', 'AnoTheR-HeAdEr']"></ng-http-loader>
You can manually show and hide the spinner if needed. You must use the SpinnerVisibilityService
for this purpose.
Sometimes, when manually showing the spinner, an HTTP request could be performed in background, and when finished, the spinner would automagically disappear.
For this reason, when calling SpinnerVisibilityService#show()
, it prevents the HTTP interceptor from being triggered unless you explicitly call SpinnerVisibilityService#hide()
.
import { Component } from '@angular/core';
import { SpinnerVisibilityService } from 'ng-http-loader';
@Component({
selector: 'my-component',
templateUrl: './my.component.html',
styleUrls: ['./my.component.css'],
})
export class MyComponent {
constructor(private spinner: SpinnerVisibilityService) {
// show the spinner
spinner.show();
//////////////
// HTTP requests performed between show && hide won't have any side effect on the spinner.
/////////////
// hide the spinner
spinner.hide();
}
}
Just use a real browser.
Each Spinkit component defined in SPINKIT_COMPONENTS can be used individually.
Tobias Ahlin, the awesome creator of SpinKit.
David Herges, the awesome developer of ng-packagr.
v17.0.0
NgModule
module support.FAQs
[![CI](https://github.com/mpalourdio/ng-http-loader/actions/workflows/main.yml/badge.svg)](https://github.com/mpalourdio/ng-http-loader/actions/workflows/main.yml) [![Coverage Status](https://coveralls.io/repos/github/mpalourdio/ng-http-loader/badge.svg?b
The npm package ng-http-loader receives a total of 9,806 weekly downloads. As such, ng-http-loader popularity was classified as popular.
We found that ng-http-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.