-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
204 lines (183 loc) · 5.75 KB
/
script.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// controle de interface
var seuVotoPara = document.querySelector('.tela-1-1-1 span');
var divCargo = document.querySelector('.tela-1-1-2');
var divNumero = document.querySelector('.tela-1-1-3');
var divCandidato = document.querySelector('.tela-1-1-4');
var divTeclado = document.querySelector('.teclado-linha');
var img1 = document.getElementById('foto-candidato');
var img2 = document.getElementById('foto-vice');
var divTela1 = document.querySelector('.tela-1');
var divTela2 = document.querySelector('.tela-2');
var divFim = document.querySelector('.tela-fim');
var tabelaVotos = document.querySelector('.tabela-votos');
var divControles = document.querySelector('.botoes-controle');
var divUrna = document.querySelector('.urna');
divTela1.style.display = 'none';
divTela2.style.display = 'none';
divFim.style.display = 'none';
tabelaVotos.style.display = 'none';
divUrna.style.display = 'none';
// variaveis de ambiente
var etapaAtual = 0;
var numeroDigitado = '';
var arrVotos = [];
var candidatoNome = '';
var candidatoPartido = '';
function comecarEtapa()
{
numeroDigitado = '';
candidatoNome = '';
candidatoPartido = '';
let etapa = etapas[etapaAtual];
let numeroHtml = '';
numeroHtml = '<span>Número: </span>';
for (let i = 0; i < etapa.digitos; i++)
{
if(i === 0)
{
numeroHtml += '<label class="numero-digitado pisca"></label>';
} else
{
numeroHtml += '<label class="numero-digitado"></label>';
}
}
divUrna.style.display = 'flex';
divTela1.style.display = 'flex';
divTela2.style.display = 'none';
divFim.style.display = 'none';
seuVotoPara.style.display = 'none';
divCargo.innerHTML = `<label id="cargo"><b>${etapa.titulo}</b></label>`;
divNumero.innerHTML = numeroHtml;
divCandidato.innerHTML = null;
img1.style.display = 'none';
img2.style.display = 'none';
divTela2.style.display = 'none';
divFim.style.display = 'none';
tabelaVotos.style.display = 'none';
divControles.style.display = 'none';
}
function atualizaInterface()
{
let etapa = etapas[etapaAtual];
let candidato = etapa.candidatos.filter((item)=>
{
if(item.numero === numeroDigitado)
{
return true;
} else
{
return false;
}
}
);
seuVotoPara.style.display = 'block';
divTela2.style.display = 'block';
let htmlCandidato = '';
if(candidato.length > 0)
{
candidato = candidato[0];
candidatoNome = candidato.nome;
candidatoPartido = candidato.partido;
htmlCandidato += `<label>Candidato: ${candidato.nome}</label></br>`;
htmlCandidato += `<label>Partido: ${candidato.partido}</label></br>`;
img1.innerHTML = `<img alt="foto-vice" src="../projeto-urna-eletronica/images/${candidato.fotos[0].url}" />`;
if(candidato.vice !== null)
{
htmlCandidato += `<label>Vice: ${candidato.vice}</label></br>`;
img2.innerHTML = `<img alt="foto-vice" src="../projeto-urna-eletronica/images/${candidato.fotos[1].url}" />`;
img2.style.display = 'block';
}
divCandidato.innerHTML = htmlCandidato;
divTela2.style.display = 'block';
img1.style.display = 'block';
} else
{
htmlCandidato += `<label>NÚMERO ERRADO</label></br></br>`;
htmlCandidato += `<label class="voto-nulo">VOTO NULO</label></br>`;
divCandidato.innerHTML = htmlCandidato;
candidatoNome = numeroDigitado;
numeroDigitado = 'nulo';
candidatoPartido = 'VOTO NULO';
}
}
function clicou(valor)
{
audioClique();
let numeroPisca = document.querySelector('.numero-digitado.pisca');
if(numeroPisca !== null)
{
numeroPisca.innerHTML = valor;
numeroDigitado = `${numeroDigitado}${valor}`;
numeroPisca.classList.remove('pisca');
if(numeroPisca.nextSibling !== null)
{
numeroPisca.nextSibling.classList.add('pisca');
} else
{
atualizaInterface();
}
}
}
function branco()
{
audioClique();
if(numeroDigitado === '')
{
divCandidato.innerHTML = `<label class="voto-nulo">VOTO EM BRANCO</label></br>`;
divNumero.innerHTML = null;
numeroDigitado = 'branco';
candidatoNome = null;
candidatoPartido = null;
seuVotoPara.style.display = 'block';
divTela2.style.display = 'block';
}
}
function corrige()
{
audioClique();
comecarEtapa();
}
function confirma()
{
// toca o aúdio de clique do botão
audioClique();
// validação para finalizar o voto da etapa atual
let etapa = etapas[etapaAtual];
if(numeroDigitado === 'nulo' || numeroDigitado === 'branco' || numeroDigitado.length === etapa.digitos)
{
// toca o aúdio do fim
audioFim();
// salva o voto no array
salvarVoto();
// verifica se existe próxima etapa ou fim da votação
if(etapaAtual < (etapas.length - 1))
{
etapaAtual += 1;
comecarEtapa();
} else
{
etapaAtual = 0;
divTela1.style.display = 'none';
divTela2.style.display = 'none';
divFim.style.display = 'block';
divControles.style.display = 'flex';
}
}
}
function audioClique() {
let audio = new Audio("../projeto-urna-eletronica/misc/clique.mp3");
audio.play();
}
function audioFim() {
let audio = new Audio("../projeto-urna-eletronica/misc/fim.mp3");
audio.play();
}
function salvarVoto()
{
arrVotos.push({
numero: numeroDigitado,
candidato: candidatoNome,
partido: candidatoPartido,
etapa: etapaAtual
});
}