-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
277 lines (252 loc) · 9.22 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
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
// Contentfull Stuff
const client = contentful.createClient({
// This is the space ID. A space is like a project folder in Contentful terms
space: "qz5jwhlv4zi3",
// This is the access token for this space. Normally you get both ID and the token in the Contentful web app
accessToken: "SO59ehfFhazLF6igUo6AIdwsb3tJOsWfDEFrJ1c8lyQ"
});
// Variables
const cartBtn = document.querySelector('.cart-btn');
const closeCartBtn = document.querySelector('.close-cart');
const clearCartBtn = document.querySelector('.clear-cart');
const cartDOM = document.querySelector('.cart');
const cartOverlay = document.querySelector('.cart-overlay');
const cartItems = document.querySelector('.cart-items');
const cartTotal = document.querySelector('.cart-total');
const cartContent = document.querySelector('.cart-content');
const productsDOM = document.querySelector('.products-center');
// Cart
let cart = []
// buttons
let buttonsDOM = [];
// getting the products
class Products {
async getProducts(){
try {
let contentful = await client.getEntries({
// get Specipic Content Data
content_type: "comfyHouseProduct" // Product ID
});
// let result = await fetch('products.json');
// let data = await result.json();
// arranging json
let products = contentful.items;
products = products.map(item => {
const {title, price} = item.fields;
const {id} = item.sys;
const image = item.fields.image.fields.file.url;
return {title, price, id, image}
})
return products
} catch (error) {
console.log(error);
}
}
}
// display products
class UI {
displayProducts(products){
let result = '';
products.forEach(product => {
result += `
<!-- single product -->
<artictle class="product">
<div class="img-container">
<img
src=${product.image}
alt="product" class="product-img"
>
<button class="bag-btn" data-id=${product.id}>
<i class="fas fa-shopping-cart"></i>
add to cart
</button>
</div>
<h3>${product.title}</h3>
<h4>$${product.price}</h4>
</artictle>
<!-- end of single product -->
`;
});
// Return the data & html -
productsDOM.innerHTML = result;
}
getBagButtons(){
// Selecting Button through class name -
const buttons = [...document.querySelectorAll('.bag-btn')];
buttonsDOM = buttons;
// .dataset(selecting the attribute in HTML i.e data)
// than .id (it is the -id thing [data-id = 1])
buttons.forEach(button => {
let id = button.dataset.id;
let inCart = cart.find(item => item.id === id);
if (inCart){
button.innerText = "In Cart";
button.disabled = true;
}
else {
button.addEventListener('click', (event) =>{
event.target.innerText = "In Cart";
event.target.disabled = true;
// get product from products
// spread operator number of items in cart
let cartItem = {...Storage.getProduct(id), amount:1};
// add product to the cart
cart = [...cart, cartItem];
// save cart in local storage
Storage.saveCart(cart);
// set cart values
this.setCartValues(cart);
// display/add cart item
this.addCartItem(cartItem);
// show the cart
this.showCart();
});
}
});
}
// calc cart item
setCartValues(cart) {
let tempTotal = 0;
let itemsTotal = 0;
cart.map(item =>{
tempTotal += item.price * item.amount;
itemsTotal += item.amount;
})
// Fixed Decimal Values upto 2
cartTotal.innerText = parseFloat(tempTotal.toFixed(2))
cartItems.innerText = itemsTotal;
}
// Add To Cart clicked -> generates this code -
addCartItem(item) {
const div = document.createElement('div');
div.classList.add('cart-item');
div.innerHTML = `
<img src=${item.image} alt="product">
<div>
<h4>${item.title}</h4>
<h5>$${item.price}</h5>
<span class="remove-item" data-id=${item.id}>remove</span>
</div>
<div>
<i class="fas fa-chevron-up" data-id=${item.id}></i>
<p class="item-amount">${item.amount}</p>
<i class="fas fa-chevron-down" data-id=${item.id}></i>
</div>
`
cartContent.appendChild(div);
}
showCart(){
cartOverlay.classList.add('transparentBcg');
cartDOM.classList.add('showCart');
}
// Functionality (Open, Close - Cart & Add Product in cart)
setupAPP() {
cart = Storage.getCart();
this.setCartValues(cart);
this.populateCart(cart);
cartBtn.addEventListener('click', this.showCart);
closeCartBtn.addEventListener('click', this.hideCart);
}
// Adds Product In Cart
populateCart(cart){
cart.forEach(item => this.addCartItem(item));
}
hideCart(){
cartOverlay.classList.remove('transparentBcg');
cartDOM.classList.remove('showCart');
}
cartLogic(){
// Clear cart button
clearCartBtn.addEventListener('click', () =>{
this.clearCart();
});
// Cart Adding & Removing Functionality
cartContent.addEventListener('click', event => {
if (event.target.classList.contains('remove-item')){
let removeItem = event.target;
let id = removeItem.dataset.id; // Selects parent element of parent element i.e item-cart.
cartContent.removeChild(removeItem.parentElement.parentElement)
this.removeItem(id);
}
else if(event.target.classList.contains('fa-chevron-up')){
let addAmount = event.target;
let id =addAmount.dataset.id;
let tempItem = cart.find(item => item.id === id);
tempItem.amount = tempItem.amount + 1;
Storage.saveCart(cart);
this.setCartValues(cart);
addAmount.nextElementSibling.innerText = tempItem.amount;
}
else if (event.target.classList.contains('fa-chevron-down')){
let lowerAmount = event.target;
let id = lowerAmount.dataset.id;
let tempItem = cart.find(item => item.id === id);
tempItem.amount = tempItem.amount - 1;
if (tempItem.amount > 0){
Storage.saveCart(cart);
this.setCartValues(cart);
lowerAmount.previousElementSibling.innerText = tempItem.amount;
}
else {
cartContent.removeChild(lowerAmount.parentElement.parentElement);
this.removeItem(id);
}
}
});
}
clearCart(){
let cartItems = cart.map(item => item.id);
cartItems.forEach(id => this.removeItem(id));
while(cartContent.children.length > 0) {
cartContent.removeChild(cartContent.children[0])
}
this.hideCart();
}
removeItem(id){
cart = cart.filter(item => item.id != id)
this.setCartValues(cart);
Storage.saveCart(cart);
let button = this.getSingleButton(id);
button.disabled = false;
button.innerHTML = `<i class="fas fa-shopping-cart"</i>add to cart`;
}
getSingleButton(id){
return buttonsDOM.find(button => button.dataset.id === id);
}
}
// Local Storage
class Storage {
static saveProducts(products){
localStorage.setItem('products', JSON.stringify(products));
}
static getProduct(id) {
// goes into Browser -> Application -> localStorage -> method(getItem(stuff here it is array)) ->
let products = JSON.parse(localStorage.getItem('products'));
return products.find(product => product.id === id)
}
static saveCart(cart){
localStorage.setItem('cart', JSON.stringify(cart));
}
static getCart(){
return localStorage.getItem('cart')?JSON.parse
(localStorage.getItem('cart')):[]
}
}
// Fuction that passes stuff
document.addEventListener('DOMContentLoaded', ()=> {
const ui = new UI();
const products = new Products();
// Setup App
ui.setupAPP();
// get all products
products
.getProducts()
.then(products => {
ui.displayProducts(products);
Storage.saveProducts(products);
})
.then( ()=>{
ui.getBagButtons();
ui.cartLogic();
});
});