-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
241 lines (227 loc) · 6.89 KB
/
script.js
File metadata and controls
241 lines (227 loc) · 6.89 KB
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
//contentful Request
const client = contentful.createClient({
// This is the space ID. A space is like a project folder in Contentful terms
space: '86hc0dtv3g49',
// This is the access token for this space. Normally you get both ID and the token in the Contentful web app
accessToken: 'G9eaaCuz3xk1fz5wfHi6ZLvPn77MZ3xo1TDl5muA2tE'
});
//Variable Declaration
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 productDom = document.querySelector('.products-center');
//cart
let cart = [];
//buttons
let buttonDOM = [];
//getting products
class Products {
async getProducts() {
try {
let contentful = await client.getEntries({
content_type: 'katareOnlineStore'
});
// let result = await fetch('products.json');
// let data = await result.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, image, id };
});
return products;
} catch (error) {
console.log(error);
}
}
}
//getting products
class UI {
displayProducts(products) {
console.log(products);
let result = '';
products.forEach((product) => {
result += `
<article class="product">
<div class="img-container">
<img src=${product.image} 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>Shs ${product.price}</h4>
</article>
`;
});
productDom.innerHTML = result;
}
getBagButtons() {
const buttons = [ ...document.querySelectorAll('.bag-btn') ];
buttonDOM = buttons;
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;
}
button.addEventListener('click', (e) => {
e.target.innerText = 'In cart';
e.target.disabled = true;
// get product
let cartItem = { ...Storage.getProduct(id), amount: 1 };
// add product to cart
cart = [ ...cart, cartItem ];
// save cart in local storage
Storage.saveCart(cart);
// set cart values
this.setCartValues(cart);
// display cart item
this.addCartItem(cartItem);
// show cart
this.showCart();
});
});
}
setCartValues(cart) {
let tempTotal = 0;
let itemsTotal = 0;
cart.map((item) => {
tempTotal += item.price * item.amount;
itemsTotal += item.amount;
});
cartTotal.innerText = parseFloat(tempTotal.toFixed(2));
cartItems.innerText = itemsTotal;
}
addCartItem(item) {
const div = document.createElement('div');
div.classList.add('cart-item');
div.innerHTML = `
<img src=${item.image} alt="matooke">
<div>
<h4>${item.title}</h4>
<h5>Shs${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);
console.log(cartContent);
}
showCart() {
cartOverlay.classList.add('transparentBg');
cartDom.classList.add('showCart');
}
setupApp() {
cart = Storage.getCart();
this.setCartValues(cart);
this.populateCart(cart);
cartBtn.addEventListener('click', this.showCart);
closeCartBtn.addEventListener('click', this.hideCart);
}
populateCart(cart) {
cart.forEach((item) => this.addCartItem(item));
}
hideCart() {
cartOverlay.classList.remove('transparentBg');
cartDom.classList.remove('showCart');
}
cartLogic() {
//clear cart btn
clearCartBtn.addEventListener('click', () => {
this.clearCart();
});
// cart funtionality
cartContent.addEventListener('click', (e) => {
if (e.target.classList.contains('remove-item')) {
let removeItem = e.target;
let id = removeItem.dataset.id;
cartContent.removeChild(removeItem.parentElement.parentElement);
this.removeItem(id);
} else if (e.target.classList.contains('fa-chevron-up')) {
let addAmount = e.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 (e.target.classList.contains('fa-chevron-down')) {
let lowerAmount = e.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.removeChild(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 buttonDOM.find((button) => button.dataset.id === id);
}
}
//local storage
class Storage {
static saveProducts(products) {
localStorage.setItem('products', JSON.stringify(products));
}
static getProduct(id) {
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')) : [];
}
}
document.addEventListener('DOMContentLoaded', () => {
const ui = new UI();
const products = new Products();
ui.setupApp();
products
.getProducts()
.then((products) => {
ui.displayProducts(products);
Storage.saveProducts(products);
})
.then(() => {
ui.getBagButtons();
ui.cartLogic();
});
});