-
Notifications
You must be signed in to change notification settings - Fork 1
/
carrito.html
311 lines (278 loc) · 15.8 KB
/
carrito.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrito de Compras</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="carrito.css">
</head>
<body>
<header>
<a href="./index.html"><img src="./img/extra/petshop.svg" alt="logo"></a>
<nav>
<ul>
<li><a href="./index.html#inicio">Inicio</a></li>
<li><a href="./index.html#productos">Productos</a></li>
<li><a href="./index.html#contacto">Contacto</a></li>
<li><a href="./index.html#servicios">Servicios</a></li>
<li><a href="./carrito.html" class="carrito-icon">
<img src="./img/extra/carrito.svg" alt="Carrito de compra">
<span class="contador">0</span>
</a></li>
</ul>
</nav>
</header>
<main>
<table id="listaProductos">
<thead>
<tr>
<th>Producto</th>
<th>Precio</th>
<th>Cantidad</th>
<th>Total</th>
</tr>
</thead>
<tbody id="tablaBody">
<!-- Aquí se agregarán los productos dinámicamente -->
</tbody>
</table>
</main>
<footer>
<div id="formasDePago">
<h5>Formas de Pago</h5>
<ul>
<li><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" />
</svg></li>
<li><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" />
</svg></li>
<li><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" />
</svg></li>
<li><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" />
</svg></li>
</ul>
</div>
<a href="/PetShop/"><img src="./img/extra/petshop.svg" alt="logo"></a>
<div id="redes">
<ul>
<li class="facebook">
<a href="https://www.facebook.com" target="_blank" class="facebook">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z" />
</svg>
</a>
</li>
<li class="instagram">
<a href="https://www.instagram.com" target="_blank" class="instagram">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" />
</svg>
</a>
</li>
<li class="whatsapp">
<a href="https://web.whatsapp.com" target="_blank" class="whatsapp">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" />
</svg>
</a>
</li>
</ul>
</div>
</footer>
<script>
var productos = {
"productos": [
{
"id": "01",
"nombre": "GATI PESCADO Y SALMON",
"imagen": "./img/productos/Ofert1.webp",
"descripcion": "10% OFF",
"precio": "10"
},
{
"id": "02",
"nombre": "EXCELLENT PUPPY",
"imagen": "./img/productos/Ofert2.webp",
"descripcion": "30% OFF",
"precio": "15"
},
{
"id": "03",
"nombre": "PRO PLAN PUPPY MEDIANO",
"imagen": "./img/productos/Ofert3.webp",
"descripcion": "15% OFF",
"precio": "20"
},
{
"id": "1",
"nombre": "Sieger",
"imagen": "img/productos/1.webp",
"descripcion": "2kg Gratis",
"precio": "150"
},
{
"id": "2",
"nombre": "Cat Chow",
"imagen": "img/productos/2.webp",
"descripcion": "3kg Gratis",
"precio": "180"
},
{
"id": "3",
"nombre": "Complete",
"imagen": "img/productos/3.webp",
"descripcion": "2kg Gratis",
"precio": "118"
},
{
"id": "4",
"nombre": "Balanced",
"imagen": "img/productos/4.webp",
"descripcion": "2kg Gratis",
"precio": "141"
},
{
"id": "5",
"nombre": "Dog Selection",
"imagen": "img/productos/5.webp",
"descripcion": "2kg Gratis",
"precio": "114"
},
{
"id": "6",
"nombre": "Eukanuba",
"imagen": "img/productos/6.webp",
"descripcion": "20% Gratis",
"precio": "135"
},
{
"id": "7",
"nombre": "Ken-l",
"imagen": "img/productos/7.webp",
"descripcion": "3kg Gratis",
"precio": "167"
},
{
"id": "8",
"nombre": "Premium",
"imagen": "img/productos/8.webp",
"descripcion": "2kg Gratis",
"precio": "147"
}
]
}
</script>
<script>
var carritoProductos = JSON.parse(localStorage.getItem("carritoProductos"));
var carritoContador = carritoProductos.length;
var productosEnCarrito = {};
var contadorSpan = document.querySelector(".contador");
contadorSpan.textContent = carritoContador.toString();
// Obtener una referencia al elemento <main> donde se mostrarán los productos en el carrito
var mainElement = document.getElementById("listaProductos")
var tbody = document.querySelector("#listaProductos tbody");
var sumaTotalProductos = 0;
// Función para agregar productos al carrito en el HTML
function agregarProductosAlCarritoHTML() {
tbody.innerHTML = "";
carritoProductos.forEach(function (idProducto) {
productosEnCarrito[idProducto] = (productosEnCarrito[idProducto] || 0) + 1;
});
Object.keys(productosEnCarrito).forEach(function (idProducto) {
var producto = productos.productos.find(function (item) {
return item.id === idProducto;
});
if (producto) {
var filaHTML = `
<tr class="tablaProducto" data-id="${producto.id}">
<td>${producto.nombre}</td>
<td>$${producto.precio}</td>
<td> <button class="restar">-</button><strong class="cantidad">
${productosEnCarrito[idProducto]}
</strong>
<button class="sumar">+</button></td>
<td id="sumaPrecios">$${calcularSumaPrecios(producto.precio, productosEnCarrito[idProducto])}</td>
</tr>
`;
tbody.insertAdjacentHTML("beforeend", filaHTML);
};
sumaTotalProductos = sumaTotalProductos + calcularSumaPrecios(producto.precio, productosEnCarrito[idProducto])
});
// Agregar fila para mostrar la suma total
var filaSumaTotalHTML = `
<tr>
<td colspan="3"><strong>Total:</strong></td>
<td id="totalSuma"><strong>$${sumaTotalProductos}</strong></td>
</tr>`;
tbody.insertAdjacentHTML("beforeend", filaSumaTotalHTML);
var filaSumaTotalHTML = `
<tr>
<td colspan="3"></td>
<td id="bottonPagar"><button> Pagar </button></td>
</tr>`;
tbody.insertAdjacentHTML("beforeend", filaSumaTotalHTML);
};
agregarProductosAlCarritoHTML();
function calcularSumaPrecios(p, c) {
var suma = p * c
return suma
};
/** Botones Sumar y restar Productos */
var botonesRestar = document.querySelectorAll('.restar');
var botonesSumar = document.querySelectorAll('.sumar');
var botonPagar = document.getElementById('bottonPagar')
botonesRestar.forEach(function (boton) {
boton.addEventListener('click', function () {
var filaProducto = this.closest('.tablaProducto');
var idProducto = filaProducto.dataset.id;
// Disminuir la cantidad del producto en el carrito
productosEnCarrito[idProducto] = Math.max(0, (productosEnCarrito[idProducto] || 0) - 1);
// Actualizar la cantidad en el HTML
var cantidadHTML = filaProducto.querySelector('.cantidad');
cantidadHTML.textContent = productosEnCarrito[idProducto].toString();
// Actualizar el contador del carrito
var carritoContador = Object.values(productosEnCarrito).reduce((acc, cantidad) => acc + cantidad, 0);
contadorSpan.textContent = carritoContador.toString();
});
});
botonesSumar.forEach(function (boton) {
boton.addEventListener('click', function () {
var filaProducto = this.closest('.tablaProducto');
var idProducto = filaProducto.dataset.id;
// Aumentar la cantidad del producto en el carrito
productosEnCarrito[idProducto] = (productosEnCarrito[idProducto] || 0) + 1;
// Actualizar la cantidad en el HTML
var cantidadHTML = filaProducto.querySelector('.cantidad');
cantidadHTML.textContent = productosEnCarrito[idProducto].toString();
// Actualizar el contador del carrito
var carritoContador = Object.values(productosEnCarrito).reduce((acc, cantidad) => acc + cantidad, 0);
contadorSpan.textContent = carritoContador.toString();
});
});
botonPagar.addEventListener('click', () => {
carritoProductos = [];
localStorage.setItem("carritoProductos", JSON.stringify(carritoProductos));
location.reload();
})
</script>
</body>
</html>