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

angular-cog-alert

v1.0.0

Published

Simple alert message directive/factory for angularjs.

Downloads

4

Readme

travis #Angular-CoG-Alert A simple alerting directive/factory for AngularJS.

Demo

angular-cog-alert

Getting Started

###Installation Downlaod the source as a zip file above or install via Bower.

bower install --save angular-cog-alert

Add references to angular-cog-alert.css & angular-cog-alert.js.

<link rel="stylesheet" href="css/angular-cog-alert.css">
<script src="js/angular-cog-alert.js"></script>

Add dependency to your angular module.

var myApp = angular.module('app', ['cogAlert']);

Add the cog-alerts directive to your page.

<cog-alerts></cog-alerts>

Inject the Alerting factory anywhere you want to add alerts, and then add them as necessary.

myApp.controller('myController', function ($scope, Alerting) {
    $scope.doSomething = function () {
        //do something
        Alerting.addDanger('Danger Will Robinson!');
    };
});

Error Handling

Use the errorHandler function on the Alerting factory to gracefully handle exceptions from rejected promsises.

myApp.controller('serviceController', function ($scope, someService, Alerting) {
    $scope.callService = function () {
        someService.getSomePromise().then(function () {
            //it worked!!
            Alerting.addSuccess('Hooray for not sucking!');
        })
        .catch(Alerting.errorHandler('A promise has been broken and I have died a little inside.'));
    };
});

Styling & Animations

The alerts all have the bootstrap alert-* classes applied to them. You can use custom class names by using the addAlert() method on the Alerting factory, which will result in alert-[type] classes being applied.

For animations, you can use whatever method you please. The demo uses ngAnimate and animate.css to apply the flipInY/flipOutY animations when alerts are shown/hidden. The demo applies the animation to .alert.ng-enter and .alert.ng-leave.

API

  • Alerting Factory
    • addAlert(type, message)

      Add an alert of the given type to the list with the given message. Will apply the class .alert-[type] to the alert.

    • addInfo(message)

      Add an info alert with the given message to the list. Uses the bootstrap class .alert-info.

    • addSuccess(message)

      Add an success alert with the given message to the list. Uses the bootstrap class .alert-success.

    • addWarning(message)

      Add an warning alert with the given message to the list. Uses the bootstrap class .alert-warning.

    • addDanger(message)

      Add an info alert with the given message to the list. Uses the bootstrap class .alert-danger.

    • errorHandler(message) Returns a function that can be consumed by the catch method of a $q promise. Will add the given message as a danger alert.

Guidelines for contributors

MIT © bodiddlie