Skip to content

Commit

Permalink
🐛 mostrar ficha en servidor
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Feb 28, 2024
1 parent 8c59b76 commit 328d710
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 36 deletions.
6 changes: 5 additions & 1 deletion src/componentes/Ficha.astro
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,13 @@

const siguiente = document.getElementById('fichaElementoSiguiente') as HTMLSpanElement;
const anterior = document.getElementById('fichaElementoAnterior') as HTMLSpanElement;
const vistaActual = vista.get();

// Cargar ficha anterior o ficha siguiente al hace click en los botones
siguiente.onclick = () => {
let lista = [];
const actual = elementoSeleccionado.get();
if (!actual) return;
const vistaActual = vista.get();

if (vistaActual === 'proyectos') {
lista = actual.tipo !== 'proyecto' ? datosListas.get()[actual.tipo as keyof Listas] : datosProyectos.get();
Expand All @@ -170,6 +171,7 @@
let lista = [];
const actual = elementoSeleccionado.get();
if (!actual) return;
const vistaActual = vista.get();

if (vistaActual === 'proyectos') {
lista = actual.tipo !== 'proyecto' ? datosListas.get()[actual.tipo as keyof Listas] : datosProyectos.get();
Expand Down Expand Up @@ -267,6 +269,8 @@
seccionImagenes.style.display = 'none';
}

const vistaActual = vista.get();

if (!vistaActual) return;
// Llenar el resto de los campos

Expand Down
67 changes: 32 additions & 35 deletions src/utilidades/cerebro.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { atom, map, onMount } from 'nanostores';
import { atom, map } from 'nanostores';
import { ordenarListaObjetos, pedirDatos } from './ayudas';
import type {
Listas,
Expand Down Expand Up @@ -54,6 +54,8 @@ export const nombresListasEgresados = {
const base = import.meta.env.BASE_URL;

vista.subscribe(async (vistaActual) => {
if (!vistaActual) return;

if (vistaActual === 'proyectos') {
const geoProyectos = await pedirDatos<FeatureCollection<Point>>(`${base}/datosMapa.geo.json`);
geo.set(geoProyectos);
Expand All @@ -79,44 +81,39 @@ vista.subscribe(async (vistaActual) => {
revisarVariablesURL();
}

try {
const datosBuscador = await pedirDatos<OpcionBuscadorDatos[]>(`${base}/datosBuscador.json`);
const sugerencias = document.getElementById('sugerencias') as HTMLDataListElement;
const opciones: ElementoBuscador[] = datosBuscador.map((opcion) => {
const elemento = document.createElement('li');
elemento.className = 'resultadoBusqueda';
elemento.innerText = opcion.nombre;

elemento.addEventListener('click', () => {
sugerencias.classList.remove('visible');
let indice;

if (opcion.tipo)
if (opcion.vista !== vistaActual) {
const ruta = opcion.vista === 'proyectos' ? base : `${base}/egresados`;
actualizarUrl(
[
{ nombre: 'id', valor: opcion.id },
{ nombre: 'tipo', valor: opcion.tipo }
],
true,
ruta
);
} else {
actualizarUrl([
const datosBuscador = await pedirDatos<OpcionBuscadorDatos[]>(`${base}/datosBuscador.json`);
const sugerencias = document.getElementById('sugerencias') as HTMLDataListElement;
const opciones: ElementoBuscador[] = datosBuscador.map((opcion) => {
const elemento = document.createElement('li');
elemento.className = 'resultadoBusqueda';
elemento.innerText = opcion.nombre;

elemento.addEventListener('click', () => {
sugerencias.classList.remove('visible');

if (opcion.tipo)
if (opcion.vista !== vistaActual) {
const ruta = opcion.vista === 'proyectos' ? base : `${base}/egresados`;
actualizarUrl(
[
{ nombre: 'id', valor: opcion.id },
{ nombre: 'tipo', valor: opcion.tipo }
]);
}
});

return { opcion: elemento, ...opcion };
],
true,
ruta
);
} else {
actualizarUrl([
{ nombre: 'id', valor: opcion.id },
{ nombre: 'tipo', valor: opcion.tipo }
]);
}
});

opcionesBuscador.set(opciones);
} catch (err) {
console.error(err);
}
return { opcion: elemento, ...opcion };
});

opcionesBuscador.set(opciones);
});

export function filtrarMapa(lugares?: { slug: string; conteo: number }[]) {
Expand Down

0 comments on commit 328d710

Please sign in to comment.