Demande de crêpe par ${prankData[entry].creator}
Quantité: ${prankData[entry].amount}
Garniture: ${prankData[entry].supplement}
Livraison: ${prankData[entry].where}
Livraison: ${prankData[entry].note}
${(prankData[entry].state == "Pending") ? "Accepter" : "Récupérer (accepté par: "+prankData[entry].manageBy+")"}
Done
Refuser
`)
} else if(prankData[entry].state == "done") {
doneCnt++;
}
break;
case "kidnap":
// Not Handle
break;
}
}
$("#admin-content").append(`
Demande de vérification par ${treasureData[entry].creator}
Activité: ${treasureData[entry].activity.title}
Description: ${treasureData[entry].desc}
Accepter
Refuser
`)
}
}
break;
case "activity":
$("#admin-content").append(`
Event:
Description:
Lieu:
Début:
Fin:
Update
Supprimer
`)
} else if (activityData[entry].type = "treasure") {
$("#admin-content").prepend(`
Trésor:
Description:
Lieu:
Début:
Status: ${activityData[entry].treasureState}
Update
Supprimer
`)
}
}
break;
}
refreshListener();
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
}
function refreshListener() {
$(".prank-btn-accept").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "acceptPrank",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
prankUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
let btnElems = $("#"+uid).children()[6];
btnElems.children[0].style.display = "none";
btnElems.children[1].style.display = "flex";
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".prank-btn-refused").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "refusePrank",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
prankUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
$("#"+uid).remove();
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".prank-btn-done").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "donePrank",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
prankUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
$("#"+uid).remove();
$("#prankDone")[0].innerHTML = "Nombre totale de mission achevées: " + (parseInt($("#prankDone")[0].innerHTML.replace("Nombre totale de mission achevées: ", "")) + 1);
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".treasure-btn-accept").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "acceptTreasure",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
treasureUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
$("#"+uid).remove();
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".treasure-btn-refused").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "refuseTreasure",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
treasureUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
$("#"+uid).remove();
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".activity-btn-update").click((e) => {
let uid = e.target.parentNode.parentNode.id;
let children = e.target.parentNode.parentNode.children;
$.ajax({
type: "POST",
url: base_url + "addActivity",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
activityUid: uid,
type: (children[0].innerHTML.substring(0, 5) == "Event") ? "event" : "treasure",
title: children[0].children[0].value,
desc: children[1].children[0].value,
where: children[2].children[0].value,
start: new Date(children[3].children[0].value).toString(),
end: (children[3].children.length == 0) ? null : new Date(children[4].children[0].value).toString(),
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
alert("Update réussie")
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$(".activity-btn-delete").click((e) => {
let uid = e.target.parentNode.parentNode.id
$.ajax({
type: "POST",
url: base_url + "delActivity",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
activityUid: uid,
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
$("#"+uid).remove();
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
$("#activityType").on("change", function() {
if (this.value == "treasure") {
$("#activity-end-add").css("display", "none");
} else if (this.value == "event") {
$("#activity-end-add").css("display", "flex");
}
})
$("#activity-btn-add").click((e) => {
let children = e.target.parentNode.parentNode.children;
$.ajax({
type: "POST",
url: base_url + "addActivity",
data: JSON.stringify({
uid: localStorage.getItem('user'),
token: localStorage.getItem('token'),
type: $("#activityType").val(),
title: children[2].children[0].value,
desc: children[3].children[0].value,
where: children[4].children[0].value,
start: new Date(children[5].children[0].value).toString(),
end: ($("#activityType").val() == "treasure") ? null : new Date(children[6].children[0].value).toString(),
}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
if(data.success) {
get_admin("activity");
} else {
if (data.why == "Not authentificated") {
show_page('#login-page');
} else {
alert(data.why);
}
}
}
});
})
}
$(window).on("load", function() {
/* Register the Service Worker */
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./js/sw.js');
}
for(i in page) {
$(page[i]).css('z-index', page.length - i);
}
$.ajax({
type: "GET",
url: base_url + "lastActivity",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: (data) => {
if(data.success) {
opt = {speed: 100, likeLike: true};
new TypeIt("#activite-title", opt)
.type(data.activity.title)
.go();
new TypeIt("#activite-desc", opt)
.type(data.activity.desc)
.go();
let diff = Math.ceil( (data.activity.start - new Date()) / 1000 )
let h = Math.round(diff / 3600)
let m = Math.round(diff / 60) - h*60
let s = diff - m*60
$("#timer").text((new Date('December 17, 1995 ' + [h, m, s].join(':'))).toLocaleTimeString('default', {
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
}));
}
}
})
/* load timer */
window.setInterval(function() {
var time = $("#timer").text();
var t = time.split(":").map(t => parseInt(t));
t[2] -= 1;
if (t[2] < 0) {
t[2] = 59;
t[1] -= 1;
}
if (t[1] < 0) {
t[1] = 59;
t[0] -= 1;
}
if (t[0] < 0) {
t[0] = 0;
t[1] = 0;
t[2] = 0;
}
$('#timer').text((new Date('December 17, 1995 ' + t.join(':'))).toLocaleTimeString('default', {
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
}));
}, 1000);
});
function toIsoString(date) {
var tzo = -date.getTimezoneOffset(),
dif = tzo >= 0 ? '+' : '-',
pad = function(num) {
return (num < 10 ? '0' : '') + num;
};
return date.getFullYear() +
'-' + pad(date.getMonth() + 1) +
'-' + pad(date.getDate()) +
'T' + pad(date.getHours()) +
':' + pad(date.getMinutes()) +
':' + pad(date.getSeconds());
}