npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dipaktelangre/ng-spinner

v10.0.4

Published

Angular spinner component using font awesome icons for spinner. This is evry light weight and clean spinner component. It provide only elegent settings to customize the spinner.

Downloads

14

Readme

NgSpinner

Angular spinner component using font awesome icons for spinner. This is evry light weight and clean spinner component. It provide only elegent settings to customize the spinner.

You can use thousands spinner icons from Font Awesome !!!

Dependencies

Its depends Bootstrap and Font Awesome. So before you start please install bootstrap and font-awesome-free / font-awesome-pro if not installed.

$ npm install --save bootstrap @fortawesome/fontawesome-free

import bootstrap and font-awesome style to application

//style.scss

/* You can add global styles to this file, and also import other style files */

@import "~bootstrap/scss/bootstrap.scss";
@import "@fortawesome/fontawesome-free/scss/fontawesome.scss";
@import "@fortawesome/fontawesome-free/scss/solid.scss";
@import "@fortawesome/fontawesome-free/scss/regular.scss";

Features

  • Angular 10 Support
  • Multiple Spinners icons from font awesome
  • Configurable option through service
  • Fullscreen Mode(Enable/Disable)
  • show()/hide() methods
  • Dynamic z-index

Build/Run

npm start

Demo

Check demo project

Complete tutorial how to build spinner from scratch

Angular spinner example

Installation

ng-spinner is available via npm

Using npm:

$ npm install @dipaktelangre/ng-spinner --save

Usage

Import NgSpinnerModule in in the root module(AppModule):

import { NgModule } from "@angular/core";
// Import library module
import { NgSpinnerModule } from "ng-spinner";

@NgModule({
  imports: [NgSpinnerModule],
  schemas: [],
})
export class AppModule {}

Add NgSpinnerService service wherever you want to use the ng-spinner.

import { NgSpinnerService } from "ng-spinner";

class AppComponent implements OnInit {
  constructor(private spinnerService: NgSpinnerService) {}

  ngOnInit() {
    /** spinner starts on init */
    this.spinnerService.show();

    setTimeout(() => {
      /** spinner ends after 5 seconds */
      this.spinnerService.hide();
    }, 5000);
  }
}

Now use in your template

<ng-spinner> Any loding message here </ng-spinner>

See Demo

Methods

  • NgSpinnerService.show(name) Shows the spinner
  • NgSpinnerService.hide(name) Hides the spinner

Available Settings

SpinnerSettings {
  name: string;
  bgColor?: string;
  zIndex?: number;
  textColor?: string;
  fullscreen?: boolean;
  show?: boolean;
  spinnerColor?: string;
  spinnerIcon?: string;
  spinnerSize?: 'small' | 'medium' | 'large';
  spinnerStyle?: 'regular' | 'solid' | 'light' | 'dualtone';
}

Settings props

  • [show]: true | false. To show/hide spinner on init, default false

  • [bgColor]: #RGB color format. To set background-color for backdrop, default #000

  • [spinnerSize]: Anyone from small, medium, large. To set size of spinner, default medium

  • [spinnerColor]: Any css color format. To set color of spinner, default #fff

  • [spinnerStyle]: Choose any font-awesome icon style from regular | solid | light | dualtone. To set type of spinner, default solid

  • [fullScreen]: true or false To enable/disable fullscreen mode(overlay), default false

  • [name]: For multiple spinners To set name for spinner, default primary_spinner

  • [zIndex]: For dynamic z-index To set z-index for the spinner, default 2

Using Spinner Type

<app-spinner [settings]="spinnerSetting"> Default loader ... </app-spinner>
spinnerSetting: SpinnerSettings = {
  name: "spinner1",
  fullscreen: false,
  show: true,
  spinnerSize: "large",
};
this.spinner.show("spinner1");

Creator

Dipak Telangre

License

@dipaktelangre/ng-spinner is MIT licensed.