New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngx-progressbar

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-progressbar

A slim customizable progressbar for angular

  • 2.0.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
28K
decreased by-1.94%
Maintainers
1
Weekly downloads
 
Created
Source

Angular Progressbar

A nanoscopic progress bar. Featuring realistic trickle animations to convince your users that something is happening!


npm npm Build Status npm

Table of Contents

Installation

Install it with npm

npm install ngx-progressbar --save

SystemJS

If you are using SystemJS, you should also adjust your configuration to point to the UMD bundle.

In your systemjs config file, map needs to tell the System loader where to look for ngx-progressbar:

map: {
  'ngx-progressbar': 'node_modules/ngx-progressbar/bundles/ngx-progressbar.umd.js',
}

Here is a working plunker.

Usage

Import NgProgressModule in the root module

import { NgProgressModule } from 'ngx-progressbar';

@NgModule({
  imports: [
    // ...
    NgProgressModule
  ]
})

In your template

<ng-progress></ng-progress>

Add NgProgressService wherever you want to use the progressbar.

import {NgProgressService} from 'ngx-progressbar';

@Component({
 /**  */ 
})
export class SomeComponent {
  
  constructor(public progressService: NgProgressService) {
  }
  
  ngOnInit(){
      /** request started */
      this.progressService.start();
      this.http.get(url).subscribe(res){
          /** request completed */
          this.progressService.done();
      }
  }
}

NgProgressService options (functions):

  • NgProgressService.start() Shows the progress bar

  • NgProgressService.set(n) Sets a percentage n (where n is between 0-1)

  • NgProgressService.inc(n) Increments by n (where n is between 0-1)

  • NgProgressService.done() Completes the progress

NgProgressComponent options (inputs):

<ng-progress [positionUsing]="'marginLeft'" [minimum]="0.15" [maximum]="1"
             [speed]="200" [showSpinner]="false" [direction]="'rightToLeftIncreased'"
             [color]="'red'" [trickleSpeed]="250" [thick]="false" [ease]="'linear'"
></ng-progress>
  • [minimum]: between 0.0 to 1.0.

Progress initial starting value, default 0.08

  • [maximum]: between 0.0 to 1.0.

Progress maximum value, default 1.0

Progress animation ease, default linear.

  • [speed]: in milliseconds.

Transition speed, default 300.

  • [trickleSpeed]: in milliseconds.

Progress trickling speed, default 300.

  • [direction]: leftToRightIncreased, leftToRightReduced , rightToLeftIncreased, rightToLeftReduced.

Progressbar direction for LTR and RTL websites, default: leftToRightIncreased.

  • [positionUsing]: marginLeft, translate, translate3d.

Positioning method, default: marginLeft

  • [color]: any color format #1eb77f, brown, rgb(30, 183, 127).

Set the progressbar color, default: #29d

  • [showSpinner]: boolean

Display the spinner, default: true.

  • [thick]: boolean

A thicker size of the progressbar, default: false.

  • [toggle]: boolean

Toggle the progressbar (alternate to start/done), . default false.

Automagic loading bar

If you only need a progressbar for multiple requests, there is a simple plug and play provider. It does the trick.

For Http
import { BrowserXhr, HttpModule } from '@angular/http';
import { NgProgressModule, NgProgressBrowserXhr } from 'ngx-progressbar';

@NgModule({
 providers: [
   // ...
   { provide: BrowserXhr, useClass: NgProgressBrowserXhr }
 ],
 imports: [
   // ...
   HttpModule,
   NgProgressModule
 ]
})
For HttpClient (Angular >= 4.3)
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { NgProgressModule, NgProgressInterceptor } from 'ngx-progressbar';

@NgModule({
 providers: [
   // ...
   { provide: HTTP_INTERCEPTORS, useClass: NgProgressInterceptor, multi: true }
 ],
 imports: [
   // ...
   HttpClientModule,
   NgProgressModule
 ]
})

And just put the component in the template

 <ng-progress></ng-progress>

The progress will start and complete automatically with your HTTP requests. no need to use NgProgressService to call start()/done() manually.

Issues

If you identify any errors in the library, or have an idea for an improvement, please open an issue. I am excited to see what the community thinks of this project, and I would love your input!

Author

Murhaf Sousli

Credits

Inspired by NProgress.js by Rico Sta. Cruz.

Keywords

FAQs

Package last updated on 04 Sep 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc