-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.js
468 lines (404 loc) · 17.9 KB
/
search.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
var searchMatches = [];
var originalSearchMatches;
function searchItems() {
// Get inventory and cart
var itemArray = JSON.parse(sessionStorage.getItem("inventory"));
var cartArray = JSON.parse(localStorage.getItem("cart"));
// Get search details
var fullSearch = window.location.search;
var searchTerm = unescape(fullSearch.substring(fullSearch.indexOf("=") + 1));
// Check if search term only contains spaces
if (searchTerm.match(/^[+]+$/g) != null) {
document.getElementById("numberOfResults").innerHTML = "Oops! Something went wrong!";
document.getElementById("error").innerHTML = "Your search term only contains spaces! Where the letters at?";
throw new Error("Oopsies. An error was thrown.");
}
searchTerm = searchTerm.replace(/\+/g, " ");
// Check if search term exists
if (fullSearch == "") {
document.getElementById("numberOfResults").innerHTML = "Oops! Something went wrong!";
document.getElementById("error").innerHTML = "You haven't entered a search term!";
throw new Error("Oopsies. An error was thrown.");
}
// Check if there's no =
if (fullSearch.indexOf("=") == -1) {
document.getElementById("numberOfResults").innerHTML = "Oops! Something went wrong!";
document.getElementById("error").innerHTML = "You haven't entered a search term!";
throw new Error("Oopsies. An error was thrown.");
}
// Check if it's not ?query
if (fullSearch.substring(0, fullSearch.indexOf("=")) != "?query") {
document.getElementById("numberOfResults").innerHTML = "Oops! Something went wrong!";
document.getElementById("error").innerHTML = "That isn't a query!";
throw new Error("Oopsies. An error was thrown.");
}
//var searchMatches = [];
var numberOfItems = 0;
var currentContents = "";
if (searchTerm == "") {
document.getElementById("numberOfResults").innerHTML = "Oops! Something went wrong!";
document.getElementById("error").innerHTML = "You haven't entered a search term!";
throw new Error("Oopsies. An error was thrown.");
} else {
// Split search terms by word for match with each word of search term algorithms
var spaceSplitSearch = searchTerm.split(" ");
while (true) {
var blankTerm = false;
var lastTerm = false;
for (var i = 0; i < spaceSplitSearch.length; i++) {
if (spaceSplitSearch[i] == "") {
blankTerm = true;
break;
}
if (i == spaceSplitSearch.length - 1) {
lastTerm = true;
}
}
if (blankTerm == true) {
spaceSplitSearch.splice(i, 1);
}
if (lastTerm == true) {
break;
}
}
// Search by product ID
for (var i = 0; i < itemArray.length; i++) {
if (itemArray[i][0].toUpperCase() == searchTerm.toUpperCase()) {
searchMatches.push(itemArray[i]);
}
}
// Search by name (match with full search term)
for (var i = 0; i < itemArray.length; i++) {
var alreadyMatched = false;
if (itemArray[i][1].toUpperCase().includes(searchTerm.toUpperCase())) {
for (var x = 0; x < searchMatches.length; x++) {
if (searchMatches[x][0] == itemArray[i][0]) {
alreadyMatched = true;
break;
} else {
continue;
}
}
if (alreadyMatched == false) {
searchMatches.push(itemArray[i]);
}
}
}
// Search by name (match with each word of search term)
for (var y = 0; y < spaceSplitSearch.length; y++) {
for (var i = 0; i < itemArray.length; i++) {
var alreadyMatched = false;
if (itemArray[i][1].toUpperCase().includes(spaceSplitSearch[y].toUpperCase())) {
for (var x = 0; x < searchMatches.length; x++) {
if (searchMatches[x][0] == itemArray[i][0]) {
alreadyMatched = true;
break;
} else {
continue;
}
}
if (alreadyMatched == false) {
searchMatches.push(itemArray[i]);
}
}
}
// Search by company
for (var i = 0; i < itemArray.length; i++) {
var alreadyMatched = false;
if (itemArray[i][3].toUpperCase().includes(searchTerm.toUpperCase())) {
for (var x = 0; x < searchMatches.length; x++) {
if (searchMatches[x][0] == itemArray[i][0]) {
alreadyMatched = true;
break;
} else {
continue;
}
}
if (alreadyMatched == false) {
searchMatches.push(itemArray[i]);
}
}
}
}
// Search by description
for (var i = 0; i < itemArray.length; i++) {
var alreadyMatched = false;
if (itemArray[i][4].toUpperCase().includes(searchTerm.toUpperCase())) {
for (var x = 0; x < searchMatches.length; x++) {
if (searchMatches[x][0] == itemArray[i][0]) {
alreadyMatched = true;
break;
} else {
continue;
}
}
if (alreadyMatched == false) {
searchMatches.push(itemArray[i]);
}
}
}
// Search by description (match with each word of search term)
for (var y = 0; y < spaceSplitSearch.length; y++) {
for (var i = 0; i < itemArray.length; i++) {
var alreadyMatched = false;
if (itemArray[i][4].toUpperCase().includes(spaceSplitSearch[y].toUpperCase())) {
for (var x = 0; x < searchMatches.length; x++) {
if (searchMatches[x][0] == itemArray[i][0]) {
alreadyMatched = true;
break;
} else {
continue;
}
}
if (alreadyMatched == false) {
searchMatches.push(itemArray[i]);
}
}
}
}
}
// Developer pass-through to see all items
if (searchTerm.toUpperCase() == "SHOW ME EVERYTHING") {
searchMatches = [];
for (var g = 0; g < itemArray.length; g++) {
searchMatches.push(itemArray[g]);
}
}
// Get searchMatches results and set HTML
var itemsWithMaxNumber = [];
for (var i = 0; i < searchMatches.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_" + searchMatches[i][0] + "\">";
var itemDisplayHTML2 = "<img src=\"../img/products/" + searchMatches[i][0] + ".png\" alt=\"Item Picture\" class=\"itemPicture\" onclick=\"location.href='../product/index.html?item=" + searchMatches[i][0] + "'\">";
var itemDisplayHTML3 = "</div>";
var itemDisplayHTML4 = "<div class=\"itemInfo\">";
var itemDisplayHTML5 = "<div class=\"itemName\" id=\"itemName_" + searchMatches[i][0] + "\" onclick=\"location.href='../product/index.html?item=" + searchMatches[i][0] + "'\">";
var itemDisplayHTML6 = searchMatches[i][1];
var itemDisplayHTML7 = "</div>";
var itemDisplayHTML8 = "<div class=\"itemDescription\" id=\"itemDescription_" + searchMatches[i][0] + "\">";
var itemDisplayHTML9 = searchMatches[i][4];
var itemDisplayHTML10 = "</div>";
var itemDisplayHTML11 = "</div>";
var itemDisplayHTML12 = "<div class=\"itemPrice\" id=\"itemPrice_" + searchMatches[i][0] + "\">";
var itemDisplayHTML13 = "$" + searchMatches[i][5];
var itemDisplayHTML14 = "</div>";
var itemDisplayHTML15 = "<div class=\"itemCartManage\" id=\"itemCartManage_" + searchMatches[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 (searchMatches[i][0] == cartArray[z][0]) {
alreadyInCart = true;
alreadyInCartQuantity = cartArray[z][2];
break;
}
}
if (alreadyInCart == true) {
var itemDisplayHTML16 = "<div class=\"quantityChanger\" id=\"quantityChanger_" + searchMatches[i][0] + "\">";
var itemDisplayHTML17 = "<button class=\"quantityMinusButton\" id=\"decQuan_" + searchMatches[i][0] + "\" onclick=\"quantityMinus(this)\">-</button>";
var itemDisplayHTML18 = "<input type=\"text\" autocomplete=\"off\" id=\"quan_" + searchMatches[i][0] + "\" class=\"quantityField\" value=\"" + alreadyInCartQuantity + "\" onfocus=\"storeCurrentQuantity(this);\" onblur=\"checkQuantityValid(this);\">";
var itemDisplayHTML19 = "<button class=\"quantityPlusButton\" id=\"incQuan_" + searchMatches[i][0] + "\" onclick=\"quantityPlus(this)\">+</button>";
var itemDisplayHTML20 = "<div class=\"max9999Alert\" id=\"max9999Alert_" + searchMatches[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(searchMatches[i][0]);
}
} else {
var itemDisplayHTML16 = "<button onclick=\"addToCart(this)\" class=\"addToCartButton\" id=\"addToCartButton_" + searchMatches[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 number of results and results
document.getElementById("numberOfResults").innerHTML = numberOfItems.toString() + " results found for \"" + searchTerm + "\"";
document.getElementById("itemsTable").innerHTML = currentContents;
if (numberOfItems == 0) {
document.getElementById("items").innerHTML = "<div class=\"noResults\"><div class=\"noResultsLine1\">Is that a vegetable we've never heard of?</div><div class=\"noResultsLine2\">Our search monkeys couldn't find any results!</div></div>";
}
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";
}
// Set originalSearchMatches to searchMatches
originalSearchMatches = JSON.parse(JSON.stringify(searchMatches));
}
function itemSortBy() {
var sortSelect = document.getElementById("sortBy");
var selectedText = sortSelect.options[sortSelect.selectedIndex].text;
if (selectedText == "Relevance") {
// Sort by relevance, make searchMatches equal originalSearchMatches
searchMatches = JSON.parse(JSON.stringify(originalSearchMatches));
} else if (selectedText == "Alphabetical A-Z") {
// Sort by alphabetical A-Z
searchMatches.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
searchMatches.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;
});
searchMatches.reverse();
} else if (selectedText == "Price Lowest to Highest") {
// Sort by lowest to highest price
searchMatches.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
searchMatches.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;
});
searchMatches.reverse();
}
// Get searchMatches results and set HTML
var numberOfItems = 0;
var currentContents = "";
var itemsWithMaxNumber = [];
for (var i = 0; i < searchMatches.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_" + searchMatches[i][0] + "\">";
var itemDisplayHTML2 = "<img src=\"../img/products/" + searchMatches[i][0] + ".png\" alt=\"Item Picture\" class=\"itemPicture\" onclick=\"location.href='../product/index.html?item=" + searchMatches[i][0] + "'\">";
var itemDisplayHTML3 = "</div>";
var itemDisplayHTML4 = "<div class=\"itemInfo\">";
var itemDisplayHTML5 = "<div class=\"itemName\" id=\"itemName_" + searchMatches[i][0] + "\" onclick=\"location.href='../product/index.html?item=" + searchMatches[i][0] + "'\">";
var itemDisplayHTML6 = searchMatches[i][1];
var itemDisplayHTML7 = "</div>";
var itemDisplayHTML8 = "<div class=\"itemDescription\" id=\"itemDescription_" + searchMatches[i][0] + "\">";
var itemDisplayHTML9 = searchMatches[i][4];
var itemDisplayHTML10 = "</div>";
var itemDisplayHTML11 = "</div>";
var itemDisplayHTML12 = "<div class=\"itemPrice\" id=\"itemPrice_" + searchMatches[i][0] + "\">";
var itemDisplayHTML13 = "$" + searchMatches[i][5];
var itemDisplayHTML14 = "</div>";
var itemDisplayHTML15 = "<div class=\"itemCartManage\" id=\"itemCartManage_" + searchMatches[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 (searchMatches[i][0] == cartArray[z][0]) {
alreadyInCart = true;
alreadyInCartQuantity = cartArray[z][2];
break;
}
}
if (alreadyInCart == true) {
var itemDisplayHTML16 = "<div class=\"quantityChanger\" id=\"quantityChanger_" + searchMatches[i][0] + "\">";
var itemDisplayHTML17 = "<button class=\"quantityMinusButton\" id=\"decQuan_" + searchMatches[i][0] + "\" onclick=\"quantityMinus(this)\">-</button>";
var itemDisplayHTML18 = "<input type=\"text\" autocomplete=\"off\" id=\"quan_" + searchMatches[i][0] + "\" class=\"quantityField\" value=\"" + alreadyInCartQuantity + "\" onfocus=\"storeCurrentQuantity(this);\" onblur=\"checkQuantityValid(this);\">";
var itemDisplayHTML19 = "<button class=\"quantityPlusButton\" id=\"incQuan_" + searchMatches[i][0] + "\" onclick=\"quantityPlus(this)\">+</button>";
var itemDisplayHTML20 = "<div class=\"max9999Alert\" id=\"max9999Alert_" + searchMatches[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(searchMatches[i][0]);
}
} else {
var itemDisplayHTML16 = "<button onclick=\"addToCart(this)\" class=\"addToCartButton\" id=\"addToCartButton_" + searchMatches[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 new results
document.getElementById("itemsTable").innerHTML = currentContents;
if (numberOfItems == 0) {
document.getElementById("items").innerHTML = "<div class=\"noResults\"><div class=\"noResultsLine1\">Is that a vegetable we've never heard of?</div><div class=\"noResultsLine2\">Our search monkeys couldn't find any results!</div></div>";
}
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";
}
}