forked from Iagooalmeida/Interdisciplinar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpainelAdmin.php
304 lines (257 loc) · 12.9 KB
/
painelAdmin.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
require_once 'Class/Perguntas.php';
require_once 'conexao.php';
require_once 'Class/Usuario.php'; // Certifique-se de ter o caminho correto para a classe Usuario
$usuario = new Usuario($conn);
$autores = $usuario->listarAutores(); // Certifique-se de ter um método adequado na classe Usuario para listar os autores
// Inicie a sessão
session_start();
// Verifique se o usuário está autenticado
if (!isset($_SESSION['idUsuario'])) {
// Se não estiver autenticado, redirecione para a página de login
header("Location: login/login.html");
exit();
}
$pergunta = new Perguntas($conn);
$perguntas = $pergunta->listarPerguntas();
$stmt = $conn->prepare("SELECT temas.NomeTema, COUNT(perguntas.idPerguntas) AS Quantidade
FROM temas
LEFT JOIN perguntas ON temas.idTemas = perguntas.temas_idTemas
GROUP BY temas.NomeTema;");
$stmt->execute();
$resultado = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach ($resultado as $row) {
$tema[] = $row['NomeTema'];
$quantidade[] = $row['Quantidade'];
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página Adm FAQ</title>
<link rel="stylesheet" href="css/format.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="js/modal.js"></script>
<script src="js/filtroPerguntas.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', { 'packages': ['corechart'] });
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Tema', 'Quantidade'],
<?php
foreach ($resultado as $row) {
echo "['" . $row['NomeTema'] . "', " . $row['Quantidade'] . "],";
}
?>
]);
var options = {
width: '550',
height: '250',
is3D: true,
pieSliceText: 'percentage', // Exibir porcentagem
pieSliceTextStyle: {
color: 'white', // Cor do texto das fatias
fontSize: 14, // Tamanho da fonte do texto das fatias
textStyle: {
bold: true, // Negrito
}
},
backgroundColor: {
fill: '#fff', // Cor de fundo
},
legend: {
textStyle: {
color: '#333',
fontSize: 14,
},
},
chartArea: {
top: '15%', // Margem superior
width: '100%', // Largura da área do gráfico
height: '900%', // Altura da área do gráfico
},
// Centraliza o gráficos
};
// Defina as dimensões do contêiner do gráfico
var chartContainer = document.getElementById('chart_div');
chartContainer.style.width = '100%'; // Defina a largura desejada
chartContainer.style.height = '200px'; // Defina a altura desejada
var chart = new google.visualization.PieChart(chartContainer);
// Adicione um ouvinte de redimensionamento para ajustar o gráfico quando a janela for redimensionada
window.addEventListener('resize', function () {
chart.draw(data, options);
});
// Desenhe o gráfico pela primeira vez
chart.draw(data, options);
}
</script>
</head>
<body page='lista'>
<input type="checkbox" id="check">
<!--começo do cabeçalho-->
<header>
<label for="check">
<ion-icon name="menu-outline" id="sidebar_btn"></ion-icon>
</label>
<div class="left">
<h3>Fatec <span>Itapira</span></h3>
</div>
</header>
<!--final do cabeçalho-->
<!--começo da barra lateral-->
<div class="sidebar">
<div class="center">
<div class="foto-usuario">
<?php
$fotoPath = isset($_SESSION['fotoPath']) ? basename($_SESSION['fotoPath']) : '';
$caminhoRelativo = 'uploads/' . $fotoPath;
// Verifica se há um caminho da imagem e exibe a tag <img> com a classe 'foto-usuario-img'
if (!empty($fotoPath)) {
echo '<img class="foto-usuario-img" src="' . $caminhoRelativo . '" alt="Foto do Usuário">';
} else {
echo '<img class="foto-usuario-img" src="uploads/manager_icon_129392.png" alt="Imagem Padrão">';
}
?>
</div>
<h2>
<?php echo $_SESSION['nomeUsuario']; ?>
</h2>
</div>
<a href="#" onclick="vizualizar('lista', true)"><ion-icon
name="desktop-outline"></ion-icon><span>Painel</span></a>
<a href="gerenciarTema.php"><ion-icon name="book-outline"></ion-icon><span>Temas</span></a>
<a href="gerenciarUsuario.php"><ion-icon name="person-outline"></ion-icon><span>Usuário</span></a>
<a href="Views/listarVisitante.php"><ion-icon name="thumbs-up"></ion-icon></ion-icon><span>Feedback</span></a>
<a href="login/sairLogin.php"><ion-icon name="exit-outline"></ion-icon><span>Sair</span></a>
</div>
<!--final da barra lateral-->
<div class="content">
<div id='listaRegistros'>
<div class="grafico">
<h3 class="titulo_grafico">Distribuição Temática de Perguntas</h3>
<div></div>
<div id='chart_div'></div>
<div></div>
</div>
<div class="titulo_ask">
<h1>Cadastro de Perguntas FAQ</h1>
<a href="Views/cadastrarPergunta.php"><button>Inserir</button></a>
</div>
<div class="filtro">
<form id="filtroForm">
<fieldset>
<legend>Filtros e Ordenação:</legend>
<div class="form-row">
<label for="visualizacao">Visualização:</label><br>
<select id="visualizacao" name="visualizacao">
<option value="atual">Tabela Atual</option>
<option value="internas">Somente Interna</option>
<option value="externas">Somente Externa</option>
<option value="aprovadas">Somente Aprovadas</option>
<option value="pendentes">Somente Pendente</option>
</select>
</div>
<div class="form-row">
<label for="ordenarTema">Tema:</label><br>
<select id="ordenarTema" name="ordenarTema">
<option value="todos">Todos</option>
<?php foreach ($tema as $key => $value) : ?>
<option value="<?php echo $value; ?>"><?php echo $value; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="form-row">
<label style="display: inline-block;" for="filtroAutor">
Autor: <br>
<select id="filtroAutor" name="filtroAutor" class="selecao-autor">
<option value="todos">Todos</option>
<?php foreach ($autores as $autor) : ?>
<option value="<?php echo $autor; ?>"><?php echo $autor; ?></option>
<?php endforeach; ?>
</select>
</label>
</div>
<div class="form-row">
<label for="ordenarData">Data: <br>
<input type="date" id="ordenarData" name="ordenarData" placeholder="Escolha uma data">
</label>
</div>
</fieldset>
<fieldset>
<legend>Buscar Perguntas:</legend>
<input style="display: none;" type="radio" id="filtroPergunta" name="filtro" value="pergunta" checked>
<label for="filtroPergunta">Filtro: </label>
<input type="text" autofocus id="filtroInput" placeholder="Digite o termo de pesquisa">
<button type="button" onclick="limparFiltro()">Limpar</button>
</fieldset>
</form>
</div>
<?php if (!empty($perguntas)): ?>
<table>
<thead>
<tr>
<th style="display: none;">ID</th>
<th style="display: none;">Origem</th>
<th>Autor</th>
<th>pergunta</th>
<th>Resposta</th>
<th>Tema</th>
<th>Status</th>
<th >Data Cadastro</th> <!-- Coluna invisível para a data -->
<th>Ações</th>
</tr>
</thead>
<?php foreach ($perguntas as $lista): ?>
<tr>
<td style="display: none;"><?php echo $lista['idPerguntas']; ?></td>
<td style="display: none;"><?php echo $lista['Origem'] ?></td>
<td><?php echo $lista['Autor'] ?></td>
<td><?php echo $lista['ConteudoPergunta'] ?></td>
<td class="resposta-col">
<?php echo nl2br(substr($lista['Resposta'], 0, 95) . (strlen($lista['Resposta']) > 95 ? '...' : '')); ?>
</td>
<td><?php echo $lista['NomeTema']; ?></td>
<td><?php echo $lista['Status'] ?></td>
<td class="data-col"><?php echo date('d/m/Y', strtotime($lista['DataSubmissao'])); ?></td>
<td>
<a href="#" class="detalhes-btn" data-id="<?php echo $lista['idPerguntas']; ?>" title="Detalhes">
<i style="background: indigo;" class="edit material-icons">info</i>
</a>
<a href="Views/editarPergunta.php?id=<?php echo $lista['idPerguntas']; ?>" title="Editar">
<i class=" edit material-icons">edit</i>
</a>
<button type="button" class="excluir-btn" data-id="<?php echo $lista['idPerguntas']; ?>" title="Excluir">
<i class="material-icons">delete</i>
</button>
</td>
</tr>
<?php endforeach; ?>
</table>
<?php else: ?>
<p>Nenhuma pergunta cadastrada.</p>
<?php endif; ?>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Detalhes da Pergunta</h2>
<p><strong>ID:</strong><span id="detalhe-id"></span></p>
<p><strong>Autor:</strong> <span id="detalhe-autor"></span></p>
<p><strong>Conteúdo da Pergunta:</strong> <br><span id="detalhe-conteudo"></span></p>
<p><strong>Resposta:</strong> <span id="detalhe-resposta"></span></p>
<p><strong>Status:</strong> <span id="detalhe-status"></span></p>
<p><strong>Data do Cadastro:</strong> <span id="detalhe-data"></span></p>
<p><strong>Última Atualização:</strong> <span id="detalhe-atualizacao"></span></p>
<p><strong>Autor da Última Atualização:</strong> <span id="detalhe-autor-ultima-atualizacao"></span></p>
</div>
</div>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>