This is a simple wrapper for pines-notify as and AngularJS service. This service provides several helper methods to display notifications on web applications.
Optionally it can use Twitter Bootstrap or jqueryui for themeing the notifications.
Unfortunatelly the supported Twitter Bootstrap version is still 2.3.2, because of the dependence on Pines Notify. A fix for bootsrap 3 is available here
We use bower for dependency management. Install angular-pines-notify into your project by running the command
$ bower install angular-pines-notify
If you use a bower.json
file in your project, you can have Bower save angular-pines-notify as a dependency
by passing the --save
or --save-dev
flag with the above command.
This will copy the angular-pines-notify files into your bower_components
folder, along with its dependencies.
Load the script files in your application:
<link rel="stylesheet" type="text/css" href="bower_components/pines-notify/jquery.pnotify.default.css" />
<link rel="stylesheet" type="text/css" href="bower_components/pines-notify/jquery.pnotify.default.icons.css" />
<script type="text/javascript" src="bower_components/jquery/jquery.js"></script>
<script type="text/javascript" src="bower_components/pines-notify/jquery.pnotify.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-pines-notify/src/pnotify.js"></script>
(Note that jquery
must be loaded before angular
so that it doesn't use jqLite
internally)
Add the angular-pines-notify module as a dependency to your application module:
var myAppModule = angular.module('MyApp', ['ui.notify']);
In order to use the API you need to inject the notificationService
service into
your controllers. From there you can use one of the many different notifications
like:
- info
- notice
- error
- success
You can use these methods with the following line of code
notificationService.info(content);
notificationService.notice(content);
notificationService.error(content);
notificationService.success(content);
Or you can also use a generic notify method with more customization by passing the pines notify's options object:
notificationService.notify(options);
For example:
myAppModule.controller(
'MyCtrl',
[
'$scope', notificationService,
function($scope, notificationService) {
$scope.action = function() {
// This is a sample using the success helper method
notificationService.success('This is a success notification');
};
$scope.anotherAction = function() {
// This is a sample using the generic pines notification object
notificationService.notify({
title: 'Notice Title',
text: 'Notice Text',
hide: false
});
};
}
]
);
All the pines-notify options can be passed through the notify functions. You can read more about the supported list of options and what they do on the Pines Notify Github Page
- Tests
- Configuration helpers