-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse.js
330 lines (283 loc) · 14.1 KB
/
browse.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
var browseMatches = [];
function browseItems() {
// Get inventory and cart
var itemArray = JSON.parse(sessionStorage.getItem("inventory"));
var cartArray = JSON.parse(localStorage.getItem("cart"));
// Get browse details
var browseTerm = window.location.search;
var browseTypeIndex = -1;
var itemName = unescape(browseTerm.substring(browseTerm.indexOf("=") + 1));
var browseType = browseTerm.substring(1, browseTerm.indexOf("="));
var currentContents = "";
var numberOfItems = 0;
// Get type of browse
if (browseType == "category") {
browseTypeIndex = 2;
} else if (browseType == "manufacturer") {
browseTypeIndex = 3;
} else {
document.getElementById("error").innerHTML = "Oops! Something went wrong! You're browsing by a type that doesn't exist. You can only browse by category and manufacturer!";
throw new Error("Oopsies. An error was thrown.");
}
// Check if term is blank
if (itemName == "") {
document.getElementById("error").innerHTML = "Oops! Something went wrong! You haven't specified a browse term!";
throw new Error("Oopsies. An error was thrown.");
}
// Store item names
var browsedItemsArray = [];
for (var i = 0; i < itemArray.length; i++) {
if (itemArray[i][browseTypeIndex] == itemName) {
browsedItemsArray.push(itemArray[i][1]);
browseMatches.push(itemArray[i]);
}
}
// Sort array alphabetically
browsedItemsArray.sort();
var itemsWithMaxNumber = [];
for (var i = 0; i < browsedItemsArray.length; i++) {
for (var x = 0; x < itemArray.length; x++) {
if (itemArray[x][1] == browsedItemsArray[i]) {
// Add new row
if (numberOfItems % 3 == 0) {
currentContents += "<tr>";
}
// Set HTML for item
var itemDisplayHTML0 = "<td>";
var itemDisplayHTML1 = "<div class=\"itemPictureDiv\" id=\"itemPicture_" + itemArray[x][0] + "\">";
var itemDisplayHTML2 = "<img src=\"../img/products/" + itemArray[x][0] + ".png\" alt=\"Item Picture\" class=\"itemPicture\" onclick=\"location.href='../product/index.html?item=" + itemArray[x][0] + "'\">";
var itemDisplayHTML3 = "</div>";
var itemDisplayHTML4 = "<div class=\"itemInfo\">";
var itemDisplayHTML5 = "<div class=\"itemName\" id=\"itemName_" + itemArray[x][0] + "\" onclick=\"location.href='../product/index.html?item=" + itemArray[x][0] + "'\">";
var itemDisplayHTML6 = itemArray[x][1];
var itemDisplayHTML7 = "</div>";
var itemDisplayHTML8 = "<div class=\"itemDescription\" id=\"itemDescription_" + itemArray[x][0] + "\">";
var itemDisplayHTML9 = itemArray[x][4];
var itemDisplayHTML10 = "</div>";
var itemDisplayHTML11 = "</div>";
var itemDisplayHTML12 = "<div class=\"itemPrice\" id=\"itemPrice_" + itemArray[x][0] + "\">";
var itemDisplayHTML13 = "$" + itemArray[x][5];
var itemDisplayHTML14 = "</div>";
var itemDisplayHTML15 = "<div class=\"itemCartManage\" id=\"itemCartManage_" + itemArray[x][0] + "\">";
// Use either add to cart button or quantity changer depending if item is in cart
var alreadyInCart = false;
var alreadyInCartQuantity = -1;
if (cartArray == null || cartArray.length == 0) {
alreadyInCart = false;
} else {
for (var y = 0; y < cartArray.length; y++) {
if (itemArray[x][0] == cartArray[y][0]) {
alreadyInCart = true;
alreadyInCartQuantity = cartArray[y][2];
break;
}
}
}
if (alreadyInCart == true) {
var itemDisplayHTML16 = "<div class=\"quantityChanger\" id=\"quantityChanger_" + itemArray[x][0] + "\">";
var itemDisplayHTML17 = "<button class=\"quantityMinusButton\" id=\"decQuan_" + itemArray[x][0] + "\" onclick=\"quantityMinus(this)\">-</button>";
var itemDisplayHTML18 = "<input type=\"text\" autocomplete=\"off\" id=\"quan_" + itemArray[x][0] + "\" class=\"quantityField\" value=\"" + alreadyInCartQuantity + "\" onfocus=\"storeCurrentQuantity(this);\" onblur=\"checkQuantityValid(this);\">";
var itemDisplayHTML19 = "<button class=\"quantityPlusButton\" id=\"incQuan_" + itemArray[x][0] + "\" onclick=\"quantityPlus(this)\">+</button>";
var itemDisplayHTML20 = "<div class=\"max9999Alert\" id=\"max9999Alert_" + itemArray[x][0] + "\">The maximum amount of this item you can purchase is 9999.</div>";
var itemDisplayHTML21 = "</div>";
var itemDisplayHTML22 = "</div>";
var itemDisplayHTML23 = "</td>";
// Add item to currentContents
currentContents += itemDisplayHTML0 + itemDisplayHTML1 + itemDisplayHTML2 + itemDisplayHTML3 + itemDisplayHTML4 + itemDisplayHTML5 + itemDisplayHTML6 + itemDisplayHTML7 + itemDisplayHTML8 + itemDisplayHTML9 + itemDisplayHTML10 + itemDisplayHTML11 + itemDisplayHTML12 + itemDisplayHTML13 + itemDisplayHTML14 + itemDisplayHTML15 + itemDisplayHTML16 + itemDisplayHTML17 + itemDisplayHTML18 + itemDisplayHTML19 + itemDisplayHTML20 + itemDisplayHTML21 + itemDisplayHTML22 + itemDisplayHTML23;
// Add to array if quantity is 9999
if (parseInt(alreadyInCartQuantity) == 9999) {
itemsWithMaxNumber.push(itemArray[x][0]);
}
} else {
var itemDisplayHTML16 = "<button onclick=\"addToCart(this)\" class=\"addToCartButton\" id=\"addToCartButton_" + itemArray[x][0] + "\">Add to Cart</button>";
var itemDisplayHTML17 = "</div>";
var itemDisplayHTML18 = "</td>";
// Add item to currentContents
currentContents += itemDisplayHTML0 + itemDisplayHTML1 + itemDisplayHTML2 + itemDisplayHTML3 + itemDisplayHTML4 + itemDisplayHTML5 + itemDisplayHTML6 + itemDisplayHTML7 + itemDisplayHTML8 + itemDisplayHTML9 + itemDisplayHTML10 + itemDisplayHTML11 + itemDisplayHTML12 + itemDisplayHTML13 + itemDisplayHTML14 + itemDisplayHTML15 + itemDisplayHTML16 + itemDisplayHTML17;
}
// Increase numberOfItems
numberOfItems++;
// End row
if (numberOfItems % 3 == 0) {
currentContents += "</tr>";
}
}
}
}
// End row in case row was not ended
if (numberOfItems % 3 != 0) {
currentContents += "</tr>";
}
// Display error in case there's no items
if (numberOfItems == 0) {
document.getElementById("error").innerHTML = "Oops! Something went wrong! You're browsing for something that doesn't have any items. This specific " + browseType + " doesn't have any items!";
throw new Error("Oopsies. An error was thrown.");
}
// Display number of items, browse type, and contents
if (browseType == "category") {
document.getElementById("browsingBy").innerHTML = numberOfItems + " items found in category \"" + itemName + "\"";
} else {
document.getElementById("browsingBy").innerHTML = numberOfItems + " items found by manufacturer \"" + itemName + "\"";
}
document.getElementById("itemsTable").innerHTML = currentContents;
for (var i = 0; i < itemsWithMaxNumber.length; i++) {
// Display max number alert if quantity is 9999
document.getElementById("max9999Alert_" + itemsWithMaxNumber[i]).style.display = "inherit";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).disabled = true;
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.backgroundColor = "#dee2e8";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.color = "#a2a7ad";
document.getElementById("itemPrice_" + itemsWithMaxNumber[i]).style.bottom = "73px";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.cursor = "default";
}
}
function itemSortBy() {
var sortSelect = document.getElementById("sortBy");
var selectedText = sortSelect.options[sortSelect.selectedIndex].text;
if (selectedText == "Relevance") {
// If sort by relevance, just reload page
window.location.reload(true);
} else if (selectedText == "Alphabetical A-Z") {
// Sort by alphabetical A-Z
browseMatches.sort(function(a, b) {
var productA = a[1].toUpperCase();
var productB = b[1].toUpperCase();
if (productA < productB) {
return -1;
}
if (productA > productB) {
return 1;
}
return 0;
});
} else if (selectedText == "Alphabetical Z-A") {
// Sort by alphabetical A-Z then reverse array
browseMatches.sort(function(a, b) {
var productA = a[1].toUpperCase();
var productB = b[1].toUpperCase();
if (productA < productB) {
return -1;
}
if (productA > productB) {
return 1;
}
return 0;
});
browseMatches.reverse();
} else if (selectedText == "Price Lowest to Highest") {
// Sort by lowest to highest price
browseMatches.sort(function(a, b) {
var priceA = a[5];
var priceB = b[5];
if (priceA - priceB < 0) {
return -1;
}
if (priceA - priceB > 0) {
return 1;
}
return 0;
});
} else if (selectedText == "Price Highest to Lowest") {
// Sort by highest to lowest price
browseMatches.sort(function(a, b) {
var priceA = a[5];
var priceB = b[5];
if (priceA - priceB < 0) {
return -1;
}
if (priceA - priceB > 0) {
return 1;
}
return 0;
});
browseMatches.reverse();
}
// Get browseMatches results and set HTML
var numberOfItems = 0;
var currentContents = "";
var itemsWithMaxNumber = [];
for (var i = 0; i < browseMatches.length; i++) {
// Add new row
if (numberOfItems % 3 == 0) {
currentContents += "<tr>";
}
// Set HTML for item
var itemDisplayHTML0 = "<td>";
var itemDisplayHTML1 = "<div class=\"itemPictureDiv\" id=\"itemPicture_" + browseMatches[i][0] + "\">";
var itemDisplayHTML2 = "<img src=\"../img/products/" + browseMatches[i][0] + ".png\" alt=\"Item Picture\" class=\"itemPicture\" onclick=\"location.href='../product/index.html?item=" + browseMatches[i][0] + "'\">";
var itemDisplayHTML3 = "</div>";
var itemDisplayHTML4 = "<div class=\"itemInfo\">";
var itemDisplayHTML5 = "<div class=\"itemName\" id=\"itemName_" + browseMatches[i][0] + "\" onclick=\"location.href='../product/index.html?item=" + browseMatches[i][0] + "'\">";
var itemDisplayHTML6 = browseMatches[i][1];
var itemDisplayHTML7 = "</div>";
var itemDisplayHTML8 = "<div class=\"itemDescription\" id=\"itemDescription_" + browseMatches[i][0] + "\">";
var itemDisplayHTML9 = browseMatches[i][4];
var itemDisplayHTML10 = "</div>";
var itemDisplayHTML11 = "</div>";
var itemDisplayHTML12 = "<div class=\"itemPrice\" id=\"itemPrice_" + browseMatches[i][0] + "\">";
var itemDisplayHTML13 = "$" + browseMatches[i][5];
var itemDisplayHTML14 = "</div>";
var itemDisplayHTML15 = "<div class=\"itemCartManage\" id=\"itemCartManage_" + browseMatches[i][0] + "\">";
// Set cartArray if null
if (cartArray == null) {
cartArray = [];
}
// Use either add to cart button or quantity changer depending if item is in cart
var alreadyInCart = false;
var alreadyInCartQuantity = -1;
for (var z = 0; z < cartArray.length; z++) {
if (browseMatches[i][0] == cartArray[z][0]) {
alreadyInCart = true;
alreadyInCartQuantity = cartArray[z][2];
break;
}
}
if (alreadyInCart == true) {
var itemDisplayHTML16 = "<div class=\"quantityChanger\" id=\"quantityChanger_" + browseMatches[i][0] + "\">";
var itemDisplayHTML17 = "<button class=\"quantityMinusButton\" id=\"decQuan_" + browseMatches[i][0] + "\" onclick=\"quantityMinus(this)\">-</button>";
var itemDisplayHTML18 = "<input type=\"text\" autocomplete=\"off\" id=\"quan_" + browseMatches[i][0] + "\" class=\"quantityField\" value=\"" + alreadyInCartQuantity + "\" onfocus=\"storeCurrentQuantity(this);\" onblur=\"checkQuantityValid(this);\">";
var itemDisplayHTML19 = "<button class=\"quantityPlusButton\" id=\"incQuan_" + browseMatches[i][0] + "\" onclick=\"quantityPlus(this)\">+</button>";
var itemDisplayHTML20 = "<div class=\"max9999Alert\" id=\"max9999Alert_" + browseMatches[i][0] + "\">The maximum amount of this item you can purchase is 9999.</div>";
var itemDisplayHTML21 = "</div>";
var itemDisplayHTML22 = "</div>";
var itemDisplayHTML23 = "</td>";
// Add item to currentContents
currentContents += itemDisplayHTML0 + itemDisplayHTML1 + itemDisplayHTML2 + itemDisplayHTML3 + itemDisplayHTML4 + itemDisplayHTML5 + itemDisplayHTML6 + itemDisplayHTML7 + itemDisplayHTML8 + itemDisplayHTML9 + itemDisplayHTML10 + itemDisplayHTML11 + itemDisplayHTML12 + itemDisplayHTML13 + itemDisplayHTML14 + itemDisplayHTML15 + itemDisplayHTML16 + itemDisplayHTML17 + itemDisplayHTML18 + itemDisplayHTML19 + itemDisplayHTML20 + itemDisplayHTML21 + itemDisplayHTML22 + itemDisplayHTML23;
// Add to array if quantity is 9999
if (parseInt(alreadyInCartQuantity) == 9999) {
itemsWithMaxNumber.push(browseMatches[i][0]);
}
} else {
var itemDisplayHTML16 = "<button onclick=\"addToCart(this)\" class=\"addToCartButton\" id=\"addToCartButton_" + browseMatches[i][0] + "\">Add to Cart</button>";
var itemDisplayHTML17 = "</div>";
var itemDisplayHTML18 = "</td>";
// Add item to currentContents
currentContents += itemDisplayHTML0 + itemDisplayHTML1 + itemDisplayHTML2 + itemDisplayHTML3 + itemDisplayHTML4 + itemDisplayHTML5 + itemDisplayHTML6 + itemDisplayHTML7 + itemDisplayHTML8 + itemDisplayHTML9 + itemDisplayHTML10 + itemDisplayHTML11 + itemDisplayHTML12 + itemDisplayHTML13 + itemDisplayHTML14 + itemDisplayHTML15 + itemDisplayHTML16 + itemDisplayHTML17;
}
// Increase numberOfItems
numberOfItems++;
// End row
if (numberOfItems % 3 == 0) {
currentContents += "</tr>";
}
}
// End row in case row was not ended
if (numberOfItems % 3 != 0) {
currentContents += "</tr>";
}
// Display error in case there's no items
if (numberOfItems == 0) {
document.getElementById("error").innerHTML = "Oops! Something went wrong! You're browsing for something that doesn't have any items. This specific " + browseType + " doesn't have any items!";
throw new Error("Oopsies. An error was thrown.");
}
// Display contents
document.getElementById("itemsTable").innerHTML = currentContents;
for (var i = 0; i < itemsWithMaxNumber.length; i++) {
// Display max number alert if quantity is 9999
document.getElementById("max9999Alert_" + itemsWithMaxNumber[i]).style.display = "inherit";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).disabled = true;
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.backgroundColor = "#dee2e8";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.color = "#a2a7ad";
document.getElementById("itemPrice_" + itemsWithMaxNumber[i]).style.bottom = "73px";
document.getElementById("incQuan_" + itemsWithMaxNumber[i]).style.cursor = "default";
}
}