-
Notifications
You must be signed in to change notification settings - Fork 3
/
content.js
183 lines (161 loc) · 6.64 KB
/
content.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
var batidas = null;
function formatLeftZero(num) {
if (parseInt(num) < 10)
return "0" + num;
return num;
}
function getDateTime() {
let dateTime = null;
$.ajaxSetup({ async: false });
$.get("/Pontoweb/Home/getTime", function (data, status) {
dateTime = (status == "success") ? data.split(" ")[1] : null;
});
return dateTime;
}
function atualizarRelogio() {
$("#bnb-ponto-web-relogio").text(getDateTime());
console.log("Atualizando relógio");
setTimeout("atualizarRelogio()", 60 * 1000);
}
function convertMinutesToHour(minutes) {
if (minutes == null || minutes == "")
return null;
let hour = parseInt(minutes / 60);
let minute = parseInt(minutes % 60);
return formatLeftZero(hour) + ":" + formatLeftZero(minute);
}
function convertDateToMinute(dateTime) {
if (dateTime == null || dateTime == "")
return null;
return parseInt(dateTime.getHours() * 60) + parseInt(dateTime.getMinutes());
}
function convertTimeToMinute(time) {
if (time == null || time == "")
return null;
return (parseInt(time.split(":")[0]) * 60) + parseInt(time.split(":")[1]);
}
class Batidas {
constructor() {
this.obterCargaHoraria();
this.atualizarBatidas();
}
get batidas() {
return this._batidas;
}
get batida1() {
if (this._batida1 == null)
this._batida1 = convertDateToMinute(this.batidas[0]);
return this._batida1;
}
get batida2() {
if (this._batida2 == null)
this._batida2 = convertDateToMinute(this.batidas[1]);
return this._batida2;
}
get batida3() {
if (this._batida3 == null)
this._batida3 = convertDateToMinute(this.batidas[2]);
return this._batida3;
}
get batida4() {
if (this._batida4 == null)
this._batida4 = convertDateToMinute(this.batidas[3]);
return this._batida4;
}
get saidaEstimada() {
return this._saidaEstimada;
}
get quantidade() {
if (this._quantidade == null)
this._quantidade = this.batidas.length;
return this._quantidade;
}
get cargaHoraria() {
return this._cargaHoraria;
}
atualizarBatidas() {
console.log("Atualizando batidas");
this._batidas = null;
this._quantidade = null;
this.obterBatidas();
this.obterSaidaEstimada();
this.mostrarDuracaoIntervalo();
this.mostrarPrevisaoRetorno();
this.mostrarSaidaEstimada();
this.mostrarHoraExtra();
}
atualizarHoraExtra() {
console.log("Atualizando horas extra / à compensar");
this.mostrarHoraExtra();
}
obterBatidas() {
if (this._batidas == null) {
var b = [];
$.ajaxSetup({ async: false });
$.get("/Pontoweb/api/batidas", function (data, status) { data.map(batida => b.push(new Date(batida.datahora + "-03:00"))); });
}
this._batidas = b;
}
obterCargaHoraria() {
if (this._cargaHoraria == null) {
var cargaHoraria;
$.ajaxSetup({ async: false });
$.get("/Pontoweb/Home/obterProximaBatida", function (data, status) {
let cargaHorariaFuncionario = $(data).filter("#CargaHorariaFuncionario").val();
cargaHoraria = parseInt(cargaHorariaFuncionario) * 60;
});
}
this._cargaHoraria = cargaHoraria;
}
obterSaidaEstimada() {
if (this.quantidade < 3)
this._saidaEstimada = this.batida1 + this.cargaHoraria - (this.cargaHoraria == 360 ? 0 : -30);
else
this._saidaEstimada = this.batida1 + this.cargaHoraria + this.batida3 - this.batida2 - (this.cargaHoraria == 360 ? 15 : 0);
}
mostrarSaidaEstimada() {
$("#bnb-ponto-web-info-saida-estimada").remove();
if (this.quantidade > 0)
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-saida-estimada" class="label" title="' + (this.quantidade < 3 ? ((this.cargaHoraria == 360) ? "Considerando 15 min de intervalo" : "Considerando 30 min de intervalo") : "") + '">Saída estimada: <strong>' + convertMinutesToHour(this.saidaEstimada) + '</strong></span>');
}
mostrarPrevisaoRetorno() {
$("#bnb-ponto-web-info-previsao-retorno").remove();
if (this.quantidade == 2)
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-previsao-retorno" class="label">Prev. Retorno Intervalo: <strong>' + convertMinutesToHour(this.batida2 + (this.cargaHoraria == 360 ? 15 : 30)) + '</strong></span>');
}
mostrarDuracaoIntervalo() {
$("#bnb-ponto-web-info-duracao-intervalo").remove();
if (this.quantidade > 2)
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-duracao-intervalo" class="label">Duração do Intervalo: <strong>' + convertMinutesToHour(this.batida3 - this.batida2) + '</strong></span>');
}
mostrarHoraExtra() {
$("#bnb-ponto-web-info-hora-extra, #bnb-ponto-web-info-hora-extra-maxima").remove();
if (this.quantidade >= 3) {
let baseComparacao = this.batida4 == null ? convertTimeToMinute(getDateTime()) : this.batida4;
if (this.saidaEstimada < baseComparacao) {
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-hora-extra" class="label">Extra: <strong>' + convertMinutesToHour(baseComparacao - this.saidaEstimada) + '</strong></span>');
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-hora-extra-maxima" class="label">Limite de Saída: <strong>' + convertMinutesToHour(this.saidaEstimada + 120 + (this.cargaHoraria == 360 ? 10 : 0)) + '</strong></span>');
} else if (this.saidaEstimada > baseComparacao)
$("#bnb-ponto-web-info").append('<span id="bnb-ponto-web-info-hora-extra" class="label">Compensar: <strong>' + convertMinutesToHour(this.saidaEstimada - baseComparacao) + '</strong></span>');
}
}
}
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
$(document).ready(function () {
// Criando label das informações
$("#bnb-ponto-web-relogio, #bnb-ponto-web-info").remove();
$("body > div.container > div:nth-child(3) > h3").append('<span id="bnb-ponto-web-relogio" class="label label-primary" />');
$("body > div.container > div:nth-child(3) > h3").append('<div id="bnb-ponto-web-info" style="margin-top: 10px; clear: both;" />');
$("body > div.container > div:nth-child(3)").css("padding-bottom", "10px");
atualizarRelogio();
// Instanciando Batidas
batidas = new Batidas();
setInterval("batidas.atualizarHoraExtra()", 60 * 1000);
// Adicionando trigger na tabela
document.getElementById("batidas").addEventListener('DOMNodeInserted', function (event) {
batidas.atualizarBatidas();
});
$("#new-batida").click(function () { setTimeout("$('#CaptchaCode').focus()", 1000) });
});
sendResponse();
});