-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
175 lines (153 loc) · 4.24 KB
/
index.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
// array
let participantes = [
{
nome: "Daniel Silveira",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 22, 19, 20),
dataCheckIn: null
},
{
nome: "Suzanne Moraes",
email: "[email protected]",
dataInscricao: new Date(2024, 3, 21, 19, 20),
dataCheckIn: null
},
{
nome: "Carlos Andrade",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 23, 10, 30),
dataCheckIn: null
},
{
nome: "Ana Beatriz",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 24, 16, 45),
dataCheckIn: new Date(2024, 2, 27, 18, 30)
},
{
nome: "Lucas Martins",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 25, 09, 10),
dataCheckIn: new Date(2024, 2, 28, 20, 00)
},
{
nome: "Mariana Costa",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 26, 13, 20),
dataCheckIn: new Date(2024, 2, 29, 19, 50)
},
{
nome: "João Pedro",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 27, 15, 35),
dataCheckIn: new Date(2024, 3, 1, 17, 25)
},
{
nome: "Fernanda Lima",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 28, 11, 50),
dataCheckIn: new Date(2024, 3, 2, 16, 40)
},
{
nome: "Rafael Souza",
email: "[email protected]",
dataInscricao: new Date(2024, 2, 29, 14, 05),
dataCheckIn: new Date(2024, 3, 3, 15, 15)
},
{
nome: "Patricia Oliveira",
email: "[email protected]",
dataInscricao: new Date(2024, 3, 1, 12, 30),
dataCheckIn: new Date(2024, 3, 4, 13, 45)
},
{
nome: "Eduardo Rocha",
email: "[email protected]",
dataInscricao: new Date(2024, 3, 2, 17, 55),
dataCheckIn: new Date(2024, 3, 5, 18, 10)
}
]
const criarNovoParticipante = (participante) => {
const dataInscricao = dayjs(Date.now()).to(participante.dataInscricao)
let dataCheckIn = dayjs(Date.now()).to(participante.dataCheckIn)
// condicional
if(participante.dataCheckIn == null){
dataCheckIn = `
<button
data-email="${participante.email}"
onclick="fazerCheckIn(event)"
>
Confirmar check-in
</button>
`
}
return `
<tr>
<td>
<strong>
${participante.nome}
</strong>
<br>
<small>
${participante.email}
</small>
</td>
<td>
${dataInscricao}
</td>
<td>
${dataCheckIn}
</td>
</tr>
`
}
const atualizarLista = (participantes) => {
let output = ""
// estrutura de repetição - loop
for(let participante of participantes){
output = output + criarNovoParticipante(participante)
}
// substituir informação do HTML
document
.querySelector('tbody')
.innerHTML = output
}
atualizarLista(participantes) // executa função atualizarLista
const adicionarParticipante = (event) => {
event.preventDefault()
const dadosDoFormulario = new FormData(event.target)
const participante = {
nome: dadosDoFormulario.get('nome'),
email: dadosDoFormulario.get('email'),
dataInscricao: new Date(),
dataCheckIn: null
}
// verificar se o participante já existe
const participanteExiste = participantes.find(
(p) => p.email == participante.email
)
if(participanteExiste) {
alert('Email já cadastrado!')
return
}
participantes = [participante, ...participantes]
atualizarLista(participantes)
// limpar o formulário
event.target.querySelector('[name="nome"]').value = ""
event.target.querySelector('[name."email"]').value = ""
}
const fazerCheckIn = (event) => {
//confirmar se realmente quer fazer o check-in
const mensagemConfirmacao = 'Tem certeza que deseja fazer o check-in?'
if(confirm(mensagemConfirmacao) == false) {
return
}
// encontrar o participante dentro da lista
const participante = participantes.find(
(p) => p.email == event.target.dataset.email
)
// atualizar o check-in do participante
participante.dataCheckIn = new Date()
// atualizar a lista de participantes
atualizarLista(participantes)
}