Changed the Notificationsystem for better usage

This commit is contained in:
Tim Windelschmidt 2015-09-15 08:19:24 +02:00
parent 8966f49322
commit 0cacac09fa
4 changed files with 25 additions and 101 deletions

View File

@ -1,9 +1,9 @@
cheet('↑ ↑ ↓ ↓ ← → ← → b a', function () {
cheet('↑ ↑ ↓ ↓ ← → ← → b a enter', function () {
alert('Oh mein Gott! Ein wildes Konami!');
});
cheet('c t d o', function () {
showctdo();
showNotification("CTDO - Easteregg", "Was? Nein! Wieso?", "/img/yellow.png", 4);
});
cheet('d i c k b u t t', function () {

View File

@ -1,98 +0,0 @@
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
};
}
function showctdo() {
var instance = new Notification(
"CTDO - Easteregg", {
body: "Was? Nein! Wieso?",
icon: "/img/yellow.png"
}
);
instance.onclick = function () {
showctdo;
};
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

@ -0,0 +1,21 @@
var data;
var laststate;
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;
showNotification("CTDO - Status", "Der Chaostreff Dortmund ist nun geschlossen.", "/img/red.png", 4);
}
else if (index == 'state' && value == true && laststate != true) {
laststate = true;
showNotification("CTDO - Status", "Der Chaostreff Dortmund ist nun offen.", "/img/green.png", 4);
}else {
// Nothing
}
});
});
}, 60000);

View File

@ -59,5 +59,6 @@ block scripts
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/vendor/cheet.min.js")
script(type="text/javascript",src="/js/notification.js")
script(type="text/javascript",src="/js/vendor/notification.js")
script(type="text/javascript",src="/js/state-notify.js")
script(type="text/javascript",src="/js/easter.js")