Added Browser Notifications

This commit is contained in:
Tim Windelschmidt 2015-09-05 20:04:41 +02:00
parent d24f1852bf
commit 78e823516c
2 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,74 @@
var Notification = window.Notification || window.mozNotification || window.webkitNotification;
var data;
var laststate;
Notification.requestPermission(function (permission) {
// console.log(permission);
});
function showopen() {
var instance = new Notification(
"CTDO - Status", {
body: "Der Chaostreff Dortmund ist nun offen.",
icon: "/img/green.png"
}
);
instance.onclick = function () {
// Something to do
};
instance.onerror = function () {
// Something to do
};
instance.onshow = function () {
setTimeout(function(){
instance.close();
}, 3000);
};
instance.onclose = function () {
// Something to do
};
}
function showclose() {
var instance = new Notification(
"CTDO - Status", {
body: "Der Chaostreff Dortmund ist nun geschlossen.",
icon: "/img/red.png"
}
);
instance.onclick = function () {
// Something to do
};
instance.onerror = function () {
// Something to do
};
instance.onshow = function () {
setTimeout(function(){
instance.close();
}, 3000);
};
instance.onclose = function () {
// Something to do
};
}
window.setInterval(function(){
$.getJSON("/api/simple/v2", function(data){
var html = [];
$.each(data, function(index, value){
if (index == 'state' && value == false && laststate != false) {
laststate = false;
showclose();
}
else if (index == 'state' && value == true && laststate != true) {
laststate = true;
showopen();
}else {
// Nothing
}
});
});
}, 60000);

View File

@ -58,3 +58,4 @@ block scripts
script(type="text/javascript",src="/js/graph.js")
script(type="text/javascript",src="/js/vendor/raphael.2.1.0.min.js")
script(type="text/javascript",src="/js/vendor/justgage.1.0.1.min.js")
script(type="text/javascript",src="/js/notification.js")