var userData = "";
$(document).ready(function () {
userData = $.parseJSON(localStorage.getItem("userData"));
FastClick.attach(document.body);
setView();
setEvents();
});
function setEvents() {
$(".btnSalir").on("click", function () {
cerrar();
});
$(".in").on("click", function () {
fichar('in');
});
$(".inMiddle").on("click", function () {
fichar('middle');
});
$(".outMiddle").on("click", function () {
fichar('middle');
});
$(".out").on("click", function () {
fichar('out');
});
setTimeout(function () {
cerrar();
}, 5000);
}
function setView() {
$(".footer").hide();
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
getInfo();
$("." + userData["button1"]).show();
$("." + userData["button2"]).show();
}
function fichar(direction) {
$.post({
urlPath: 'clockIn',
jsonData: [userData['userFk'], direction],
processData: false,
success: function (msg) {
if (msg[0].error){
printErrores(msg);
setTimeout(function () {
cerrar();
}, 2000);
}else {
$(".confirm").fadeIn(200);
$(".txtConfirm").append('Fichada registrada correctamente');
setTimeout(function () {
cerrar();
}, 1000);
}
}
});
}
function setView() {
$(".footer").hide();
$(".in").hide();
$(".inMiddle").hide();
$(".outMiddle").hide();
$(".out").hide();
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
getInfo();
if(userData["button1"] === null && userData["button2"] === null ) {
printError ("Contacta con tu responsable")
} else {
$("." + userData["button1"]).show();
$("." + userData["button2"]).show();
}
}
function getInfo() {
$.post({
urlPath: 'getClockIn',
jsonData: [userData['userFk']],
processData: false,
success: function (data) {
$('.footer').show();
printTimetable(data);
}
});
}
function printTimetable(timetable) {
var listWeekName = weekDays();
var dated = new Date();
dated.setDate(dated.getDate() - 6);
for (var i = 0; i < 6; i++) {
$(".listHorario").append('');
dated.setDate(dated.getDate() + 1);
}
$(".listHorario").append('');
$(".listHorario").append('
');
for (var i = 0; i < timetable.length; i++) {
$(".listHorario").append(
'' +
'' +
'' +
'' +
'' +
'' +
'' +
'' +
''
);
}
printTotalHours(timetable);
}
function printTotalHours(timetable) {
if(timetable.length > 0) {
$(".listHorario").append('
');
$(".listHorario").append('' + secondsToHm(ifIsEmptyText(timetable[0]["6daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["5daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["4daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["3daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["2daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["1daysAgoTotal"]))
+ ' h
' + secondsToHm(ifIsEmptyText(timetable[0]["0daysAgoTotal"]))
+ ' h
');
$(".total").text('Total: ' +
secondsToHm(
Number(timetable[0]["6daysAgoTotal"] == null) +
Number(timetable[0]["5daysAgoTotal"]) +
Number(timetable[0]["4daysAgoTotal"]) +
Number(timetable[0]["3daysAgoTotal"]) +
Number(timetable[0]["2daysAgoTotal"]) +
Number(timetable[0]["1daysAgoTotal"]) +
Number(timetable[0]["0daysAgoTotal"])
) + ' h');
} else{
$(".total").text('Total: 0h');
}
}
function weekDays() {
var weekDays = [
'Domingo',
'Lunes',
'Martes',
'Miércoles',
'Jueves',
'Viernes',
'Sábado'
];
return weekDays;
}
function printErrores(errores) {
var error = '';
for (var i = 0; i < errores.length; i++) {
if (errores[i].error) {
error += errores[i].error + "
";
}
}
printError(error);
}
function ifIsEmpty(value) {
if (value.trim().length === 0) {
return "hide";
} else {
return "show";
}
}
function ifIsEmptyImage(value) {
if (value.trim().length === 0) {
return "img/in.svg";
} else {
return "img/" + value + ".svg";
}
}
function ifIsEmptyText(value) {
if (value.trim().length === 0) {
return "00:00";
} else {
return value;
}
}
function cerrar(){
localStorage.removeItem("userData");
setTimeout(function () {
window.location='index.html';
}, 200);
}
function secondsToHm(seconds) {
seconds = Number(seconds);
let hours = Math.floor(seconds / 3600);
let minutes = Math.floor(seconds % 3600 / 60);
return hours.toString().padStart(2, '0') + ':' + minutes.toString().padStart(2, '0');
}