-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
executable file
·564 lines (469 loc) · 16 KB
/
script.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
console.log('Im linked');
const fishFilter = document.querySelector("#fishFilter");
const searchFilter = document.querySelector("#searchFilter");
const list = document.getElementById('list');
let objectArray = [
{
sku: 123,
Recipe:'./img/recipe.jpeg',
name: 'snapper',
price: 45,
Kind: 'fillet',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish'],
image: './img/snapper-3.jpeg',
showAll: 'all'
},
{
sku: 345,
Recipe:'./img/recipe2.jpeg',
name: 'trevally',
price: 35,
Kind: 'bone-in',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish', 'bone-in'],
image: './img/trevally.jpeg',
showAll: 'all'
},
{
sku: 567,
Recipe:'./img/recipe-03.jpeg',
name: 'tuna-steak',
Kind: 'steak',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish', 'bone-in'],
price: 75,
image: './img/Tuna-Steak-Main_2.jpeg',
showAll: 'all'
},
{
sku: 890,
Recipe:'./img/recipe-04.png',
name: 'salmon',
Kind: 'smoked',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish'],
price: 65,
image: './img/smoked_salmon.jpeg',
showAll: 'all'
},
{
sku: 931,
Recipe:'./img/recipe-05.jpg',
name: 'tarakihi',
Kind: 'fillet',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish'],
price: 65,
image: './img/Tarakihi.jpg',
showAll: 'all'
},
{
sku: 932,
Recipe:'./img/recipe-06.jpeg',
name: 'flounder',
Kind: 'whole fish',
Tag: ['smoked','salmon','boneless','snapper', 'whole fish'],
price: 65,
image: './img/flounder.jpg',
showAll: 'all'
},
];
function setList(group) {
clearList();
for (const objectArray of group) {
const item = document.createElement('li');
item.classList.add('list-group-item');
const text = document.createTextNode(objectArray.name);
item.appendChild(text);
list.appendChild(item);
}
if (group.length === 0) {
setNoResults();
}
}
function clearList() {
while (list.firstChild) {
list.removeChild(list.firstChild);
}
}
function setNoResults() {
const item = document.createElement('li');
item.classList.add('list-group-item');
const text = document.createTextNode('No results found');
item.appendChild(text);
list.appendChild(item);
}
function getRelevancy(value,searchTerm) {
if (value === searchTerm) {
return 2;
} else if (value.startsWith(searchTerm)) {
return 1;
} else {
return 0;
}
}
const searchInput = document.getElementById('search');
searchInput.addEventListener('input', (event) => {
let value = event.target.value;
if (value && value.trim().length > 0) {
value = value.trim().toLowerCase();
setList(objectArray.filter(fish => {
return fish.name.includes(value);
}).sort((fishA, fishB) => {
return getRelevancy(fishA.name, value) - getRelevancy(fishB.name, value);
}));
} else {
clearList();
}
});
//end of search
function objectArrayCardInfo(){
let i = 0;
for(i = 0; i<objectArray.length; i++){
$('#cardContent').append(
`
<div class="card" style="width: 15rem;">
<img class="card-img-top" src="${objectArray[i].image}" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">${objectArray[i].name}</h5>
<p class="card-text">${objectArray[i].Kind}</p>
<p class="card-text">NZD$ ${objectArray[i].price}</p>
<button id="${objectArray[i].sku}" type="button" class="btn btn-primary moreInformation" data-toggle="modal" data-target="#exampleModalCenter">free recipe
</button>
</div>
</div>
`
);
};
};
function objectsLoop(){
objectArrayCardInfo();
$(".moreInformation").click(function(){
console.log("clicked");
let i = 0;
for(i = 0; i< objectArray.length; i++){
if(parseInt(this.id) === objectArray[i].sku){
$("#objectArrayModalInfo").empty().append(
`
<p>${objectArray[i].name}</p>
<p>We update our recipe weekly</p>
<img class="card-img-top" src="${objectArray[i].Recipe}" alt="Recipe Download">
`
);
}
}
});
}
//end of modal
objectsLoop();
// filter function
function Fishkind(event){
$('#cardContent').empty();
event.preventDefault();
let selectedFish = [];
// start of value check
console.log(selectedFish);
$('input[name="fish"]:checked').each( function(){
selectedFish.push(this.value);
});
console.log(selectedFish);
// end of value check
let i = 0;
// start of selcted loop
for(i = 0; i < selectedFish.length; i++){
if(selectedFish[i] === 'snapper'){
let i = 0;
for(i = 0; i<objectArray.length; i++){
// start of if statement
// check to see if fish is equal to kind of fish
if(objectArray[i].Kind === 'salmon'){
let i = 0;
for(i =0; i<objectArray.length; i++);
// start of append
$('#cardContent').append(
`
<div class="card card--style" style="width: 18rem;">
<div class="img-container">
<img class="card-img-top" src="${objectArray[i].image}" alt="Card image cap">
</div>
<div class="card-body">
<h5 class="card-title">${objectArray[i].name}</h5>
<p class="card-text">${objectArray[i].Kind}</p>
<p class="card-text">$${objectArray[i].price}</p>
<button id="${objectArray[i].sku}" type="button" class="btn btn-primary moreInformation" data-toggle="modal" data-target="#exampleModalCenter">
more info
</button>
</div>
</div>
`
);
// end of append
};
// end of of statement
}
}
if(selectedFish[i] === 'salmon'){
let i = 0;
for(i = 0; i<objectArray.length; i++){
// start of if statement
// check to see if salmon is equal to smoked salmon
if(objectArray[i].Kind === 'smoked'){
// start of append
$('#cardContent').append(
`
<div class="card card--style" style="width: 18rem;">
<div class="img-container">
<img class="card-img-top" src="${objectArray[i].image}" alt="Card image cap">
</div>
<div class="card-body">
<h5 class="card-title">${objectArray[i].name}</h5>
<p class="card-text">${objectArray[i].Kind}</p>
<p class="card-text">$${objectArray[i].price}</p>
<button id="${objectArray[i].sku}" type="button" class="btn btn-primary moreInformation" data-toggle="modal" data-target="#exampleModalCenter">
more info
</button>
</div>
</div>
`
);
// end of append
};
// end of of statement
}
}
if(selectedFish[i] === 'steak'){
console.log('is equal to steak');
}
if(selectedFish[i] === 'smoked'){
console.log('is equal to smoked');
}
};
// end of selected loop
modal();
};
//end
function filterSearchWord(){
//the prop() method sets or return properties and values of selected elements
$('input[type=checkbox]').prop('checked', false); //if change to true
console.log('clicked');
let searchWord = $('#searchWord').val();
console.log(searchWord);
filterByWord(searchWord);
$('input[name=search]').val('');
};
function filterByWord(word){
console.log(word);
$('#cardContent').empty();
let i,j;
for(i = 0; i<objectArray.length; i++){
for(j = 0; j<objectArray[i].name.length; j++){
if(word === objectArray[i].name[j]){
// console.log(word.toLowerCase());
generateCard(i);
modal();
}
}
}
if(word ===''){
nonInput();
}
}
function nonInput(){
for(let i = 0; i <objectArray.length; i++){
generateCard(i);
}
}
//use tolowercase so that user can type anything
function generateCard(x){
// let x = i;
$('#cardContent').append(
`
<div class="card card--style" style="width: 18rem;">
<div class="img-container">
<img class="card-img-top" src="${objectArray[x].image}" alt="Card image cap">
</div>
<div class="card-body">
<h5 class="card-title">${objectArray[x].name}</h5>
<p class="card-text">${objectArray[x].Kind}</p>
<p class="card-text">$${objectArray[x].price}</p>
<button id="${objectArray[x].sku}" type="button" class="btn btn-primary moreInformation" data-toggle="modal" data-target="#exampleModalCenter">
more info
</button>
</div>
</div>
`
);
}
filterSelection("all")
function filterSelection(c) {
var x, i;
x = document.getElementsByClassName("filterSeafood");
if (c == "all") c = "";
for (i = 0; i < x.length; i++) {
w3RemoveClass(x[i], "show");
if (x[i].className.indexOf(c) > -1) w3AddClass(x[i], "show");
}
}
function w3AddClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
if (arr1.indexOf(arr2[i]) == -1) {element.className += " " + arr2[i];}
}
}
function w3RemoveClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
while (arr1.indexOf(arr2[i]) > -1) {
arr1.splice(arr1.indexOf(arr2[i]), 1);
}
}
element.className = arr1.join(" ");
}
// Add active class to the current button (highlight it)
var btnContainer = document.getElementById("myBtnContainer");
var btns = btnContainer.getElementsByClassName("btn");
for (var i = 0; i < btns.length; i++) {
btns[i].addEventListener("click", function(){
var current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
});
}
//
//start validation sign up
const usernameEl = document.querySelector('#username');
const emailEl = document.querySelector('#email');
const passwordEl = document.querySelector('#password');
const confirmPasswordEl = document.querySelector('#confirm-password');
const form = document.querySelector('#signup');
const checkUsername = () => {
let valid = false;
const min = 3,
max = 25;
const username = usernameEl.value.trim();
if (!isRequired(username)) {
showError(usernameEl, 'Username cannot be blank.');
} else if (!isBetween(username.length, min, max)) {
showError(usernameEl, `Username must be between ${min} and ${max} characters.`)
} else {
showSuccess(usernameEl);
valid = true;
}
return valid;
};
const checkEmail = () => {
let valid = false;
const email = emailEl.value.trim();
if (!isRequired(email)) {
showError(emailEl, 'Email cannot be blank.');
} else if (!isEmailValid(email)) {
showError(emailEl, 'Email is not valid.')
} else {
showSuccess(emailEl);
valid = true;
}
return valid;
};
const checkPassword = () => {
let valid = false;
const password = passwordEl.value.trim();
if (!isRequired(password)) {
showError(passwordEl, 'Password cannot be blank.');
} else if (!isPasswordSecure(password)) {
showError(passwordEl, 'Password must has at least 8 characters that include at least 1 lowercase character, 1 uppercase characters, 1 number, and 1 special character in (!@#$%^&*)');
} else {
showSuccess(passwordEl);
valid = true;
}
return valid;
};
const checkConfirmPassword = () => {
let valid = false;
// check confirm password
const confirmPassword = confirmPasswordEl.value.trim();
const password = passwordEl.value.trim();
if (!isRequired(confirmPassword)) {
showError(confirmPasswordEl, 'Please enter the password again');
} else if (password !== confirmPassword) {
showError(confirmPasswordEl, 'The password does not match');
} else {
showSuccess(confirmPasswordEl);
valid = true;
}
return valid;
};
const isEmailValid = (email) => {
const re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
};
const isPasswordSecure = (password) => {
const re = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})");
return re.test(password);
};
const isRequired = value => value === '' ? false : true;
const isBetween = (length, min, max) => length < min || length > max ? false : true;
const showError = (input, message) => {
// get the form-field element
const formField = input.parentElement;
// add the error class
formField.classList.remove('success');
formField.classList.add('error');
// show the error message
const error = formField.querySelector('small');
error.textContent = message;
};
const showSuccess = (input) => {
// get the form-field element
const formField = input.parentElement;
// remove the error class
formField.classList.remove('error');
formField.classList.add('success');
// hide the error message
const error = formField.querySelector('small');
error.textContent = '';
}
form.addEventListener('submit', function (e) {
// prevent the form from submitting
e.preventDefault();
// validate fields
let isUsernameValid = checkUsername(),
isEmailValid = checkEmail(),
isPasswordValid = checkPassword(),
isConfirmPasswordValid = checkConfirmPassword();
let isFormValid = isUsernameValid &&
isEmailValid &&
isPasswordValid &&
isConfirmPasswordValid;
// submit to the server if the form is valid
if (isFormValid) {
}
});
const debounce = (fn, delay = 500) => {
let timeoutId;
return (...args) => {
// cancel the previous timer
if (timeoutId) {
clearTimeout(timeoutId);
}
// setup a new timer
timeoutId = setTimeout(() => {
fn.apply(null, args)
}, delay);
};
};
form.addEventListener('input', debounce(function (e) {
switch (e.target.id) {
case 'username':
checkUsername();
break;
case 'email':
checkEmail();
break;
case 'password':
checkPassword();
break;
case 'confirm-password':
checkConfirmPassword();
break;
}
}));