Spaces:
Sleeping
Sleeping
File size: 7,163 Bytes
445de93 | 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 | import './tooltip.js';
import { analizarResultados } from './analisis.js';
import { colapsarPatrones, inicializarSincMob } from './ui.js';
import { llamarIA, inicializarConfigBackend } from './ia.js';
import { inicializarParserPdf } from './pdf-parser.js';
import { verificarAuth, abrirModalAuth } from './auth.js';
import { abrirModalPapers, inicializarModalPapers } from './papers.js';
// Tema oscuro/claro
const temaGuardado = localStorage.getItem('mx-theme');
const temaPreferido = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
document.documentElement.dataset.theme = temaGuardado || temaPreferido;
const btnTema = document.getElementById('btn-tema');
if (btnTema) {
btnTema.addEventListener('click', () => {
const siguienteTema = document.documentElement.dataset.theme === 'dark' ? 'light' : 'dark';
document.documentElement.dataset.theme = siguienteTema;
localStorage.setItem('mx-theme', siguienteTema);
});
}
// Data
let referencias = [];
let alteraciones = {};
let ultimoAnalisis = { hallazgos: [], patrones: [] };
const cargarReferencias = async () => {
try {
const response = await fetch('data/valores_referencia.json');
if (!response.ok) throw new Error(`Error HTTP: ${response.status}`);
referencias = await response.json();
} catch (error) {
console.error('Error cargando valores de referencia:', error);
}
};
const cargarAlteraciones = async () => {
try {
const response = await fetch('data/alteraciones.json');
if (!response.ok) throw new Error(`Error HTTP: ${response.status}`);
alteraciones = await response.json();
} catch (error) {
console.error('Error cargando alteraciones:', error);
}
};
cargarReferencias();
cargarAlteraciones();
// Colecci贸n de datos de formulario
const obtenerDatosPaciente = () => {
const especieCruda = document.getElementById('pt-especie').value;
const valorEdad = document.getElementById('pt-edad').value;
const edadUnidad = document.getElementById('pt-edad-unidad').value;
const edadMeses = valorEdad === '' ? null
: edadUnidad === 'meses' ? parseFloat(valorEdad)
: parseFloat(valorEdad) * 12;
return {
especie: especieCruda === 'Canino' ? 'canino' : especieCruda === 'Felino' ? 'felino' : null,
raza: document.getElementById('pt-raza').value,
edadMeses,
sexo: document.getElementById('pt-sexo').value
};
};
const obtenerValoresFormulario = () => {
const valores = {};
document.querySelectorAll('input[type="number"]').forEach(input => {
if (input.name && input.value !== '') valores[input.name] = parseFloat(input.value);
});
return valores;
};
// Renderizado
const ETIQUETA_GRAVEDAD = { leve: 'Leve', moderado: 'Moderado', grave: 'Grave' };
document.querySelectorAll('.fila-campo input[type="number"]').forEach(input => {
const span = document.createElement('span');
span.className = 'estado-campo';
input.before(span);
});
const actualizarClasesInputs = (hallazgos) => {
document.querySelectorAll('input[type="number"]').forEach(input => {
input.classList.remove('alto', 'bajo');
const span = input.previousElementSibling;
if (span?.classList.contains('estado-campo')) {
span.textContent = '';
span.className = 'estado-campo';
}
});
hallazgos.forEach(h => {
const input = document.querySelector(`input[name="${h.clave}"]`);
if (!input) return;
input.classList.add(h.direccion);
const span = input.previousElementSibling;
if (span?.classList.contains('estado-campo')) {
span.textContent = `${h.direccion === 'alto' ? 'Alto' : 'Bajo'} 路 ${ETIQUETA_GRAVEDAD[h.gravedad]}`;
span.className = `estado-campo estado-campo--${h.direccion}`;
}
});
};
const renderizarPatrones = (patrones) => {
const contenedor = document.getElementById('patrones-lista');
if (!contenedor) return;
contenedor.innerHTML = patrones.length === 0
? '<p class="sin-hallazgos">Sin patrones detectados.</p>'
: patrones.map(p => `
<div class="elemento-patron gravedad-${p.gravedad}">
<div class="titulo-patron">${p.nombre}</div>
<div class="cuerpo-patron">${p.descripcion}</div>
</div>`).join('');
};
// Evaluaci贸n
const evaluar = () => {
const paciente = obtenerDatosPaciente();
if (!paciente.especie || !referencias[paciente.especie]) {
actualizarClasesInputs([]);
renderizarPatrones([]);
return;
}
const valores = obtenerValoresFormulario();
const { hallazgos, patrones } = analizarResultados(valores, paciente, referencias, alteraciones);
ultimoAnalisis = { hallazgos, patrones };
actualizarClasesInputs(hallazgos);
renderizarPatrones(patrones);
};
// Eventos
document.addEventListener('input', e => {
if (e.target.type !== 'number') return;
if (e.target.value < 0) e.target.value = 0;
if (e.target.value.replace('.', '').length > 4) e.target.value = e.target.value.slice(0, 4);
e.target.classList.toggle('max-chars', e.target.value.replace('.', '').length >= 4);
evaluar();
});
document.getElementById('pt-especie').addEventListener('change', evaluar);
document.getElementById('pt-raza').addEventListener('input', evaluar);
document.getElementById('pt-edad').addEventListener('input', evaluar);
document.getElementById('pt-edad-unidad').addEventListener('change', evaluar);
document.getElementById('pt-sexo').addEventListener('change', evaluar);
inicializarSincMob(evaluar);
inicializarConfigBackend();
inicializarParserPdf(evaluar);
inicializarModalPapers();
document.addEventListener('click', e => {
const btn = e.target.closest('.btn-limpiar-panel');
if (!btn) return;
const panel = document.getElementById(`panel-${btn.dataset.panel}`);
if (!panel) return;
panel.querySelectorAll('input[type="number"], input[type="text"], input[type="url"], select').forEach(el => {
if (el.tagName === 'SELECT') {
el.selectedIndex = 0;
} else {
el.value = '';
el.classList.remove('alto', 'bajo', 'max-chars');
const span = el.previousElementSibling;
if (span?.classList.contains('estado-campo')) {
span.textContent = '';
span.className = 'estado-campo';
}
}
});
evaluar();
});
document.querySelector('.boton-analizar').addEventListener('click', async () => {
const autenticado = await verificarAuth();
if (!autenticado) {
abrirModalAuth(() => {
colapsarPatrones(true);
llamarIA(obtenerDatosPaciente, obtenerValoresFormulario, () => ultimoAnalisis, () => referencias);
});
return;
}
colapsarPatrones(true);
llamarIA(obtenerDatosPaciente, obtenerValoresFormulario, () => ultimoAnalisis, () => referencias);
});
document.querySelector('.boton-papers').addEventListener('click', () => {
abrirModalPapers(ultimoAnalisis.patrones);
});
|