-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
286 lines (256 loc) · 9.1 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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// Função para o menu lateral
function openNav() {
document.getElementById("mySidenav").style.width = "200px";
//document.getElementById("main").style.marginLeft = "200px";
document.getElementById("container").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
//document.getElementById("main").style.marginLeft = "0";
document.getElementById("container").style.marginLeft = "100px";
}
/* ----------------------------------------------------------------------- */
function toggleHighContrast() {
var body = document.body;
// Verifica se o tema atual é de alto contraste
if (body.classList.contains('high-contrast')) {
// Se for, muda para o tema normal
body.classList.remove('high-contrast');
document.getElementById('altoContraste').className = "btn btn-warning";
} else {
// Se não for, muda para o tema de alto contraste
body.classList.add('high-contrast');
document.getElementById('altoContraste').className = "btn btn-light";
}
}
// Evento ao clicar nas opções do menu dropdown
document.querySelectorAll('.dropdown-item').forEach(item => {
item.addEventListener('click', event => {
const optionId = event.target.id;
let apiUrl = '';
// Define a URL com base na opção selecionada
switch (optionId) {
case 'notas':
apiUrl = 'http://18.117.70.4:8000/api/v1/notas/';
break;
case 'alunos':
apiUrl = 'http://18.117.70.4:8000/api/v1/alunos/';
break;
case 'disciplinas':
apiUrl = 'http://18.117.70.4:8000/api/v1/disciplinas/';
break;
default:
apiUrl = 'http://18.117.70.4:8000/api/v1/notas/';
}
document.getElementById("mytitle").textContent = event.target.innerHTML
// Faz a requisição com a URL correspondente à opção escolhida
if (apiUrl !== '') {
requestData(apiUrl);
}
});
});
/* ----------------------------------------------------------------------- */
// Função para fazer a requisição à API com base na opção selecionada
function requestData(url) {
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error('Erro na requisição');
}
return response.json(); // Transforma a resposta em JSON
})
.then(data => {
const dataBody = document.getElementById('data-body');
const headerRow = document.getElementById('header-row');
// Limpa os dados anteriores da tabela
dataBody.innerHTML = '';
headerRow.innerHTML = '';
// Cria a primeira linha (cabeçalho) da tabela baseada nas chaves do primeiro item retornado
Object.keys(data[0]).forEach(key => {
const th = document.createElement('th');
th.textContent = key;
headerRow.appendChild(th);
});
// Preenche a tabela com os dados
data.forEach(item => {
const row = document.createElement('tr');
Object.values(item).forEach(value => {
const td = document.createElement('td');
td.textContent = value;
row.appendChild(td);
});
dataBody.appendChild(row);
});
})
.catch(error => {
console.error('Erro:', error); // Em caso de erro, imprime no console
});
}
/* ----------------------------------------------------------------------- */
// Função para cadastrar Aluno
function cadastrarAluno() {
// Obter o valor do campo de entrada "Nome"
const nome = document.getElementById('nomeInput').value;
// Dados a serem enviados
const data = {
nome: nome
};
// Token
const token = '8c3ddc34ec43cef32fc618ca085fedbb71c48b39';
// URL da API
const url = 'http://18.117.70.4:8000/api/v1/alunos/';
// Enviar a solicitação POST para a API
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Token ' + token
},
body: JSON.stringify(data)
})
.then(response => {
if (response.ok) {
// Limpar o campo "nome" para permitir novo cadastro
nomeInput.value = '';
// Exibir mensagem de sucesso em um popup
alert('Aluno cadastrado com sucesso!');
} else {
throw new Error('Erro ao cadastrar aluno');
}
})
.catch(error => {
// Exibir mensagem de erro em um popup
alert('Erro: ' + error);
});
}
// Função para cadastrar Disciplina
function cadastrarDisciplina() {
// Obter o valor do campo de entrada "Nome"
const nome = document.getElementById('disciplinaInput').value;
// Dados a serem enviados
const data = {
nome: nome
};
// Token
const token = '8c3ddc34ec43cef32fc618ca085fedbb71c48b39';
// URL da API
const url = 'http://18.117.70.4:8000/api/v1/disciplinas/';
// Enviar a solicitação POST para a API
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Token ' + token
},
body: JSON.stringify(data)
})
.then(response => {
if (response.ok) {
// Limpar o campo "nome" para permitir novo cadastro
disciplinaInput.value = '';
// Exibir mensagem de sucesso em um popup
alert('Disciplina cadastrado com sucesso!');
} else {
throw new Error('Erro ao cadastrar aluno');
}
})
.catch(error => {
// Exibir mensagem de erro em um popup
alert('Erro: ' + error);
});
}
/* ----------------------------------------------------------------------- */
// Variáveis para salvar a id dos dados selecionados no form de cadastro de notas
var idAluno;
var idDisciplina;
// Função para preencher os dados no cadastro de notas
function getInfo() {
// GET Alunos
fetch('http://18.117.70.4:8000/api/v1/alunos/')
.then(response => {
if (!response.ok) {
throw new Error('Erro ao obter os alunos');
}
return response.json();
})
.then(data => {
const alunosList = document.getElementById('alunosList');
data.forEach(aluno => {
const option = document.createElement('option');
option.value = aluno.nome;
idAluno = aluno.id;
alunosList.appendChild(option);
});
})
.catch(error => {
console.error('Erro:', error);
});
// GET Disciplinas
fetch('http://18.117.70.4:8000/api/v1/disciplinas/')
.then(response => {
if (!response.ok) {
throw new Error('Erro ao obter as disciplinas');
}
return response.json();
})
.then(data => {
const disciplinasList = document.getElementById('disciplinasList');
data.forEach(disciplina => {
const option = document.createElement('option');
option.value = disciplina.nome;
idDisciplina = disciplina.id;
disciplinasList.appendChild(option);
});
})
.catch(error => {
console.error('Erro:', error);
});
}
function cadastrarNota(){
// Obter o valor dos campos de entrada.
// Para os campos de Aluno e Disciplina, serão usado as id's salvas.
const aluno = idAluno;
const ano = document.getElementById('anoInput').value;
const bimestre = document.getElementById('bimestreInput').value;
const disciplina = idDisciplina;
const nota = document.getElementById('notaInput').value;
// Dados a serem enviados
const data = {
bimestre: bimestre,
ano: ano,
nota: nota,
aluno: aluno,
disciplina: disciplina
};
// Token
const token = '8c3ddc34ec43cef32fc618ca085fedbb71c48b39';
// URL da API
const url = 'http://18.117.70.4:8000/api/v1/notas/';
// Enviar a solicitação POST para a API
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Token ' + token
},
body: JSON.stringify(data)
})
.then(response => {
if (response.ok) {
// Limpar os campos para permitir novo cadastro
alunoSelected.value = '';
anoInput.value = '';
bimestreInput.value = '';
disciplinaSelected.value = '';
notaInput.value = '';
// Exibir mensagem de sucesso em um popup
alert('Nota cadastrado com sucesso!');
} else {
throw new Error('Erro ao cadastrar aluno');
}
})
.catch(error => {
// Exibir mensagem de erro em um popup
alert('Erro: ' + error);
});
}