-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.js
132 lines (125 loc) · 3.52 KB
/
app.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
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
"use strict";
class App extends React.PureComponent {
render() {
//const sortedProducts = this.props.products.sort((a, b) => a.price - b.price)
return (
<div>
<header>
Venta de Cositas de
<br />
Milena & Julian
</header>
<h3 className="subtitle">
Se aceptan pagos por Nequi, Colpatria, Efectivo o Paypal. Solo Bogota.
<h4>(Algunas fechas de entrega podrian variar por algunos días)</h4>
<p>
Al hacer clic/tocar sobre las imagenes encontrás mas información de
producto
</p>
</h3>
<ProductList products={this.props.products} />
</div>
);
}
}
const ProductList = (props) => {
return (
<div className="container">
{props.products.map((p, i) => (
<ProductCard key={i} product={p} />
))}
</div>
);
};
const ProductCard = (props) => {
const p = props.product;
const formatPrice = (p) =>
p.toLocaleString("es-CO", {
style: "currency",
currency: "COP",
maximumFractionDigits: "0",
});
const discount = Math.round(100 - (p.price / p.originalPrice) * 100);
const goWhatsapp = () =>
window.open(
`https://api.whatsapp.com/send?phone=+573006815916&text=Hola%2C%20estoy interesado en%20${p.name}`,
"_blank"
);
return (
<div className="product">
<a href={p.url} target="_blank">
{p.state == "sold" ? (
<span className="product-span">
<div className="sold">VENDIDO</div>
<img
className="product-img-filter-sold"
src={p.imageUrl}
loading="lazy"
/>
</span>
) : (
""
)}
{p.state == "reserved" ? (
<span className="product-span">
<div className="reserved">RESERVADO</div>
<img
className="product-img-filter-reserved"
src={p.imageUrl}
loading="lazy"
/>
</span>
) : (
""
)}
{p.state == "notavailable" ? (
<span className="product-span">
<div className="notavailable">NO DISPONIBLE</div>
<img
className="product-img-filter-notavailable"
src={p.imageUrl}
loading="lazy"
/>
</span>
) : (
""
)}
{p.state == "available" ? (
<span className="product-span">
<div className="available">DISPONIBLE</div>
<img className="product-img" src={p.imageUrl} loading="lazy" />
</span>
) : (
""
)}
</a>
<div className="product-details">
<h3>{p.name}</h3>
{discount > 0 && <span className="discount">-{discount}%</span>}
<ul>
{p.details.map((detail) => (
<li>{detail}</li>
))}
</ul>
</div>
<div onClick={goWhatsapp} className="box-price">
<span className="price">{formatPrice(p.price)}</span>
<div className="box">
<img className="icon" src="./whatsapp-icon.png" />
<button className="payment">Comprar</button>
</div>
</div>
</div>
);
};
// Load the data.json file and parse it
fetch("./data.json")
.then((response) => response.json())
.then((productsData) => {
// Assuming the JSON contains an array of products
const products = productsData;
ReactDOM.render(
<App products={products} />,
document.getElementById("root")
);
});