worker-time-control/js/clockIn.js

237 lines
7.8 KiB
JavaScript
Raw Normal View History

2023-11-30 08:25:32 +00:00
let userData = "";
2021-10-19 08:52:45 +00:00
$(document).ready(function () {
userData = JSON.parse(localStorage.getItem("userData"));
2021-10-19 08:52:45 +00:00
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');
});
2021-10-19 08:52:45 +00:00
setTimeout(function () {
cerrar();
}, 5000);
2021-10-19 08:52:45 +00:00
}
function setView() {
$(".footer").hide();
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
getInfo();
$("." + userData["button1"]).show();
$("." + userData["button2"]).show();
}
function fichar(direction) {
const data = {
workerFk: userData['userFk'],
2024-01-31 06:49:25 +00:00
direction,
device: localStorage.getItem("device")
}
2021-10-19 08:52:45 +00:00
$.post({
urlPath: 'WorkerTimeControls/clockIn',
jsonData: data,
2021-10-19 08:52:45 +00:00
processData: false,
success: function (msg) {
2024-01-03 08:56:24 +00:00
if (msg.error){
2021-10-19 08:52:45 +00:00
printErrores(msg);
setTimeout(function () {
cerrar();
2023-08-23 10:54:58 +00:00
}, 2000);
2021-10-19 08:52:45 +00:00
}else {
$(".confirm").fadeIn(200);
$(".txtConfirm").append('Fichada registrada correctamente');
2021-10-19 08:52:45 +00:00
setTimeout(function () {
cerrar();
}, 1000);
}
}
});
}
function setView() {
$(".footer").hide();
$(".in").hide();
$(".inMiddle").hide();
$(".outMiddle").hide();
$(".out").hide();
$("#txtNombre").text(userData["name"] + " " + userData["surname"]);
getInfo();
2022-02-28 08:44:00 +00:00
if(userData["button1"] === null && userData["button2"] === null ) {
2022-05-12 09:18:40 +00:00
printError ("Contacta con tu responsable")
2022-02-28 08:44:00 +00:00
} else {
$("." + userData["button1"]).show();
$("." + userData["button2"]).show();
}
2021-10-19 08:52:45 +00:00
}
function getInfo() {
const queryString = $.param({ workerFk: userData['userFk'] });
$.get({
urlPath: `WorkerTimeControls/getClockIn?${queryString}`,
2021-10-19 08:52:45 +00:00
processData: false,
success: function (data) {
$('.footer').show();
printTimetable(data);
2021-10-19 08:52:45 +00:00
}
});
}
function printTimetable(timetable) {
2023-11-30 08:25:32 +00:00
const listWeekName = [
'Domingo',
'Lunes',
'Martes',
'Miércoles',
'Jueves',
'Viernes',
'Sábado'
];;
let dated = new Date();
dated.setDate(dated.getDate() - 6);
2023-11-30 08:25:32 +00:00
for (let i = 0; i < 6; i++) {
$(".listHorario").append('<label>' + listWeekName[dated.getDay()] +'</label>');
dated.setDate(dated.getDate() + 1);
}
$(".listHorario").append('<label class="hoy">HOY</label>');
$(".listHorario").append('<li class="hrTop"></li>');
2023-11-30 08:25:32 +00:00
for (let i = 0; i < timetable.length; i++) {
$(".listHorario").append(
'<li>' +
'<div class="time ' + ifIsEmpty(timetable[i]["6daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["6daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["6daysAgo"]) + '</p>' +
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["5daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["5daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["5daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["4daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["4daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["4daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["3daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["3daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["3daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["2daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["2daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["2daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["1daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["1daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["1daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'<div class="time ' + ifIsEmpty(timetable[i]["0daysAgo"]) + '">' +
'<div>' +
'<img src="' + ifIsEmptyImage(timetable[i]["0daysAgoDirection"]) + '" />' +
'<p>' + ifIsEmptyText(timetable[i]["0daysAgo"]) + '</p>'+
'</div>' +
'</div>' +
'</li>'
);
}
printTotalHours(timetable);
2021-10-19 08:52:45 +00:00
}
function printTotalHours(timetable) {
if(timetable.length > 0) {
$(".listHorario").append('<hr>');
$(".listHorario").append('<li><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["6daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["5daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["4daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["3daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["2daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["1daysAgoTotal"]))
+ ' h</div><div class="time">' + secondsToHm(ifIsEmptyText(timetable[0]["0daysAgoTotal"]))
+ ' h</div></li>');
$(".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');
}
2021-10-19 08:52:45 +00:00
}
function printErrores(errores) {
2023-11-30 08:25:32 +00:00
let error = '';
for (let i = 0; i < errores.length; i++) {
2021-10-19 08:52:45 +00:00
if (errores[i].error) {
error += errores[i].error + "<br>";
}
}
printError(error);
}
function ifIsEmpty(value) {
2024-01-15 12:20:42 +00:00
return value.trim() ? "show" : "hide";
2021-10-19 08:52:45 +00:00
}
function ifIsEmptyImage(value) {
2024-01-15 12:20:42 +00:00
return value.trim() ? `img/${value}.svg` :"img/in.svg";
}
2024-01-12 15:09:56 +00:00
function ifIsEmptyText(value) {
2024-01-15 12:20:42 +00:00
return value.toString().trim() ? value : "00:00";
2021-10-19 08:52:45 +00:00
}
function cerrar(){
localStorage.removeItem("userData");
setTimeout(function () {
2021-10-25 17:07:11 +00:00
window.location='index.html';
2021-10-19 08:52:45 +00:00
}, 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');
2021-10-19 08:52:45 +00:00
}