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

ng-alerts

v1.0.6

Published

An angular extension to manager front-end notifications and alerts.

Downloads

233

Readme

ng-alerts

An angular extension to manager front-end notifications and alerts.

Status

dependency Status devDependency Status

About

LIVE DEMO: http://mrsteele.github.io/ng-alerts/

I made this plugin in an attempt to manage any and all user-faces notifications and alerts. I wanted it clean, extensible, and scalable.

Prerequisites

Only a few prerequisites to use this plugin (a prereq's prereqs listed as well).

  • AngularJS
  • Angular-UI Bootstrap
    • Bootstrap

Installation

Node

npn install ng-alerts --save

Bower

bower install ng-alerts --save

ng-alerts is made to be flexible for the benefit of the developer. Mix and match whatever systems you want to achieve whatever you would like!.

If you want to see a quick example, just open /test/index.html and that will let you know what to expect, otherwise read the information below.

First, you must include the module name in your dependencies list.

var testApp = angular.module('testApp', [
    'ngAlerts'
]);

ng-alerts will now be installed for you to use throughout your application. You can configure a few defaults of the application with the provider.

testApp.config(['ngAlertsProvider', function (ngAlertsProvider) {
    // Global empty list text.
    ngAlertsProvider.options.emptyListText = 'Nothing here...';
    
    // The queue timeout for new alerts.
    ngAlertsProvider.options.queueTimeout = 3000;
    
    // The queue location (top||bottom, left||right).
    ngAlertsProvider.options.queueLocation = 'bottom left';
}]);

It is recommended you interface through ngAlertsMngr to add your alerts. Use the add function to add an alert. The first argument is the message, and the seciond one (optional) is the type (defaults to "warning" but any of the bootstrap types are valid).

testApp.controller('TestCtrl', function ($scope, ngAlertsMngr) {
    $scope.createAlert = function () {
        ngAlertsMngr.add('testing', 'warning');
    };
});

Using the add function will add a notification and update all directives throughout your application.

Directives

ng-alerts-count

Use this to display the current count of notifications.

  • badge - Set this attribute to "true" if you want it to take on the appearance of a bade.
  • hide-empty - Set this to "true" if you want to completely remove the text if you have "zero" alerts.

Example

<ng-alerts-count badge="true" hide-empty="true"></ng-alerts-count>

ng-alerts-list

Displays a list of alerts, with the ability to remove them.

  • empty-text - Overrides the default empty list text.

Example

<ng-alerts-list empty-text="No alerts available"></ng-alerts-list>

ng-alerts-popover

Attaches to an element (button, a, etc...) and creates a click handler for displaying ng-alerts-list in a popover. This one uses the backbone popover directive, so all popover attributes are applicable. See https://angular-ui.github.io/bootstrap/#/popover.

Example

<button ng-alerts-popover popover-placement="left"></button>

Can I contribute?

YES! Pull requests welcome!