-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
62 lines (49 loc) · 1.8 KB
/
index.ts
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
import { series } from './data.js';
import { Serie } from './Serie.js';
export const tabla: HTMLElement | null = document.getElementById('cuerpo-Series');
const espacioCarta: HTMLElement | null = document.getElementById('cartaContenido');
var sumatoria: number = 0;
function cargarTabla():void{
if (tabla) {
series.forEach((serie) => {
const row = document.createElement('tr'); // <td scope="row" id="nombreSerie">${serie.nombre}</td>
row.innerHTML = `
<td scope="row">${serie.id}</td>
<td id="nombreSerie">${serie.nombre}</td>
<td>${serie.canal}</td>
<td>${serie.temporadas}</td>`
tabla.appendChild(row);
row.addEventListener('click', () => {cargarCarta(serie)});
});
} else {
console.error("No se encontró el elemento con el id \"cuerpo-Series\"");
}
}
function cargarCarta(serie: Serie):void{
if(espacioCarta){
espacioCarta.innerHTML = `<div class="card text-white bg-dark border-primary mb-5" style="width: 18rem;">
<img class="card-img-top" src="${serie.imagen}" alt="Card image cap">
<div class="card-body">
<h3>${serie.nombre}</h3>
<p class="card-text">${serie.descripcion}</p>
<a href="${serie.link}">Clic aca para visitar la serie</a>
</div>
</div>`
}
}
function promedioTemporadas():void{
if (tabla) {
series.forEach((serie) => {
sumatoria += serie.temporadas;
});
}
const parrafo = document.getElementById('average');
var promedio = sumatoria / series.length;
if (parrafo != null){
parrafo.innerHTML = `Average seasons: ${promedio}`
} else {
console.error("No se encontró el elemento con el id \"average\"");
}
}
cargarTabla();
promedioTemporadas()