ngProgress

⏳ Angular provider for slim loading bar at the top of the page ( inspired by https://github.com/rstacruz/nprogress )

Github stars Tracking Chart

ngProgress.js

Gitter

Build Status

CDNJS

ngProgress is a provider for angular for showing a loading status of something.
Use cases can be fetching external resources, showing a action taking more-than-normal length
or simple loading between the page views. Prefereble, only for resource heavy sites.

Usage

Download ngProgress.js manually or install with bower

$ bower install ngprogress

Include ngProgress.js ( or ngprogress.min.js) and ngProgress.css in your website.

<script src="app/components/ngprogress/ngprogress.min.js"></script>
<link rel="stylesheet" href="ngProgress.css">

Set ngProgress as a dependency in your module

var app = angular.module('progressApp', ['ngProgress']);

Inject ngProgressFactory in your controller

var MainCtrl = function($scope, $timeout, ngProgressFactory) {}

Create a instance of the progressbar

$scope.progressbar = ngProgressFactory.createInstance();

Use with the API down below

$scope.progressbar.start();
$timeout(function() {
  $scope.progressbar.complete()
}, 1000);

API

  • start - Starts the animation and adds between 0 - 5 percent to loading
    each 400 milliseconds. Should always be finished with ngProgress.complete()
    to hide it
ngProgress.start();
  • setHeight - Sets the height of the progressbar. Use any valid CSS value
    Eg '10px', '1em' or '1%'
ngProgress.setHeight('10px');
  • setColor - Sets the color of the progressbar and it's shadow. Use any valid HTML color
ngProgress.setColor('#fff');
  • status - Returns on how many percent the progressbar is at. Should'nt be needed
var status = ngProgress.status();
  • stop - Stops the progressbar at it's current location
ngProgress.stop();
  • set - Set's the progressbar percentage. Use a number between 0 - 100. If 100 is provided, complete will be called.
ngProgress.set(100);
  • reset - Resets the progressbar to percetage 0 and therefore will be hided after it's rollbacked
ngProgress.reset();
  • complete - Jumps to 100% progress and fades away progressbar
ngProgress.complete();
  • setParent - Changes the parent of the DOM element which visualizes the progress bar
ngProgress.setParent(document.getElementById('container'));
var element = ngProgress.getDomElement();

Releasing a new version

The current (and quite hacky solution, honestly) to make a new release:

  • Update package.json to have new version.

  • Commit changes

  • Run bower version patch, minor, major

Publishing new Github-pages version

Merge master into gh-pages, run grunt and push to Github

License

The MIT License (MIT)

Copyright (c) 2013 Victor Bjelkholm

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Overview

Name With Ownervictorb/ngProgress
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 3)
Platform
License:MIT License
Release Count15
Last Release Namev1.1.3 (Posted on )
First Release Name0.0.1 (Posted on 2013-08-21 13:38:44)
Created At2013-08-21 03:44:05
Pushed At2018-11-07 23:07:44
Last Commit At2018-11-07 23:07:44
Stargazers Count1.5k
Watchers Count38
Fork Count235
Commits Count166
Has Issues Enabled
Issues Count85
Issue Open Count16
Pull Requests Count29
Pull Requests Open Count6
Pull Requests Close Count15
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top