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

ngprophet

v1.0.0

Published

A very lean AngularJs Directive to display toast messages on web pages

Downloads

3

Readme

ngProphet

A very lean AngularJS directive to display toast messages on web pages. This project adheres to Semantic Versioning. Sometimes I do screw up though.

Version 1.0.0

default

Table of Contents

Installation

Get the files:

Choose any of the ways to get prophet:

  • clone from github
  • Install from bower

Find the files

You'll see the files in the dist folder:

dist
├── css
│   ├── ngProphet.css
│   └── ngProphet.min.css
└── js
    └── ngProphet.js

Wire it up

Include the css and js files in your webpage:

<link rel="stylesheet" href="dist/css/prophet.min.css">

<script src="dist/js/ngProphet.js"></script>

<ul class="prophet"></ul>

Inject the directive in your angular module

angular.module('yourApp', ['ngProphet'])

API

ngProphet exposes a $message service. You should inject this service in whichever scope you need the toast messages to display. Optionally, ngProphet also exposes a configuration API via $messageProvider. If you want to customize the directive, you should do it via $messageProvider in Angular's configuration phase. More on that here Once the configuration part of your angular module is complete, you can then inject $message service in the dependency injections and use it to show the toast messages.

The toast message stays for a default duration of 4000 milliseconds or until the user clicks on it. After which, the toast message is removed from the DOM.

Simplest display

angular.module('yourApp',['ngProphet'])
    .controller('someCtrl', ['$message', function($message){
        $message.show("You're hella rad!");
    }])

Callback

You can also provide a callback to every toast message. The callback will be triggered after the toast message is removed automatically or when the user clicks on the toast message. The callback sends the autogenerated ID of the toast message (which can be overridden).

callback no-callback

angular.module('yourApp',['ngProphet'])
    .controller('someCtrl', ['$message', function($message){
        $message.show("You're hella rad!", function(id){
            //do stuff after user clicks on the toast or when the the toast goes away
        });
    }])

Options

You can also optionally include a set of options as a second argument (followed by the callback if any ) on every toast message. If the values are not implemented, the default values take up. The following are the keys that options takes

  • id The id is autogenerated per toast message.

    • default: auto-generated
    • Type: number
  • type Prophet has 3 presets types: success, error and default. You can also set more presets. Click here to see how.

    error

    • default: "default"
    • Type: string
  • duration The time each toast message stays on the web page before disappearing. Takes value in miliseconds.

    • default: 4000
    • Type: number
  • class You can further customize the look of every toast message by providing extra CSS classes to override. Takes a single string of class names seperated by spaces.

    • default: ""
    • Type: string
Example
angular.module('yourModule',['ngProphet'])
   .controller('someCtrl', ['$scope', '$message', function($scope, $message){
       $message.show("Dexter, what's that?", {
           type:'success',
           duration:8000,
           class:'thin-border transparent-10 glass'
           }, function(id){
           console.log(id);
           //do something else here after the user clicks on it
       })        
   }]) 

Custom Types

You can also add more presets by providing the background-color, color and type for more uses. Please note, all the keys are mandatory. Adding new presets must be done in the configuration phase of your angular application's life-cycle by triggering the ngProphet's $messageProvider API.

angular.module('yourApp',['ngProphet'])
    .config(['$messageProvider', function($messageProvider){
        $messageProvider.types([{
            "type":"flash",
            "backgroundColor":"grey",
            "color":"white"
        }, {
            "type":"processing",
            "backgroundColor":"#fafafa",
            "color":"grey"
        }])
        //$messageProvider.types() accepts a single object or an array of objects
    }])
    .controller('someCtrl', ['$scope', '$message', function($scope, $message){
            if($scope.processing) $message.show("Processing your transaction...", {type:'processing'})
            else $message.show('Done!', {duration:10000, type:"success"})
    }])
            

stackUp

License

Open source under the MIT License. All rights reserved.