-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp.js
69 lines (63 loc) · 1.96 KB
/
mp.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
const accessToken = "TEST-5421485677486043-112315-b8f3093d4dc6f5017f9086a28165287f-22577389"
const botonComprar = document.querySelector('#botonComprar')
const finalizarCompra = async () => {
const carritoToMP = carrito.map((prod) => {
return {
title: prod.nombre,
description: `marca ${prod.marca}`,
picture_url: prod.img,
category_id: prod.id,
quantity: prod.cantidad,
currency_id: "ARS",
unit_price: prod.precio
}
})
const resp = await fetch('https://api.mercadopago.com/checkout/preferences', {
method: 'POST',
headers: {
Authorization: `Bearer ${accessToken}`
},
body: JSON.stringify({
items: carritoToMP,
back_urls: {
success: window.location.href,
failure: window.location.href
}
})
})
const data = await resp.json()
window.location.assign(data.init_point)
}
botonComprar.addEventListener('click', () => {
if (precioTotal > 100000) {
Toastify({
text: `El monto a pagar no puede superar los $ 100.000 ARS`,
duration: 3500,
position: "left",
stopOnFocus: false,
style: {
padding: "1em",
background: "#212121",
border: "3px solid #f44336",
'border-radius': ".4em",
color: "#fff"
},
}).showToast();
} else if (precioTotal === 0) {
Toastify({
text: `¡El carrito está vacío!`,
duration: 3500,
position: "left",
stopOnFocus: false,
style: {
padding: "1em",
background: "#212121",
border: "3px solid #f44336",
'border-radius': ".4em",
color: "#fff"
},
}).showToast();
} else {
finalizarCompra()
}
})