forked from aman1722/Industry-Buying-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.js
272 lines (197 loc) · 6.04 KB
/
products.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
let redirect = document.getElementById("logo");
redirect.addEventListener("click",()=>{
// console.loh("h")
window.location.href="dashboard.html"
})
let FetchedData =[];
// function fetchAndRenderData(){
// fetch("https://iris-conscious-potential.glitch.me/products")
// .then((res)=>{
// return res.json();
// })
// .then((data)=>{
// FetchedData=data;
// console.log(data);
// displayAsCards(data)
// })
// }
async function fetchData(page=1){
try {
const user_list = await fetch(`https://iris-conscious-potential.glitch.me/products?_limit=9&_page=${page}`);
const totalItem = user_list.headers.get('X-Total-Count');
const totalPages = Math.ceil(totalItem/9);
const data = await user_list.json();
console.log(totalPages)
displayAsCards(data)
paginationBtn(totalPages);
} catch (error) {
console.log(error);
}
}
fetchData();
function displayAsCards(data) {
let container = document.getElementById("display");
container.innerHTML="";
data.map(element => {
let card = document.createElement("div");
card.classList.add("card-element")
let cardElement = `
<div>
<div class="card-img-div">
<img class="card-img" src="${element.image}" >
</div>
<div class="card-des-div">
<h3><span id="head">Name:-</span> ${element.name}</h3>
<p><span id="head1">Description:-</span> ${element.Description}</p>
<p><span id="head1">Category:-</span> ${element.category}</p>
<p><span id="head1">Price:-</span> Rs. ${element.price}</p>
<p><span id="head1">ID:-</span> ${element.id}</p>
</div>
</div>
`
card.innerHTML=cardElement;
container.append(card);
})
};
let addProduct = document.getElementById("addProduct");
addProduct.addEventListener("submit",(e)=>{
e.preventDefault();
AddProduct();
addProduct.reset();
});
let deleteProduct = document.getElementById("deleteProduct");
deleteProduct.addEventListener("submit",(e)=>{
e.preventDefault();
DeleteProduct();
deleteProduct.reset();
})
let updatePrice = document.getElementById("updatePrice");
updatePrice.addEventListener("submit",(e)=>{
e.preventDefault();
UpdatePrice();
updatePrice.reset();
});
async function UpdatePrice(){
try {
let productId = document.getElementById("productID").value;
let updatedPrice = document.getElementById("updatedPrice").value;
let req= await fetch(`https://iris-conscious-potential.glitch.me/products/${productId}`,{
method:"PATCH",
headers:{
"Content-Type":"application/json"
},
body:JSON.stringify({
"price": updatedPrice
})
})
fetchData();
} catch (error) {
console.log(error);
}
}
let updateFullDetails = document.getElementById("updateProduct");
updateFullDetails.addEventListener("submit",(e)=>{
e.preventDefault();
UpdateFullDetalis();
updateFullDetails.reset();
})
async function UpdateFullDetalis(){
try {
let proid = document.getElementById("ProID").value;
let Newname = document.getElementById("newname").value;
let Newtitle = document.getElementById("newtitle").value;
let Newcategory = document.getElementById("newcategory").value;
let Newdesc = document.getElementById("newdesc").value;
let NEWIMG = document.getElementById("imgUrl").value;
let Newprice = document.getElementById("Newprice").value;
let req = await fetch(`https://iris-conscious-potential.glitch.me/products/${proid}`,{
method:"PUT",
headers:{
"Content-Type":"application/json"
},
body:JSON.stringify({
"name": Newname,
"title": Newtitle,
"category": Newcategory,
"Description": Newdesc,
"price": Newprice,
"rating": "4",
"inStock": true,
"image": NEWIMG
})
})
fetchData();
} catch (error) {
console.log(error);
}
}
async function AddProduct(){
try {
let name = document.getElementById("name").value;
let title = document.getElementById("title").value;
let catagory = document.getElementById("category").value;
let Desc = document.getElementById("desc").value;
let price = document.getElementById("price").value;
let ImgUrl = document.getElementById("imgUrl").value;
let req = await fetch("https://iris-conscious-potential.glitch.me/products",{
method:"POST",
headers:{
"Content-Type":"application/json"
},
body:JSON.stringify({
"name": name,
"title": title,
"category": catagory,
"Description": Desc,
"price": price,
"rating": "4",
"inStock": true,
"image": ImgUrl
})
})
fetchData();
} catch (error) {
console.log(error);
}
}
async function DeleteProduct(){
let productId = document.getElementById("ID").value;
try {
let req = await fetch(`https://iris-conscious-potential.glitch.me/products/${productId}`,{
method:"DELETE"
})
fetchData();
} catch (error) {
console.log(error);
}
}
let buttonSection = document.getElementById("buttonSection");
function paginationBtn(page){
let btn_arr=[];
for(let i=1;i<=page;i++){
btn_arr.push(`
<button class="pagination-button" data-page-number=${i}>${i}</button>
`)
}
buttonSection.innerHTML=btn_arr.join("");
const all_btn = document.querySelectorAll("#buttonSection button");
console.log(all_btn);
for(let btn of all_btn){
btn.addEventListener("click",(e)=>{
console.log(e.target.dataset.pageNumber);
fetchData(e.target.dataset.pageNumber);
})
}
}
let ProductDiv = document.getElementById("Products");
let usersDiv = document.getElementById("users");
let ordersDiv = document.getElementById("orders");
ProductDiv.addEventListener("click",()=>{
window.location.href="./products.html";
});
usersDiv.addEventListener("click",()=>{
window.location.href="./users.html";
});
ordersDiv.addEventListener("click",()=>{
window.location.href="./orders.html";
});