-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.js
360 lines (290 loc) · 11.7 KB
/
cart.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
var cart_number = 0;
var total = [];
var cartShop = [];
// console.log(cartShop);
(function() {
const cartBtn = document.querySelectorAll(".cartButtonChange");
//const itemCart = {};
cartBtn.forEach(function(btn) {
btn.addEventListener("click", function(event) {
//console.log(event.target);
if(event.target.parentElement.classList.contains("cartButtonChange"))
{
const itemCart = {};
let picture = event.target.parentElement.parentElement.children[0].src;
console.log(picture);
itemCart.picture = picture;
let prodName = event.target.parentElement.previousElementSibling.children[1].textContent;
console.log(prodName);
itemCart.prodName = prodName;
let price = event.target.parentElement.previousElementSibling.children[3].textContent;
console.log(price);
itemCart.price = price;
addItem.innerHTML +=
`
<tr>
<td><img src="${itemCart.picture}" alt=""></td>
<td>${itemCart.prodName}</td>
<td id="costOfGoods">${itemCart.price}</td>
</tr>`
;
//alert("Item added");
cart_number++;
showTotal();
showCartNumber();
// var remove_item = document.getElementById("remove_item");
// console.log(remove_item);
// (function() {
// remove_item.addEventListener("click", function() {
// addItem.innerHTML -= addItem;
// })
// })();
cartShop.push(itemCart.price);
console.log("Array ",cartShop);
var stringCost = 0;
for(let i=0; i < cartShop.length; i++)
{
//var stringCost = ;
stringCost += parseFloat(cartShop[i].slice(2));
}
document.getElementById("cartAmount").textContent = "Rs "+stringCost;
}
})
})
function showCartNumber()
{
document.getElementById("cart_number").textContent = cart_number;
}
function showTotal()
{
// console.log("Original total ",total);
// var items = document.querySelectorAll(".cart-item-price");
// console.log("Items" ,items);
// items.forEach(function(item) {
// console.log("Item is" ,item);
// console.log(item.textContent);
// total.push(parseFloat(item.textContent));
// });
// console.log("First total ",total);
// var totalMoney = total.reduce(function(total, item) {
// total += item;
// return total;
// }, 0);
// console.log("TotalMoney ",totalMoney);
// var finalMoney = totalMoney.toFixed(2);
// document.getElementById("cartAmount").textContent = "Rs "+finalMoney;
//console.log("PaymentText ",payment_text);
// total.push(parseFloat(itemCart.price));
//console.log(total);
}
})();
/////////////////////////// CLEARING CART ///////////////////////
const clearCart = document.getElementById("clearCart");
console.log(clearCart);
(function() {
clearCart.addEventListener("click",function() {
addItem.innerHTML = ``;
document.getElementById("cartAmount").textContent = " ";
document.getElementById("cart_number").textContent = 0;
cart_number = 0;
cartShop = [];
console.log(total);
})
})();
// ################## PAYMENT #############/
// const payment = document.getElementById("payment");
// var changeBody1 = document.getElementById("product1");
// var changeBody2 = document.getElementById("product2");
// var changeBody3 = document.getElementById("product3");
// var changeBody4 = document.getElementById("product4");
// // var payWall = document.getElementsByTagName("section");
// //console.log(changeBody1);
// (function() {
// payment.addEventListener("click", function() {
// })
// })();
// (function() {
// payment.addEventListener("click", function() {
// if(cart_number == 0)
// {
// alert("Empty Cart");
// }
// else
// {
// changeBody1.innerHTML = `
// <!DOCTYPE html>
// <html lang="en">
// <head>
// <meta charset="UTF-8">
// <meta http-equiv="X-UA-Compatible" content="IE=edge">
// <meta name="viewport" content="width=device-width, initial-scale=1.0">
// <title>LinkStore</title>
// <link rel="stylesheet" href="payment.css">
// <style>
// container {
// background: #E3E6F3;
// }
// </style>
// </head>
// <body>
// <div class="container">
// <div class="left">
// <h3>BILLING ADDRESS</h3>
// <form action="">
// Full Name
// <input type="text" name="" placeholder="Enter Name">
// Email
// <input type="text" name="" placeholder="Enter E-mail">
// Address
// <input type="text" name="" placeholder="Enter address">
// City
// <input type="text" name="" placeholder="Enter City">
// <div id="zip">
// <label>
// District
// <select name="" id="">
// <option value="null">Choose District</option>
// <option value="Rajasthan">Mumbai Suburban</option>
// <option value="Haryana">Mumbai City</option>
// </select>
// </label>
// <label for="">Zip Code
// <input type="number" name="" id="" placeholder="Zip Code">
// </label>
// </div>
// </form>
// </div>
// <div class="right">
// <h3>PAYMENT</h3>
// <form action="razor.html">
// <div id="amountToPay">
// </div>
// <br>
// <br>
// Credit Card Number
// <input type="text" name="" placeholder="Enter Credit Card Number">
// <!-- Expiry Month
// <input type="text" name="" placeholder="Enter City">
// Expiry Year
// <input type="text" name="" placeholder="Enter City"> -->
// <div id="zip">
// <label>
// Expiry Month
// <br>
// <select name="" id="">
// <option value="null">Choose Month</option>
// <option value="Rajasthan">2024</option>
// <option value="Haryana">2025</option>
// <option value="Haryana">2026</option>
// </select>
// </label>
// <label for="">
// Expiry Year
// <br>
// <select name="" id="">
// <option value="null">Choose Year</option>
// <option value="Rajasthan">2024</option>
// <option value="Haryana">2025</option>
// <option value="Haryana">2026</option>
// </select>
// </label>
// <br>
// </div>
// <div id="Amount">
// <label for="">Enter CVV
// <input type="number" name="" id="" placeholder="3 digit number">
// </label>
// <label for="">Enter Amount
// <input type="number" name="" id="" placeholder="Enter Amount">
// </label>
// </div>
// </form>
// <a href="razor.html"><button>Proceed</button></a>
// </div>
// </div>
// </body>
// </html>
// `;
// changeBody2.innerHTML = ``;
// changeBody3.innerHTML = ``;
// changeBody4.innerHTML = ``;
// // var amountToPay = document.getElementById("amountToPay");
// // amountToPay.innerText = finalMoney;
// }
// })
// })();
const payment = document.getElementById("payment");
var changeBody1 = document.getElementById("product1");
var changeBody2 = document.getElementById("product2");
var changeBody3 = document.getElementById("product3");
var changeBody4 = document.getElementById("product4");
// var payWall = document.getElementsByTagName("section");
//console.log(changeBody1);
(function() {
payment.addEventListener("click", function() {
if(cart_number == 0)
{
alert("Empty Cart");
}
else
{
changeBody1.innerHTML = `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinkStore</title>
<link rel="stylesheet" href="payment.css">
<style>
.container {
background: #E3E6F3;
width:450px;
}
</style>
</head>
<body>
<div class="container">
<div class="left">
<h3>BILLING ADDRESS</h3>
<form action="razor.html">
Full Name
<input type="text" name="" placeholder="Enter Name" required>
Email
<br>
<input style="width:400px; height:35px; margin-bottom:5px;" type="email" name="" placeholder="Enter E-mail" required>
<br>
Address
<input type="text" name="" placeholder="Enter address" required>
City
<input type="text" name="" placeholder="Enter City" required>
<div id="zip">
<label>
District
<select name="" id="">
<option value="null">Choose District</option>
<option value="Rajasthan">Mumbai Suburban</option>
<option value="Haryana">Mumbai City</option>
</select>
</label>
<label for="">Zip Code
<input type="number" name="" id="" placeholder="Zip Code" required>
</label>
</div>
<a href="razor.html"><input style="text-align: center; margin-top: 5px; width:250px;" type="submit" value="Proceed to Payment"></a>
</form>
</div>
</div>
</div>
</body>
</html>
`;
changeBody2.innerHTML = ``;
changeBody3.innerHTML = ``;
changeBody4.innerHTML = ``;
// var amountToPay = document.getElementById("amountToPay");
// amountToPay.innerText = finalMoney;
}
})
})();