Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Notification service for Angular using native HTML5 API.

Notifications You must be signed in to change notification settings

gregberge/angular-notification

Repository files navigation

angular-notification Build Status

Notification service for Angular using native HTML5 API.

Usage

angular.module('controllers.notification', ['notification'])
.controller('NotificationCtrl', function (Notification) {
  new Notification('New message', {
    body: 'You have a new message.'
  });
})

new Notification(title, options)

Create a new notification, the signature is the same as the Web Notification API.

Angular-notification provides some sugar to the default API, the permission is requested automatically. There is also a "delay" option to specify a delay (in ms) after the notification is automatically closed.

new Notification('title', {
  body: 'message',
  dir: 'auto',
  lang: 'en',
  tag: 'my-tag',
  icon: '/my-icon.jpg',
  delay: 1000 // in ms
})

close()

Close the notification.

var notification = new Notification('hello');
notification.close();

$on(name, listener)

Listen an event on the notification. Using this method, the listener is automatically wrapped in an $apply().

The signature is the same as the angular $scope.$on signature, it returns the deregistration function.

Avalaible examples are 'click', 'show', 'close' and 'error'.

var notification = new Notification('hello');
var deregister = notification.$on('click', function () {
  console.log('User has clicked.');
});

// Stop listening the event.
deregister();

Notification.requestPermission(callback)

Request explicitly the permission to display notification, more info in the official API.

Notification.requestPermission(function (permission) {
  console.log(permission); // default, granted, denied
});

License

MIT

About

Notification service for Angular using native HTML5 API.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •