-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
564 lines (471 loc) · 14.5 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
// SIGN-UP FORM-VALIDATION
const usernameEl = document.querySelector("#first-name");
const phonenumberEl = document.querySelector("#phone-number");
const emailEl = document.querySelector("#signup-email");
const passwordEl = document.querySelector("#signup-password");
const confirmPasswordEl = document.querySelector("#password2");
const form = document.querySelector("#signup");
// usernameEl.addEventListener("input", function (){
// })
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 if (!isalphabets(username)) {
showError(usernameEl, `Username must contain only letters.`);
} else {
showSuccess(usernameEl);
valid = true;
}
return valid;
};
//REAL TIME Validation
// USERNAME
const realtimevalidationusername = function () {
checkUsername();
};
usernameEl.addEventListener("keyup", function () {
realtimevalidationusername();
});
// Phone number
const realtimevalidationphonenumber = function () {
checkPhoneNumber();
};
phonenumberEl.addEventListener("keyup", function () {
realtimevalidationphonenumber();
});
// Email
const realtimevalidationemail = function () {
checkEmail();
};
emailEl.addEventListener("keyup", function () {
realtimevalidationemail();
});
// Password
const realtimevalidationpassword = function () {
checkPassword();
};
passwordEl.addEventListener("keyup", function () {
checklistEl = document.querySelector(".checklist");
checklistEl.style.display = "block";
realtimevalidationpassword();
});
//Confirm Password
const realtimevalidationconfirmpassword = function () {
checkConfirmPassword();
};
confirmPasswordEl.addEventListener("keyup", function () {
realtimevalidationconfirmpassword();
});
//REAL TIME Validation END
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 (!haseight(password)) {
showError(passwordEl);
} else if (haseight(password)) {
const first = document.querySelector("#first-point");
first.textContent = "";
}
if (!hasupperandlower(password)) {
showError(passwordEl);
} else if (hasupperandlower(password)) {
const second = document.querySelector("#second-point");
second.textContent = "";
}
if (!number(password)) {
showError(passwordEl);
} else if (number(password)) {
const third = document.querySelector("#third-point");
third.textContent = "";
showSuccess(passwordEl);
valid = true;
indicator = true;
}
return valid;
};
const checkPassword2 = () => {
const password = passwordEl.value.trim();
if (!isRequired(password)) {
showError(passwordEl, "Password cannot be blank.");
}
};
const checkConfirmPassword = () => {
let valid = false;
// check confirm password
const confirmPassword = confirmPasswordEl.value.trim();
const password = passwordEl.value.trim();
if (!isRequired(confirmPassword)) {
showError(confirmPasswordEl, "This field cannot be empty");
} else if (!isConfirmPasswordSecure(confirmPassword)) {
showError(
confirmPasswordEl,
"Minimum 8 characters, at least one uppercase, one lower case, and must contain at least one number"
);
} else if (password !== confirmPassword) {
showError(confirmPasswordEl, "The password does not match");
} else {
showSuccess(confirmPasswordEl);
valid = true;
}
return valid;
};
const checkPhoneNumber = () => {
let valid = false;
const phoneNum = phonenumberEl.value.trim();
console.log(phoneNum);
if (!isRequired(phoneNum)) {
showError(phonenumberEl, "Phone-Number cannot be blank.");
} else if (!isnumberValid(phoneNum)) {
showError(
phonenumberEl,
"Phone Number is not valid.(Phone number should be in the format XXX-XXX-XXXX, XXX.XXX.XXXX, XXX XXX XXXX,XXXXXXXXXX)"
);
} else {
showSuccess(phonenumberEl);
valid = true;
}
return valid;
};
const isalphabets = (username) => {
const re = /^[A-Za-z]+$/;
return re.test(username);
};
const isnumberValid = (phoneNum) => {
const re = /^(([0-9]{3})([\s.-]?)([0-9]{3})([\s.-]?)([0-9]{4}))$/;
return re.test(phoneNum);
};
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 isConfirmPasswordSecure = (confirmPassword) => {
const re = new RegExp(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,}$/);
return re.test(confirmPassword);
};
// const isPasswordSecure = (password) => {
// const re = new RegExp(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,}$/);
// return re.test(password);
// };
const haseight = (password) => (password.length >= 8 ? true : false);
const hasupperandlower = (password) => {
const re = new RegExp(/^(?=.*[a-z])(?=.*[A-Z]).*$/);
return re.test(password);
};
const number = (password) => {
const re = new RegExp(/^.*\d.*$/);
return re.test(password);
};
const isRequired = (value) => (value === "" ? false : true);
const isBetween = (length, min, max) =>
length < min || length > max ? false : true;
const isEqualto = (length) => (length === 10 ? true : false);
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("keyup", function (e) {
// checkUsername();
// });
form.addEventListener("submit", function (e) {
// prevent the form from submitting
e.preventDefault();
// validate fields
let isUsernameValid = checkUsername(),
isPhoneNumValid = checkPhoneNumber(),
isEmailValid = checkEmail(),
isPasswordValid = checkPassword(),
isConfirmPasswordValid = checkConfirmPassword();
checkPassword2();
let isFormValid =
isUsernameValid &&
isPhoneNumValid &&
isEmailValid &&
isPasswordValid &&
isConfirmPasswordValid;
// submit to the server if the form is valid
if (isFormValid) {
const loginbtn = document.querySelector(".btn-warning");
loginbtn.click();
}
});
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 "phoneNum":
checkPhoneNumber();
break;
case "email":
checkEmail();
break;
case "password":
checkPassword();
break;
case "confirm-password":
checkConfirmPassword();
break;
}
})
);
// SIGN-UP FORM-VALIDATION END
// LOGIN FORM-VALIDATION
const loginEmailEl = document.querySelector("#login-email");
const loginPasswordEl = document.querySelector("#login-password");
const forms = document.querySelector("#login-form");
const checkEmails = () => {
let valid = false;
const loginEmail = loginEmailEl.value.trim();
if (!isloginRequired(loginEmail)) {
showloginError(loginEmailEl, "Email cannot be blank.");
} else if (!isloginEmailValid(loginEmail)) {
showloginError(loginEmailEl, "Email is not valid.");
} else {
showloginSuccess(loginEmailEl);
valid = true;
}
return valid;
};
const checkPasswords = () => {
let valid = false;
const loginpassword = loginPasswordEl.value.trim();
if (!isloginRequired(loginpassword)) {
showloginError(loginPasswordEl, "Password cannot be blank.");
} else if (!isloginPasswordSecure(loginpassword)) {
showloginError(
loginPasswordEl,
"Minimum 8 characters, at least one uppercase, one lower case, and must contain at least one number"
);
} else {
showloginSuccess(loginPasswordEl);
valid = true;
indicator = true;
}
return valid;
};
const isloginEmailValid = (loginEmail) => {
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(loginEmail);
};
const isloginPasswordSecure = (loginpassword) => {
const re = new RegExp(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,}$/);
return re.test(loginpassword);
};
const isloginRequired = (value) => (value === "" ? false : true);
const isloginBetween = (length, min, max) =>
length < min || length > max ? false : true;
const isloginEqualto = (length) => (length === 10 ? true : false);
const showloginError = (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 showloginSuccess = (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 = "";
};
forms.addEventListener("submit", function (e) {
// prevent the form from submitting
e.preventDefault();
// validate fields
let isloginEmailValid = checkEmails(),
isloginPasswordValid = checkPasswords();
let isloginFormValid = isloginEmailValid && isloginPasswordValid;
// submit to the server if the form is valid
if (isloginFormValid) {
const loginButton = document.querySelector(".btn-warning");
const signupButton = document.querySelector(".btn-success");
loginButton.style.pointerEvents = "none";
signupButton.style.pointerEvents = "none";
console.log("Welcome");
bootstrap.Modal.getOrCreateInstance(
document.getElementById("Login")
).hide();
bootstrap.Modal.getOrCreateInstance(
document.getElementById("exampleModal")
).hide();
loginButton.textContent = "Welcome";
signupButton.textContent = "My profile";
}
});
const debouncer = (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);
};
};
forms.addEventListener(
"input",
debouncer(function (e) {
switch (e.target.id) {
case "loginEmail":
checkEmails();
break;
case "loginpassword":
checkPasswords();
break;
}
})
);
///METER
const strength = {
0: "Weak",
1: "Too Guessable",
2: "Good",
3: "Strong",
4: "Secure",
};
const password = document.getElementById("signup-password");
const meter = document.getElementById("password-strength-meter");
const text = document.getElementById("password-strength-text");
const suggestions = document.getElementById("password-strength-suggestions");
password.addEventListener("input", function () {
const val = password.value;
const result = zxcvbn(val);
const progressIndicator = document.querySelector("#showValue");
progressIndicator.style.display = "flex";
const progressEL = document.getElementById("showValue");
const stylingClass = document.querySelector(".progress-bar");
progressEL.style.animation = "progressBar 3s ease-in-out";
progressEL.style.animationFillMode = "both";
// Update the password strength meter
// meter.value = result.score;
const suggestionText = result.feedback.suggestions;
// Update the text indicator
if (val !== "") {
text.innerHTML = "Strength: " + strength[result.score];
suggestions.textContent = suggestionText;
} else {
text.innerHTML = "";
}
const resultScore = strength[result.score];
if (val === "") {
stylingClass.style.width = "0%";
} else if (resultScore === "Weak") {
stylingClass.style.width = "20%";
console.log(resultScore);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-warning(?!\S)/g,
""
);
if (!stylingClass.className.match(/(?:^|\s)bg-danger(?!\S)/)) {
stylingClass.className += " bg-danger";
}
} else if (resultScore === "Too Guessable") {
stylingClass.style.width = "40%";
console.log(resultScore);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-info(?!\S)/g,
""
);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-danger(?!\S)/g,
""
);
if (!stylingClass.className.match(/(?:^|\s)bg-warning(?!\S)/)) {
stylingClass.className += " bg-warning";
}
} else if (resultScore === "Good") {
stylingClass.style.width = "60%";
console.log(resultScore);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-warning(?!\S)/g,
""
);
if (!stylingClass.className.match(/(?:^|\s)bg-info(?!\S)/)) {
stylingClass.className += " bg-info";
}
} else if (resultScore === "Strong") {
stylingClass.style.width = "80%";
console.log(resultScore);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-success(?!\S)/g,
""
);
stylingClass.className = stylingClass.className.replace(
/(?:^|\s)bg-info(?!\S)/g,
""
);
} else {
stylingClass.style.width = "100%";
console.log(resultScore);
if (!stylingClass.className.match(/(?:^|\s)bg-success(?!\S)/)) {
stylingClass.className += " bg-success";
}
}
});