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

angular2-notifications-zth

v1.0.5

Published

> A light and easy to use notifications library for Angular 2. ~~It features both regular page notifications (toasts) and push notifications.~~

Downloads

9

Readme

Angular2-Notifications

A light and easy to use notifications library for Angular 2. ~~It features both regular page notifications (toasts) and push notifications.~~

Build Status NPM Version NPM Downloads

Push Notifications have bean moved to a separate library ng-push

Table of Contents

Example

Take a look at the live demo here: Live Demo

Setup

Install the library

npm install --save angular2-notifications
# Or using Yarn for a faster installation
yarn add angular2-notifications

SystemJS

Map the library in your system.config.js if you're using SystemJs.

var map = {
    'angular2-notifications': 'node_modules/angular2-notifications'
}

var packages = {
    'angular2-notifications': { main: './dist/index.js', defaultExtension: 'js' }
}

Webpack

If you're using Webpack >= 2, just include the library in your main.ts or vendor.ts file

import 'angular2-notifications';

Setup

Import the SimpleNotificationsModule in to your root AppModule (it will not work if you try to import it into a shared module)

import { SimpleNotificationsModule } from 'angular2-notifications';

@NgModule({
    imports: [
        BrowserModule,
        // Animations need to be imported in to your project to use the library
        BrowserAnimationsModule, 
        SimpleNotificationsModule.forRoot()
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

Add the SimpleNotificationsComponent in to the component where you want to use the notifications. Or in your top level component for use in child components.

...
template: '<simple-notifications></simple-notifications>'
...

You will also need to use the NotificationsService in your component to create or remove the notifications.

...
constructor( private _service: NotificationsService ) {}
...

The onCreate and onDestroy Event Emitters emit the notification that was created or destroyed you can utilise this functionality like this:

<simple-notifications [options]="options" (onCreate)="created($event)" (onDestroy)="destroyed($event)"></simple-notifications>

If your app cannot find the built JS files for this package, you may need to tell your build script to scan the angular2-notifications directory. See the related issue #25. Example:

'angular2-notifications/*.+(js|js.map)',
'angular2-notifications/lib/*.+(js|js.map)'

Creating Notifications

This are the currently available access methods:

  • The access methods return the constructed notification along with the created id.

| Method | Description ---| --- success(title: any, content?: any, override?: any) | Creates a success notification with the provided title and content. error(title: any, content?: any, override?: any) | Creates an error notification with the provided title and content. alert(title: any, content?: any, override?: any) | Creates an alert notification with the provided title and content. warn(title: any, content?: any, override?: any) | Creates a warn notification with the provided title and content. info(title: any, content?: any, override?: any) | Creates an info notification with the provided title and content. bare(title: any, content?: any, override?: any) | Creates a bare notification with the provided title and content. This notification type is best used when adding custom html. create(title: any, content: any = '', type: string = 'success', override?: any) | Use this method to create any notification type ['success', 'error', 'alert', 'info', 'bare']. html(html: any, type: string = 'success', override?: any, icon: string = 'bare') | Use this method to create a notification with custom html. By specifying an icon (success, error, alert, info or warn) you can use the default icons in addition to your custom html. If you do not explicitly pass an icon param no icon will be shown by default. remove(id?: string) | Removes the notification that has the provided id or removes all currently open notifications if no id was provided.

The title and content arguments can be a string, html string or TemplateRef.

Example using TemplateRef

To use a TemplateRef in the title or content you need to create it in a component template:

<ng-template #example>
    <p>Simple example</p>
</ng-template>

Then you need to somehow get it to the component:

  @ViewChild('example') example: TemplateRef<any>;

  open() {
    this._service.success(this.example);
  }

You could also pass the template through the open() method:

    open(temp: TemplateRef<any>) {
        this._service.success(temp);
    }

Subscribing to clicks

If you are interested in the clicks that happen on a notification you have the possibility to subscribe to a EventEmitter. The methods (success, error, alert, warn, info, warn, bare, create and html) from the NotificationsService return an Object of type Notification.

const toast = this.notificationsService.success('Item created!', 'Click to undo...', {
      timeOut: 3000,
      showProgressBar: true,
      pauseOnHover: true,
      clickToClose: true
    });

The returned object has a click property with an EventEmitter on it which you can subscribe to. Your callback then gets notified with the click event at each click that happens on your Notification.

toast.click.subscribe((event) => {
    doSomething(event)
});

If you have configured the notification to close when the icon is clicked, an EventEmitter exists to listen for those clicks as well.

const toast = this.notificationsService.success('Item created!', 'Click to undo...', {
      timeOut: 3000,
      showProgressBar: true,
      pauseOnHover: true,
      clickToClose: false,
      clickIconToClose: true
    });

With the corresponding clickIcon property as above.

toast.clickIcon.subscribe((event) => {
    doSomething(event)
});

Options

Global options can be added in two ways. They can be passed through the forRoot() method on the module.

SimpleNotificationsModule.forRoot({
    ...options
})

You can also pass them in to the root component.

<simple-notifications [options]="options"></simple-notifications>

This are the current options that can be set globally:

Option | Type | Default | Description | ------------ | ------------- | ------------- | ------------- position | ["top" or "bottom" or "middle", "right" or "left" or "center"] | ["bottom", "right"] | Set the position on the screen where the notifications should display. Pass an array with two values example: ["top", "left"]. timeOut | int | 0 | Determine how long a notification should wait before closing. If set to 0 a notification won't close it self. showProgressBar | boolean | true | Determine if a progress bar should be shown or not. pauseOnHover | boolean | true | Determines if the timeOut should be paused when the notification is hovered. lastOnBottom | boolean | true | Determines if new notifications should appear at the bottom or top of the list. clickToClose | boolean | true | Determines if notifications should close on click. clickIconToClose | boolean | false | Determines if notifications should close when user clicks the icon. maxLength | int | 0 | Set the maximum allowed length of the content string. If set to 0 or not defined there is no maximum length. maxStack | int | 8 | Set the maximum number of notifications that can be on the screen at once. preventDuplicates | boolean | false | If true prevents duplicates of open notifications. preventLastDuplicates | boolean or string | false | If set to "all" prevents duplicates of the latest notification shown ( even if it isn't on screen any more ). If set to "visible" only prevents duplicates of the last created notification if the notification is currently visible. theClass | string | null | A class that should be attached to the notification. (It doesn't exactly get attached to the selector but to the first div of the template.) rtl | boolean | false | Adds the class .rtl-mode to the notification aligning the icon to the left and adding direction: rtl animate | "fade" or "fromTop" or "fromRight" or "fromBottom" or "fromLeft" or "scale" or "rotate" or null | "fromRight" | Choose the type of animation or set the value to null not to display animations. icons | Icons | DefaultIcons | Overrides the default icons

Icons

Option | Type | Default | Description | ------------ | ------------- | ------------- | ------------- alert | string | Clock | html string for alert icon error | string | Exclamation Point | html string for alert icon info | string | Info | html string for alert icon warn | string | Warning | html string for warning icon success | string | Check | html string for alert icon

Here is an example of passing the options to the component. You only pass the options you want changed. Options passed to the component are global. They apply to all of the notifications the get created.

...
template: '<simple-notifications [options]="options"></simple-notifications>'
...
public options = {
    position: ["bottom", "left"],
    timeOut: 5000,
    lastOnBottom: true
    ...
}

If you want a specific notification to have different options you can override them when calling any of the access methods by passing them to the override object. The following options can be overridden:

  • id
  • animate
  • timeOut
  • showProgressBar
  • pauseOnHover
  • clickToClose
  • clickIconToClose
  • maxLength
  • theClass
  • icon

This is an example of overriding global options:

this._notificationsService.success(
    'Some Title',
    'Some Content',
    {
        timeOut: 5000,
        showProgressBar: true,
        pauseOnHover: false,
        clickToClose: false,
        maxLength: 10
    }
)

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © Filip Lauc