-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcart.js
233 lines (153 loc) · 6.39 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
function wishpage(){
window.location.href="wish.html"
}
function cartpage(){
console.log("in cart")
window.location.href="cart.html"
}
function gotohome(){
window.location.href="home.html"
}
function gotoshop(){
window.location.href="shop.html"
}
function gotoshop2(){
select=document.querySelector("select").value
if(select=="Shop"){
window.location.href="shop.html"
}
else if(select=="Sell"){
window.location.href="sell.html"
}
}
// coupon
// invalid coupon ---------------------------------------------------------------------------------->
function valid(){
event.preventDefault()
sweetAlert("Invalid Coupon code", "Use another Coupon Code"+"\n"+" or Continue shoping", "error");
SweetAlert.fire(
'The Internet?',
'That thing is still around?',
'question'
)
window.location.reload() ;
}
// table
// Data fetching---------------------------------------------------------------------------------->
var cartData = JSON.parse(localStorage.getItem("cart"))||[];
console.log(cartData);
// wish
var NewArriv = JSON.parse(localStorage.getItem("wish")) || []; //wish
console.log(NewArriv) ;
// Calculation---------------------------------------------------------------------------------->
var total = cartData.reduce(function (sum, elem, index, arr) {
return sum + Number(elem.price2);
}, 0);
var length = cartData.length;
console.log(length);
var length2 =NewArriv.length
console.log(total);
// Display Calculation---------------------------------------------------------------------------------->
var cartcoutup= document.querySelector(".cartcoutup").innerText = ` ${length}`
var cartcoutup= document.querySelector(".wishcoup").innerText = ` ${length2}`
var totaldis = document.querySelector(".priceshow").innerText = ` ${total}`;
var totaldis2 = document.querySelector(".priceshow2").innerText = ` ${total}`;
// var coun = document.querySelector(".displayMe").innerText= `${counqt}` ;
// var legthdis =document.querySelector("h5").innerText = ` ${length};
// js function------------------------------------------------------------------------------------------->
count =1 ;
counqt=1;
console.log(counqt)
cartData.map(function (elem, index) {
console.log(elem.imageUrl)
var box = document.createElement("tr");
var no = document.createElement("td");
no.innerText= count++ ;
var items1 = document.createElement("div")
items1.setAttribute("id","conitem")
var img = document.createElement("img");
img.setAttribute("id","Fimg")
img.src = elem.imageUrl;
img.style.marginRight="10%"
var name = document.createElement("p");
name.setAttribute("id","itemname")
name.textContent = elem.name;
var qtyn = document.createElement("td")
var subdiv= document.createElement("div")
subdiv.setAttribute("id","qtydiv")
// minus- start here------->
var btnmins = document.createElement("button")
btnmins.setAttribute("id","minscount")
btnmins.innerText= "−"
var displaycount = document.createElement("div")
displaycount.setAttribute("class","displayMe")
btnmins.addEventListener("click",function(){
displaycount.innerText= 1+counqt--;
})
var btnplus =document.createElement("button")
btnplus.setAttribute("id","pluscount")
btnplus.innerText= "+"
btnplus.addEventListener("click",function(){
displaycount.innerText= 1+counqt++;
})
// minus endshere-------------------------->
var btnwish = document.createElement("button")
btnwish.setAttribute("class","cartwish")
btnwish.innerText="♡ add to wish list"
btnwish.addEventListener("click",function (){
addToWishlist(elem)
});
var bottomline = document.createElement("div")
bottomline.setAttribute("class","pink6")
var rbtn = document.createElement("button");
rbtn.innerText = "Remove";
rbtn.setAttribute("id","Remove-1")
rbtn.addEventListener("click", function () {
removeItem(elem, index);
});
var price = document.createElement("td");
price.innerText = elem.price;
price.setAttribute("id","net") ;
var grosstotal = document.createElement("td");
grosstotal.setAttribute("id","gross") ;
grosstotal.innerText= "₹"+ elem.price2;
console.log(grosstotal,displaycount.innerText)
subdiv.append(btnmins,displaycount,btnplus)
qtyn.append(subdiv,btnwish,bottomline,rbtn)
items1.append(img,name)
box.append(no,items1,qtyn, price, grosstotal);
document.querySelector("#body").append(box);
});
// Remove function & data added for next page-------------------------------------------------------------->
function removeItem(elem, index) {
count-- ;
console.log(elem, index);
cartData.splice(index, 1);
console.log(cartData);
localStorage.setItem("cart", JSON.stringify(cartData));
window.location.reload();
}
// wishlis add--------------------------------------------------------------------------------------------->
function addToWishlist(ele){
alert("Product added Sucessfully Into The Cart 💛")
console.log(ele)
NewArriv.push(ele)
localStorage.setItem("wish",JSON.stringify(NewArriv))
window.location.reload();
}
// function placeorder(){
// event.preventDefault()
// swal("Congratulations", "Order placed Sucessfully"+"\n"+" happyshoping", "success");
// swal({
// title: "Congratulations",
// text: "Order placed Sucessfully"+"\n"+"\n"+"\n"+" happyshoping",
// icon: "success",
// });
// }
username=document.querySelector("#username")
userarr=JSON.parse(localStorage.getItem("user"))
username.innerText="Hi!"+" "+userarr[0].name
function cartpage(){
console.log("in cart")
window.location.href="cart.html"
}