This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
216 lines (206 loc) · 5.33 KB
/
index.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
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
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import axios from 'axios';
import Header from './components/Header';
import Products from './components/Products';
import Pagination from './components/Pagination';
import Footer from './components/Footer';
import Filter from './components/Filter';
import QuickView from './components/QuickView';
import Range from './components/Range';
class App extends Component{
constructor(){
super();
this.state = {
products: [],
cart: [],
totalItems: 0,
totalAmount: 0,
term: '',
category: '',
cartBounce: false,
quantity : 1,
quickViewProduct: {},
modalActive: false,
show : "showall",
min: 0,
max: 1200,
};
this.handleSearch = this.handleSearch.bind(this);
this.handleMobileSearch = this.handleMobileSearch.bind(this);
this.handleCategory = this.handleCategory.bind(this);
this.handleAddToCart = this.handleAddToCart.bind(this);
this.sumTotalItems = this.sumTotalItems.bind(this);
this.sumTotalAmount = this.sumTotalAmount.bind(this);
this.checkProduct = this.checkProduct.bind(this);
this.updateQuantity = this.updateQuantity.bind(this);
this.handleRemoveProduct = this.handleRemoveProduct.bind(this);
this.openModal = this.openModal.bind(this);
this.closeModal = this.closeModal.bind(this);
this.handleChangeShow=this.changeShow.bind(this);
}
// Fetch Initial Set of Products from external API
getProducts(){
//For Localhost use the below url
//const url = "products.json";
// For Production use the below url
const url="products.json";
axios.get(url)
.then(response => {
this.setState({
products : response.data
})
})
}
componentWillMount(){
this.getProducts();
}
// Search by Keyword
handleSearch(event){
this.setState({term: event.target.value});
}
// Mobile Search Reset
handleMobileSearch(){
this.setState({term: ""});
}
// Filter by Category
handleCategory(event){
this.setState({category: event.target.value});
console.log(this.state.category);
}
// Add to Cart
handleAddToCart(selectedProducts){
let cartItem = this.state.cart;
let productID = selectedProducts.id;
let productQty = selectedProducts.quantity;
if(this.checkProduct(productID)){
let index = cartItem.findIndex((x => x.id == productID));
cartItem[index].quantity = Number(cartItem[index].quantity) + Number(productQty);
this.setState({
cart: cartItem
})
} else {
cartItem.push(selectedProducts);
}
this.setState({
cart : cartItem,
cartBounce: true,
});
setTimeout(function(){
this.setState({cartBounce:false});
}.bind(this),1000);
this.sumTotalItems(this.state.cart);
this.sumTotalAmount(this.state.cart);
}
handleRemoveProduct(id, e){
let cart = this.state.cart;
let index = cart.findIndex((x => x.id == id));
cart.splice(index, 1);
this.setState({
cart: cart
})
this.sumTotalItems(this.state.cart);
this.sumTotalAmount(this.state.cart);
e.preventDefault();
}
checkProduct(productID){
let cart = this.state.cart;
return cart.some(function(item) {
return item.id === productID;
});
}
sumTotalItems(){
let total = 0;
let cart = this.state.cart;
total = cart.length;
this.setState({
totalItems: total
})
}
sumTotalAmount(){
let total = 0;
let cart = this.state.cart;
for (var i=0; i<cart.length; i++) {
total += cart[i].price * parseInt(cart[i].quantity);
}
this.setState({
totalAmount: total
})
}
//Update Quantity
updateQuantity(qty){
console.log("hola!")
this.setState({
moq: qty
})
}
//Reset Quantity
updateQuantity(qty){
console.log("hola!")
this.setState({
quantity: qty
})
}
// Open Modal
openModal(product){
this.setState({
quickViewProduct: product,
modalActive: true
})
}
// Close Modal
closeModal(){
this.setState({
modalActive: false
})
}
changeShow(show){
this.setState({show: show});
}
changeRange({value}){
this.setState({
max: value.max,
min: value.min,
});
}
render(){
return(
<div className="container">
<Header
cartBounce={this.state.cartBounce}
total={this.state.totalAmount}
totalItems={this.state.totalItems}
cartItems={this.state.cart}
removeProduct={this.handleRemoveProduct}
handleSearch={this.handleSearch}
handleMobileSearch={this.handleMobileSearch}
handleCategory={this.handleCategory}
categoryTerm={this.state.category}
updateQuantity={this.updateQuantity}
productQuantity={this.state.moq}
/>
<div className="filter-palace products-wrapper">
<Filter handleChangeShow={this.changeShow.bind(this)} show={this.state.show}/>
<Range handleChangeRange={this.changeRange.bind(this)} max={this.state.max} min={this.state.min}/>
</div>
<Products
min={this.state.min}
max={this.state.max}
show={this.state.show}
productsList={this.state.products}
searchTerm={this.state.term}
addToCart={this.handleAddToCart}
productQuantity={this.state.quantity}
updateQuantity={this.updateQuantity}
openModal={this.openModal}
/>
<Footer />
<QuickView product={this.state.quickViewProduct} openModal={this.state.modalActive} closeModal={this.closeModal} />
</div>
)
}
}
ReactDOM.render(
<App />,
document.getElementById('root')
);