Skip to content

Commit

Permalink
Merge pull request #28 from enflujo/ficha-proyecto
Browse files Browse the repository at this point in the history
🌟 Agregar datos a Ficha proyecto
  • Loading branch information
1cgonza authored Feb 12, 2024
2 parents c6b3001 + 7a6bc90 commit 23c40b7
Show file tree
Hide file tree
Showing 13 changed files with 312 additions and 197 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion estaticos/proyectos.json

Large diffs are not rendered by default.

Binary file not shown.
7 changes: 5 additions & 2 deletions procesador/procesador.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const listas: Listas = {
decadas: []
};

const archivo = './procesador/datos/Listado de proyectos - 60 años dpto antropología0802.xlsx';
const archivo = './procesador/datos/Listado de proyectos - 60 años dpto antropología1202.xlsx';

async function procesar() {
await procesarEgresados(archivo);
Expand Down Expand Up @@ -192,7 +192,10 @@ function procesarFila(fila: string[]) {
const nombreProyecto = fila[1].trim();
const respuesta: Proyecto = {
id: +fila[0],
nombre: { nombre: nombreProyecto, slug: slugificar(nombreProyecto) }
nombre: { nombre: nombreProyecto, slug: slugificar(nombreProyecto) },
descripcion: fila[16],
enlaces: fila[17] && fila[17] !== 'No aplica' ? fila[17].trim().split(' ') : [],
imagenes: fila[19] && fila[19] !== 'No aplica' ? fila[19].trim().split(',') : []
};
const años = validarAño(`${fila[3]}`.trim());
if (años) respuesta.años = años;
Expand Down
Loading

0 comments on commit 23c40b7

Please sign in to comment.