-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
230 lines (192 loc) · 7.99 KB
/
index.php
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Sistema simples para contabilidade, audição básica e apuração dos dados sobre votação disponibilizados pelo TSE">
<meta name="author" content="Gabriel Matosinhos">
<title>Apuração Eleitoral - 2018</title>
<!-- Bootstrap core CSS -->
<link href="https://getbootstrap.com/docs/4.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="http://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="https://getbootstrap.com/docs/4.0/examples/dashboard/dashboard.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0">
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">#APURACAOELEITORAL</a>
<ul class="navbar-nav px-3">
<li class="nav-item text-nowrap">
<a class="nav-link" href="#"></a>
</li>
</ul>
</nav>
<div class="container-fluid">
<div class="row">
<main role="main" class="col-md-12 ml-sm-auto col-lg-12 pt-3 px-4">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom">
<h1 class="h2">Eleições 2018</h1>
</div>
<div class="row">
<section class="col-md-5 py-5 order-md-1 bg-light">
<div class="row">
<div class="col-md-6">
<div class="card mb-6 box-shadow">
<img class="card-img-top" data-src="img/1.jpg" alt="Fernando Haddad" src="img/1.jpg" data-holder-rendered="true">
<div class="card-body">
<h3>Fernando Haddad</h3>
<h5 class="votos-2" style="font-weight: 100;"></h5>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card mb-6 box-shadow">
<img class="card-img-top" data-src="img/2.jpg" alt="Jair Bolsonaro" src="img/2.jpg" data-holder-rendered="true">
<div class="card-body">
<h3>Jair Bolsonaro</h3>
<h5 class="votos-1" style="font-weight: 100;"></h5>
</div>
</div>
</div>
</div>
<input type="hidden" class="last_id" value="0"> <!-- Armazena o último id -->
</section>
<section class="col-md-7 order-md-2">
<canvas id="barChart" width="400" height="220"></canvas>
<h2>Atualização da apuração</h2>
<div class="table-responsive">
<table class="table table-striped table-sm" id="updateTable">
<thead>
<tr>
<th>Estado</th>
<th>Candidato</th>
<th>Votos adicionados</th>
<th>Hora</th>
</tr>
</thead>
<tbody class="updateApu"></tbody>
</table>
</div>
</section>
</div>
</main>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://getbootstrap.com/docs/4.0/assets/js/vendor/popper.min.js"></script>
<script src="https://getbootstrap.com/docs/4.0/dist/js/bootstrap.min.js"></script>
<!-- Graphs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
<script src="http://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script>
var ctx = document.getElementById("barChart").getContext("2d");
// Variáveis iniciais do gráfico de barras
var horizontalBarChartData = {
labels: [],
datasets: [{
backgroundColor: "#CCCCCC",
data: []
}]
};
// Cria o gráfico de barras
var chart = new Chart(ctx, {
type: "horizontalBar",
data: horizontalBarChartData,
options: {
scales: {
xAxes: [{
ticks: {
min: 0,
max: 100,
}
}],
yAxes:[{
barThickness: 5,
ticks: {
beginAtZero:true,
mirror: false
},
}],
},
responsive: true,
legend: {
display: false,
},
title: {
display: true,
text: 'Apuração nos Estados/Exterior e Brasil (Total)'
},
animation: {
duration: 1
}
}
});
// Cria a tabela recebendo o último id processado para poder buscar resultados novos
var last_id = $(".last_id").val();
$('#updateTable').DataTable( {
"bLengthChange": false,
"bInfo": false,
"bFilter": false,
"bAutoWidth": false,
ajax: "service.php?p=getNewVote&t=1&id="+last_id,
"order": [[ 3, "desc" ]]
} );
updatePage(last_id);
function updatePage(last_id){
// Atualiza os dados com a base do TSE
$.ajax({
type: 'GET',
url: 'get_data.php',
dataType: "json",
success: function (result){
console.log("Requisição feita com sucesso");
}
});
// Retorna o estado da apuração de votos nos estados
$.ajax({
type: 'GET',
url: 'service.php?p=getApuResults',
dataType: "json",
success: function (result){
var horizontalBarChartData = {
labels: result["label"],
datasets: [{
backgroundColor: "#3e8fe0",
data: result["data"]
}]
};
chart.data = horizontalBarChartData;
chart.update();
}
});
// Retorna os votos de cada candidato
$.ajax({
type: 'GET',
url: 'service.php?p=getVoteResults',
dataType: "json",
success: function (result){
$( result ).each(function() {
$(".votos-"+this.candidato).text(this.valores.votos+" ("+this.valores.perc+" %)")
});
}
});
// Adiciona à tabela o número de votos recebidos pelo candidato desde a última checagem
$.ajax({
type: 'GET',
url: 'service.php?p=getNewVote&id='+last_id,
dataType: "json",
success: function (result){
last_id = result["last_id"];
result.splice($.inArray("last_id", result),1);
if(last_id) $(".last_id").val(last_id);
}
});
$('#updateTable').DataTable().ajax.reload(null, false);
}
setInterval(updatePage(last_id), 15000); // Atualiza os dados de 15 em 15 segundos
</script>
</body>
</html>