-
Notifications
You must be signed in to change notification settings - Fork 2
/
carrito.html
182 lines (172 loc) · 6.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/estilos.css">
<script src="https://unpkg.com/vue@next"></script> <!-- esto es para que funcione vue -->
<link rel="icon" href="./icon.png" type="image/x-icon">
<link rel="shortcut icon" href="./icon.png" type="image/x-icon">
<title>Carrito de Diagon Alley</title>
</head>
<body>
<header>
<div class="logo">
<a href="./index.html">
<img src="logo1.png" alt="Logo" class="imglogo" width="300px">
</a>
</div>
<nav>
<ul>
<li><a href="./index.html">Inicio</a></li>
<li><a href="./varitas.html">Varitas</a></li>
<li><a href="./escobas.html">Escobas</a></li>
<li><a href="./login.html">Iniciar sesion</a></li>
<li class="selected"><a href="./carrito.html"><i class="fi fi-rr-shopping-cart"></i></a></li>
</ul>
</nav>
</header>
<main>
<div id="app">
<h1>Productos disponibles</h1>
<table>
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Cantidad</th>
<th>Precio</th>
<th>Agregar al Carrito</th>
</tr>
</thead>
<tbody>
<tr v-for="producto in productos" :key="producto.codigo">
<td>{{ producto.codigo }}</td>
<td>{{ producto.descripcion }}</td>
<td align="right">{{ producto.cantidad }}</td>
<td align="right"> {{ producto.precio }}</td>
<td>
<button @click="agregarAlCarrito(producto)"> <b>+</b> </button>
<button @click="restarDelCarrito(producto)"> <b>-</b> </button>
</td>
</tr>
</tbody>
</table>
<div v-if="mostrarCarrito">
<h3>Productos en el carrito:</h3>
<table>
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Cantidad</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr v-for="item in carrito" :key="item.codigo">
<td>{{ item.codigo }}</td>
<td>{{ item.descripcion }}</td>
<td align="right">{{ item.cantidad }}</td>
<td align="right"> {{ item.precio }}</td>
</tr>
</tbody>
</table>
</div>
<div v-if="!mostrarCarrito" class="contenedor-centrado">
<button @click="obtenerCarrito" id="mostrarcarrito">Mostrar carrito</button>
</div>
</div>
<script>
const URL = "https://yochule.pythonanywhere.com/"
const app = Vue.createApp({
data() {
return {
productos: [],
mostrarCarrito: false,
carrito: [],
}
},
created() {
this.obtenerProductos()
},
methods: {
obtenerProductos() {
fetch(URL + 'productos')
.then(response => response.json())
.then(data => {
this.productos = data
})
.catch(error => {
console.error(URL + 'productos', error)
alert('Error al obtener los productos.')
})
},
agregarAlCarrito(producto) {
fetch(URL + 'carrito', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
codigo: producto.codigo,
cantidad: 1, // Agregamos una unidad al carrito
}),
})
.then(response => response.json())
.then(data => {
alert(data.message)
})
.catch(error => {
console.error('Error al agregar el producto al carrito:', error)
alert('Error al agregar el producto al carrito.')
})
},
restarDelCarrito(producto) {
fetch(URL + 'carrito', {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
codigo: producto.codigo,
cantidad: 1, // Restamos una unidad del carrito
}),
})
.then(response => response.json())
.then(data => {
alert(data.message)
})
.catch(error => {
console.error('Error al restar el producto del carrito:', error)
alert('Error al restar el producto del carrito.')
})
},
obtenerCarrito() {
fetch(URL + 'carrito')
.then(response => response.json())
.then(data => {
this.carrito = data
this.mostrarCarrito = true
})
.catch(error => {
console.error('Error al obtener el carrito:', error)
alert('Error al obtener el carrito.')
})
},
},
})
app.mount('#app')
</script>
</main>
<footer>
<div class="footer-izq">
Derechos reservados © Florencia Morelli 2023
</div>
<div class="footer-der">
<a href="./admin.html">Administrador 🧙</a>
</div>
</footer>
</body>
</html>