-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
250 lines (238 loc) · 7.47 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
// 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')
let cart = []
// products
class Products {
async getProducts() {
try {
let result = await fetch('products.json')
let data = await result.json()
let products = data.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 }
})
console.log(products)
return products
} catch (error) {
console.log(error)
}
}
}
// ui
class UI {
displayProducts(products) {
let result = ''
products.forEach((product) => {
result += `
<!-- single product -->
<article 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 bag
</button>
</div>
<h3>${product.title}</h3>
<h4>$${product.price}</h4>
</article>
<!-- end of single product -->
`
})
productsDOM.innerHTML = result
}
getBagButtons() {
const buttons = [...document.querySelectorAll('.bag-btn')]
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) => {
// disable button
event.target.innerText = 'In Bag'
event.target.disabled = true
// add to cart
let cartItem = { ...Storage.getProduct(id), amount: 1 }
cart = [...cart, cartItem]
Storage.saveCart(cart)
// add to DOM
this.setCartValues(cart)
this.addCartItem(cartItem)
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 = `<!-- cart item -->
<!-- item image -->
<img src=${item.image} alt="product" />
<!-- item info -->
<div>
<h4>${item.title}</h4>
<h5>$${item.price}</h5>
<span class="remove-item" data-id=${item.id}>remove</span>
</div>
<!-- item functionality -->
<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>
<!-- cart item -->
`
cartContent.appendChild(div)
}
showCart() {
cartOverlay.classList.add('transparentBcg')
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('transparentBcg')
cartDOM.classList.remove('showCart')
}
cartLogic() {
clearCartBtn.addEventListener('click', () => {
this.clearCart()
})
cartContent.addEventListener('click', (event) => {
if (event.target.classList.contains('remove-item')) {
let removeItem = event.target
let id = removeItem.dataset.id
cart = cart.filter((item) => item.id !== id)
console.log(cart)
this.setCartValues(cart)
Storage.saveCart(cart)
cartContent.removeChild(removeItem.parentElement.parentElement)
const buttons = [...document.querySelectorAll('.bag-btn')]
buttons.forEach((button) => {
if (parseInt(button.dataset.id) === id) {
button.disabled = false
button.innerHTML = `<i class="fas fa-shopping-cart"></i>add to bag`
}
})
} 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 {
cart = cart.filter((item) => item.id !== id)
// console.log(cart);
this.setCartValues(cart)
Storage.saveCart(cart)
cartContent.removeChild(lowerAmount.parentElement.parentElement)
const buttons = [...document.querySelectorAll('.bag-btn')]
buttons.forEach((button) => {
if (parseInt(button.dataset.id) === id) {
button.disabled = false
button.innerHTML = `<i class="fas fa-shopping-cart"></i>add to bag`
}
})
}
}
})
}
clearCart() {
// console.log(this);
cart = []
this.setCartValues(cart)
Storage.saveCart(cart)
const buttons = [...document.querySelectorAll('.bag-btn')]
buttons.forEach((button) => {
button.disabled = false
button.innerHTML = `<i class="fas fa-shopping-cart"></i>add to bag`
})
while (cartContent.children.length > 0) {
cartContent.removeChild(cartContent.children[0])
}
this.hideCart()
}
}
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()
// get all products
products
.getProducts()
.then((products) => {
ui.displayProducts(products)
Storage.saveProducts(products)
})
.then(() => {
ui.getBagButtons()
ui.cartLogic()
})
})