Add HTML5 notifications

Change-Id: I086ce9d7118e54e56bdac035925054fd627c337d
This commit is contained in:
Vincent Fournier 2015-08-24 10:32:29 -04:00
parent 4df8197262
commit 614e1fd9ed
1 changed files with 24 additions and 4 deletions

View File

@ -1,23 +1,43 @@
/*global PNotify */
/*global PNotify, window, Notification */
'use strict';
angular.module('bansho.notifications', [])
.service('notifications', [
function () {
var push = function (type, title, message) {
var sendNotification = function (type, title, message) {
new Notification(title, {body: message});
};
var sendPNotify = function (type, title, message) {
$(function(){
new PNotify({
type: type,
title: title,
text: message,
styling: {},
styling: {}
});
});
};
var push = function (type, title, message) {
if (window.Notification && Notification.permission === "granted") {
sendNotification(type, title, message);
} else if (window.Notification && Notification.permission !== "denied") {
sendPNotify(type, title, message);
// Ask permission for next time
Notification.requestPermission(function (status) {
if (Notification.permission !== status) {
Notification.permission = status;
}
});
} else {
sendPNotify(type, title, message);
}
};
return {
"push": push
};
}]);