Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkas-Overgold authored Nov 22, 2024
1 parent d537688 commit c6a33a1
Showing 1 changed file with 105 additions and 52 deletions.
157 changes: 105 additions & 52 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,52 +1,105 @@
<!DOCTYPE HTML>
<html lang="SP">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gestor de Grafos</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="grafo.png" type="image/x-icon">
</head>
<body>
<h1>Gestor de Grafos con Algoritmo de Kruskal</h1>

<div id="drag-drop-area">
<p>Arrastra un archivo aquí o <span id="file-input-trigger">haz clic para seleccionarlo</span>.</p>
<input type="file" id="file-input" accept=".csv, .xlsx" hidden>
</div>

<form id="upload-form">
<button type="button" id="upload-button">Subir Archivo</button>
</form>

<div id="results" style="display:none;">
<h2>Resultados</h2>
<p id="peso_total"></p>
<div class="graficos-container">
<div class="grafico-box">
<h3>Grafo Completo</h3>
<div class="image-container">
<img id="grafo_completo" src="#" alt="Grafo Completo">
<button class="zoom-button" data-zoom="in">Zoom +</button>
<button class="zoom-button" data-zoom="out">Zoom -</button>
</div>
</div>
<div class="grafico-box">
<h3>Árbol MST</h3>
<div class="image-container">
<img id="mst" src="#" alt="Árbol MST">
<button class="zoom-button" data-zoom="in">Zoom +</button>
<button class="zoom-button" data-zoom="out">Zoom -</button>
</div>
</div>
</div>
<a href="/">Volver</a>
</div>

<div id="error-message" style="display:none;">
<p>Ocurrió un error al procesar el archivo.</p>
</div>

<script src="scripts.js"></script>
</body>
</html>
const dragDropArea = document.getElementById('drag-drop-area');
const fileInput = document.getElementById('file-input');
const fileInputTrigger = document.getElementById('file-input-trigger');
const uploadButton = document.getElementById('upload-button');
const errorMessage = document.getElementById('error-message');
let selectedFile = null;

// Mostrar área activa al arrastrar un archivo
dragDropArea.addEventListener('dragover', (e) => {
e.preventDefault();
dragDropArea.classList.add('drag-over');
});

dragDropArea.addEventListener('dragleave', () => {
dragDropArea.classList.remove('drag-over');
});

// Manejar el evento drop
dragDropArea.addEventListener('drop', (e) => {
e.preventDefault();
dragDropArea.classList.remove('drag-over');
const file = e.dataTransfer.files[0];
validarArchivo(file);
});

// Activar el input de archivo al hacer clic
fileInputTrigger.addEventListener('click', () => {
fileInput.click();
});

// Validar y mostrar el archivo seleccionado
fileInput.addEventListener('change', () => {
const file = fileInput.files[0];
validarArchivo(file);
});

// Función para validar el archivo
function validarArchivo(file) {
if (file && file.type === 'text/csv') {
selectedFile = file;
dragDropArea.querySelector('p').textContent = Archivo seleccionado: ${file.name};
dragDropArea.classList.add('file-selected');
errorMessage.style.display = 'none';
} else {
alert('Por favor selecciona un archivo CSV.');
selectedFile = null;
}
}

// Subir archivo
uploadButton.addEventListener('click', async () => {
if (!selectedFile) {
errorMessage.style.display = 'block';
errorMessage.innerHTML = <p style="color: red;">Por favor selecciona un archivo antes de subirlo.</p>;
return;
}

try {
const formData = new FormData();
formData.append('file', selectedFile);

const response = await fetch('/upload', {
method: 'POST',
body: formData,
});

if (!response.ok) {
throw new Error('Error al subir el archivo.');
}

const data = await response.json();
mostrarResultados(data);
} catch (error) {
errorMessage.style.display = 'block';
errorMessage.innerHTML = <p style="color: red;">Hubo un error al subir el archivo. Intenta nuevamente.</p>;
}
});

// Mostrar resultados o errores
function mostrarResultados(data) {
const results = document.getElementById('results');

errorMessage.style.display = 'none';

if (data.error) {
results.style.display = 'none';
errorMessage.style.display = 'block';
errorMessage.innerHTML = <p style="color: red;">${data.error}</p>;
} else {
results.style.display = 'block';
document.getElementById('peso_total').textContent = Peso total del MST: ${data.peso_total} USD;
document.getElementById('grafo_completo').src = data.grafo;
document.getElementById('mst').src = data.mst;
}
}

// Agregar funcionalidad de zoom a las imágenes
document.querySelectorAll('.zoom-button').forEach(button => {
button.addEventListener('click', () => {
const img = button.parentElement.querySelector('img');
const zoom = button.getAttribute('data-zoom');
const currentScale = parseFloat(img.style.transform.replace('scale(', '').replace(')', '') || 1);
img.style.transform = scale(${zoom === 'in' ? currentScale + 0.1 : Math.max(currentScale - 0.1, 1)});
});
});

0 comments on commit c6a33a1

Please sign in to comment.