Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DerekRies/angular-notifications
An AngularJS component for easily creating notifications. Can also use HTML5 notifications.
https://github.com/DerekRies/angular-notifications
Last synced: 4 months ago
JSON representation
An AngularJS component for easily creating notifications. Can also use HTML5 notifications.
- Host: GitHub
- URL: https://github.com/DerekRies/angular-notifications
- Owner: DerekRies
- Created: 2013-05-28T10:16:02.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T15:21:15.000Z (about 6 years ago)
- Last Synced: 2024-08-04T05:04:15.435Z (4 months ago)
- Language: JavaScript
- Homepage: http://derekries.github.io/angular-notifications/
- Size: 160 KB
- Stars: 154
- Watchers: 12
- Forks: 49
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Angular-Notifications
**This Repository is not maintained**
### v0.1
This particular component provides a service for creating notifications, and an
easy to use directive for displaying those notifications. Also provides the ability
to use Chrome Notifications instead.This is an early release, and I'm going to be changing a lot of stuff soon.
### Demo
You can check out a really simple [Demo right here](http://derekries.github.io/angular-notifications). Documentation beyond this README coming soon.### Dependencies
This component is an angularjs component so it should be obvious it depends on angular.
Also for the default notifications **font-awesome 3.1.1** is required to display the icons.### Installation
After you've downloaded this repository, include both the css and javascript file
and then declare the notifications module as a dependency of your app module.e.g `angular.module('ngcomponentsApp', ['notifications'])`
Once you've finished that business you should be able to use the notifications service.
If you want those notifications to show up on the screen however (optional), you
will need to add a div to your body tag somewhere and give it a notifications directive
specifying its position like so:`
`You should now magically get notifications
### Usage
In order to use the API you need to inject the `$notification` service into
your controllers. From there you can use one of the many different notifications
like:* info
* warning
* error
* successYou can use these methods with the following line of code
`$notification.info(title, content, userData);`
`$notification.warning(title, content, userData);`
`$notification.error(title, content, userData);`
`$notification.success(title, content, userData);`**Title** is of course the title displayed in a large, bold text on the notification.
**Content** is the additional detail text for that notification. The **userData** parameter
is optional but allows you to store some data with a particular notification.You can also use a generic notify method more inline with the standard chrome desktop
notifications by specifying an image to display in the notification.
`$notification.notify('image.jpg', 'My Title', 'My notification description text');`### HTML5 Notifications
If you want to use HTML5 notifications with the same API then you can call
`$notification.enableHtml5Mode()`. **Note:** You will need permissions in
order to use HTML5 notifications so for this reason you should call enableHtml5Mode
in a click event listener or something.### Coming Soon
* Animations - Using ng-animate, will require a minimum of angular 1.1.4 for these
* Better Looking, More Easily Styleable Notifications