-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
89 lines (73 loc) · 2.31 KB
/
script.js
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
let loadMoreBtn = document.querySelector('#load-more');
let currentItem = 4;
loadMoreBtn.onclick = () =>{
let boxes = [...document.querySelectorAll('.box-container .box')];
for(var i = currentItem; i < currentItem + 4; i++){
boxes[i].style.display = 'inline-block';
}
currentItem += 4;
if(currentItem >= boxes.length){
loadMoreBtn.style.display = 'none'
}
}
//Carrito
const carrito = document.getElementById('carrito');
const elementos1 = document.getElementById('lista-1');
const lista = document.querySelector('#lista-carrito tbody');
const vaciarCarritoBtn = document.getElementById('vaciar-carrito');
cargarEventListeners();
function cargarEventListeners(){
elementos1.addEventListener('click', comprarElemento);
carrito.addEventListener('click', eliminarElemento);
vaciarCarritoBtn.addEventListener('click', vaciarCarrito);
}
function comprarElemento(e){
e.preventDefault();
if(e.target.classList.contains('agregar-carrito')){
const elemento = e.target.parentElement.parentElement;
leerDatosElemento(elemento);
}
}
function leerDatosElemento(elemento){
const infoElemento = {
imagen: elemento.querySelector('img').src,
titulo: elemento.querySelector('h3').textContent,
precio: elemento.querySelector('.precio').textContent,
id: elemento.querySelector('a').getAttribute('data-id')
}
insertarCarrito(infoElemento)
}
function insertarCarrito(elemento){
const row = document.createElement('tr');
row.innerHTML = `
<td>
<img src="${elemento.imagen}" width=100 />
</td>
<td>
${elemento.titulo}
</td>
<td>
${elemento.precio}
</td>
<td>
<a href="#" class="borrar" data-id="${elemento.id0}">X</a>
</td>
`;
lista.appendChild(row);
}
function eliminarElemento(e){
e.preventDefault();
let elemento,
elementoId;
if(e.target.classList.contains('borrar')){
e.target.parentElement.parentElement.remove();
elemento = e.target.parentElement.parentElement;
elementoId = elemento.querySelector('a').getAttribute('data-id');
}
}
function vaciarCarrito(){
while(lista.firstChild){
lista.removeChild(lista.firstChild);
}
return false;
}