-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.html
404 lines (336 loc) · 15.8 KB
/
history.html
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Oldenburg&family=Protest+Strike&display=swap" rel="stylesheet">
<!--Poner favicon de https://icons8.com/icon/BlKaDTIba9nZ/blood-pressure-->
<link href="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/64/external-blood-pressure-pharmaceutical-flaticons-lineal-color-flat-icons-3.png" rel="icon" type="image/x-icon">
<link type="image/png" sizes="16x16" rel="icon" href=".../icons8-blood pressure-external-flaticons-lineal-color-flat-icons-16.png"> <link type="image/png" sizes="32x32" rel="icon" href=".../icons8-blood pressure-external-flaticons-lineal-color-flat-icons-32.png"> <link type="image/png" sizes="96x96" rel="icon" href=".../icons8-blood pressure-external-flaticons-lineal-color-flat-icons-96.png"> <link type="image/png" sizes="120x120" rel="icon" href=".../icons8-blood pressure-external-flaticons-lineal-color-flat-icons-120.png">
<title>Historial de Presión Arterial</title>
<style>
body {
background-color: #f0f4f7;
color: #333;
font-family: 'Oldenburg', sans-serif;
}
h1, h2 {
font-family: 'Protest Strike', sans-serif;
font-weight: bold;
text-align: center;
margin-top: 30px;
font-variant: small-caps;
}
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
.container {
margin-top: 50px;
}
.card {
border: 3px solid black;
}
.table {
margin-top: 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
/* Asegurarse de que la tabla sea responsiva en dispositivos pequeños */
overflow-x: auto;
/* Mostrar scroll siempre */
overflow-y: auto;
}
.btn {
font-family: Protest Strike; /* Cambia la fuente */
}
#addSampleReadings {
background-color: #4CAF50; /* Cambia a un color verde */
border-color: #4CAF50; /* Asegura que el borde coincide */
font-family: Protest Strike; /* Cambia la fuente */
}
/* Activar scroll despues de 5 registros */
.scrollable-table {
max-height: 343px;
overflow-y: auto;
}
/* Bordes para toda la tabla*/
.table * {
border: 5px solid black;
}
.table th {
background-color: #007bff;
color: white;
text-align: center;
}
.table th, .table td {
border: 2.5px solid black; /* Color negro para los bordes de las celdas */
text-align: center; /* Centrar el texto en las celdas */
}
.footer {
margin-top: 50px;
text-align: center;
font-size: 14px;
color: #888;
}
.stats {
margin-top: 20px;
text-align: center;
padding: 20px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 3.5px solid black;
}
.btn-secondary {
border-radius: 20px;
margin-top: 20px;
}
/* Estilo para la barra de desplazamiento cuando la tabla tiene más de 5 registros */
/*
.scrollable-table {
max-height: 250px;
overflow-y: auto;
}
*/
.btn-danger {
margin-top: 20px;
border-radius: 30px;
}
.btn-secondary {
/* Ajustar tamaño responsivo del botón */
border-radius: 30px;
}
/* Estilos Responsivos */
@media (max-width: 768px) {
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
.container {
margin-top: 20px;
padding: 0 10px; /* Reducir el padding lateral en móviles */
}
.table th, .table td {
font-size: 14px; /* Tamaño de fuente más pequeño en móviles */
padding: 8px; /* Reducir el padding para las celdas */
}
.stats {
padding: 15px; /* Reducir el padding en el contenedor de estadísticas */
}
/* Separar el boton de la card de arriba */
.btn-danger {
margin-top: 10px;
border-radius: 30px;
}
.btn-secondary {
/* Ajustar tamaño responsivo del botón */
border-radius: 30px;
}
}
/* Alternar color de las celdas */
.table tbody tr:nth-child(even) td {
background-color: #e2dfdf; /* Color gris claro para filas pares */
}
.table tbody tr:nth-child(odd) td {
background-color: white; /* Color blanco para filas impares */
}
/* Asegurarse de que el contenedor de la tabla sea responsivo */
@media (max-width: 480px) {
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
.table {
font-size: 12px; /* Tamaño de fuente aún más pequeño en dispositivos muy pequeños */
}
.table th, .table td {
padding: 6px; /* Padding aún más pequeño */
}
/* Separar el boton de la card de arriba */
.btn-danger {
margin-top: 10px;
border-radius: 30px;
}
.btn-secondary {
/* Ajustar tamaño responsivo del botón */
border-radius: 30px;
}
/* Asegurarse de que la tabla sea responsiva en dispositivos pequeños */
.table {
overflow-x: auto;
overflow-y: auto;
/* Mostrar el scroll siempre */
}
}
</style>
</head>
<body>
<div class="container">
<h1>Historial de Hipertensión</h1>
<div class="card p-4">
<div class="form-group">
<label for="patientSelect">Seleccionar Paciente:</label>
<select id="patientSelect" class="form-control">
<!-- Las opciones se agregarán aquí dinámicamente -->
</select>
</div>
<div class="card p-4">
<div class="scrollable-table">
<table class="table table-bordered">
<thead>
<tr>
<th>Fecha</th>
<th>Hora</th>
<th>Presión Sistólica (mmHg)</th>
<th>Presión Diastólica (mmHg)</th>
<th>Paciente</th>
</tr>
</thead>
<tbody id="historyTableBody">
<!-- Las lecturas se agregarán aquí dinámicamente -->
</tbody>
</table>
</div>
</div>
<div id="patientStats" class="stats">
<h2 style="font-weight: bold; font-variant: small-caps;">Estadísticas del Paciente</h2>
<p id="averageSystolic">Promedio Sistólico: - mmHg</p>
<p id="averageDiastolic"><strong>Promedio Diastólico:</strong> - mmHg</p>
<p id="minSystolic"><strong>Mínimo Sistólico:</strong> - mmHg (Hora: -)</p>
<p id="maxSystolic"><strong>Máximo Sistólico:</strong> - mmHg (Hora: -)</p>
<p id="minDiastolic"><strong>Mínimo Diastólico:</strong> - mmHg (Hora: -)</p>
<p id="maxDiastolic"><strong>Máximo Diastólico:</strong> - mmHg (Hora: -)</p>
<p id="totalReadings"><strong>Total de Lecturas:</strong> 0</p>
</div>
<button id="clearRecordsBtn" class="btn btn-danger btn-block">Eliminar todos los registros</button>
<a href="index.html" class="btn btn-secondary btn-block">Volver a la Página Principal</a>
<button id="addSampleReadings" class="btn btn-secondary btn-block" onclick="addSampleReadings()">Agregar Mediciones de Ejemplo</button>
<div class="footer">
<p>© 2024 Jesús David Silva Rangel. Todos los derechos reservados.</p>
</div>
</div>
<script>
// Función para eliminar todos los registros
function clearRecords() {
if (confirm("¿Estás seguro de que deseas eliminar todos los registros?")) {
localStorage.removeItem('bloodPressureReadings');
loadReadings(); // Recargar la tabla después de eliminar los registros
}
}
// Añadir evento al botón de eliminar
document.getElementById('clearRecordsBtn').addEventListener('click', clearRecords);
// Función para cargar las lecturas y estadísticas por paciente
function loadReadings() {
const readings = JSON.parse(localStorage.getItem('bloodPressureReadings')) || [];
const historyTableBody = document.getElementById('historyTableBody');
const averageSystolic = document.getElementById('averageSystolic');
const averageDiastolic = document.getElementById('averageDiastolic');
const totalReadings = document.getElementById('totalReadings');
const minSystolic = document.getElementById('minSystolic');
const maxSystolic = document.getElementById('maxSystolic');
const minDiastolic = document.getElementById('minDiastolic');
const maxDiastolic = document.getElementById('maxDiastolic');
const patientSelect = document.getElementById('patientSelect');
// Obtener el paciente seleccionado
const selectedPatient = patientSelect.value;
// Filtrar lecturas por paciente seleccionado o mostrar todas
const filteredReadings = selectedPatient ? readings.filter(reading => reading.patientName === selectedPatient) : readings;
// Limpiar la tabla antes de agregar filas nuevas
historyTableBody.innerHTML = '';
// Mostrar lecturas en la tabla
filteredReadings.forEach(reading => {
const row = document.createElement('tr');
row.innerHTML = `
<td>${reading.date}</td>
<td>${reading.time}</td>
<td>${reading.systolic}</td>
<td>${reading.diastolic}</td>
<td>${reading.patientName}</td>
`;
historyTableBody.appendChild(row);
});
// Mostrar pacientes en el select (asegúrate de que la opción "Todos los Pacientes" siempre esté presente)
const patients = readings.map(r => r.patientName);
const uniquePatients = [...new Set(patients)];
// Mantener la selección previa al actualizar el select
const previousSelectedPatient = patientSelect.value;
// Crear el select nuevamente con la opción de "Todos los Pacientes"
patientSelect.innerHTML = '<option value="">Todos los Pacientes</option>';
uniquePatients.forEach(patient => {
const option = document.createElement('option');
option.value = patient;
option.textContent = patient;
patientSelect.appendChild(option);
});
// Restablecer la selección previa si existe
if (uniquePatients.includes(previousSelectedPatient)) {
patientSelect.value = previousSelectedPatient;
}
// Calcular y mostrar estadísticas
if (filteredReadings.length > 0) {
const totalSystolic = filteredReadings.reduce((sum, r) => sum + r.systolic, 0);
const totalDiastolic = filteredReadings.reduce((sum, r) => sum + r.diastolic, 0);
const avgSystolic = Math.round(totalSystolic / filteredReadings.length);
const avgDiastolic = Math.round(totalDiastolic / filteredReadings.length);
const minSystolicReading = filteredReadings.reduce((min, r) => r.systolic < min.systolic ? r : min, filteredReadings[0]);
const maxSystolicReading = filteredReadings.reduce((max, r) => r.systolic > max.systolic ? r : max, filteredReadings[0]);
const minDiastolicReading = filteredReadings.reduce((min, r) => r.diastolic < min.diastolic ? r : min, filteredReadings[0]);
const maxDiastolicReading = filteredReadings.reduce((max, r) => r.diastolic > max.diastolic ? r : max, filteredReadings[0]);
averageSystolic.textContent = `Promedio Sistólico: ${avgSystolic} mmHg`;
averageDiastolic.textContent = `Promedio Diastólico: ${avgDiastolic} mmHg`;
minSystolic.textContent = `Mínimo Sistólico: ${minSystolicReading.systolic} mmHg (Fecha: ${minSystolicReading.date} - Hora: ${minSystolicReading.time})`;
maxSystolic.textContent = `Máximo Sistólico: ${maxSystolicReading.systolic} mmHg (Fecha: ${maxSystolicReading.date} - Hora: ${maxSystolicReading.time})`;
minDiastolic.textContent = `Mínimo Diastólico: ${minDiastolicReading.diastolic} mmHg (Fecha: ${minDiastolicReading.date} - Hora: ${minDiastolicReading.time})`;
maxDiastolic.textContent = `Máximo Diastólico: ${maxDiastolicReading.diastolic} mmHg (Fecha: ${maxDiastolicReading.date} - Hora: ${maxDiastolicReading.time})`;
totalReadings.textContent = `Total de Lecturas: ${filteredReadings.length}`;
} else {
averageSystolic.textContent = `Promedio Sistólico: - mmHg`;
averageDiastolic.textContent = `Promedio Diastólico: - mmHg`;
minSystolic.textContent = `Mínimo Sistólico: - mmHg (Hora: -)`;
maxSystolic.textContent = `Máximo Sistólico: - mmHg (Hora: -)`;
minDiastolic.textContent = `Mínimo Diastólico: - mmHg (Hora: -)`;
maxDiastolic.textContent = `Máximo Diastólico: - mmHg (Hora: -)`;
totalReadings.textContent = `Total de Lecturas: 0`;
}
}
// Evento para filtrar las lecturas cuando cambia la selección del paciente
document.getElementById('patientSelect').addEventListener('change', loadReadings);
// Llamar a la función al cargar la página
document.addEventListener('DOMContentLoaded', loadReadings);
// -------------------------------
// Función para agregar mediciones de ejemplo
function addSampleReadings() {
const readings = JSON.parse(localStorage.getItem('bloodPressureReadings')) || [];
const patientName = "Paciente de Prueba";
// Generar 20 mediciones de ejemplo
for (let i = 0; i < 20; i++) {
const date = new Date();
date.setDate(date.getDate() - i); // Agregar lecturas en fechas diferentes
const sampleReading = {
date: date.toISOString().split('T')[0], // Solo la fecha
time: date.toLocaleTimeString(), // Hora local
systolic: Math.floor(Math.random() * (180 - 100 + 1)) + 100, // Valor sistólico aleatorio entre 100 y 180
diastolic: Math.floor(Math.random() * (120 - 60 + 1)) + 60, // Valor diastólico aleatorio entre 60 y 120
patientName: patientName
};
readings.push(sampleReading);
}
// Guardar las lecturas actualizadas en localStorage
localStorage.setItem('bloodPressureReadings', JSON.stringify(readings));
// Recargar las lecturas y actualizar el select de pacientes
loadReadings();
}
// Agregar evento al botón de cargar mediciones de ejemplo
document.getElementById('addSampleReadingsButton').addEventListener('click', addSampleReadings);
</script>
</body>
</html>