-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
213 lines (171 loc) · 5.87 KB
/
Copy pathscript.js
File metadata and controls
213 lines (171 loc) · 5.87 KB
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
let password = "";
let passwordLength = 10;
let checkCount = 0;
const inputSlider = document.querySelector("[data-lengthSlider]");
const lengthDisplay = document.querySelector("[data-lengthNumber]");
handleSlider();
// passwordlength ko UI me reflect karata h
function handleSlider() {
inputSlider.value = passwordLength;
lengthDisplay.textContent = passwordLength;
const min = inputSlider.min;
const max = inputSlider.max;
inputSlider.style.backgroundSize = ((passwordLength - min) * 100 / (max - min)) + "% 100%";
}
inputSlider.addEventListener("input", (event) => {
passwordLength = event.target.value;
handleSlider();
})
const passwordDisplay = document.querySelector("[data-passwordDisplay]");
const copyBtn = document.querySelector("[data-copy]");
const copyMsg = document.querySelector("[data-copyMsg]");
async function copyContent() {
try {
await navigator.clipboard.writeText(passwordDisplay.value);
copyMsg.textContent = "copied";
}
catch (e) {
copyMsg.textContent = "Failed";
}
// to make copy wala span visible
copyMsg.classList.add("active");
setTimeout(() => {
copyMsg.classList.remove("active")
}, 2000);
}
copyBtn.addEventListener("click", () => {
// if non-empty
// if (passwordDisplay.value)
if (password.length > 0)
copyContent();
})
const uppercaseCheck = document.querySelector("#uppercase");
const lowercaseCheck = document.querySelector("#lowercase");
const numbersCheck = document.querySelector("#numbers");
const symbolsCheck = document.querySelector("#symbols");
function getRandomInteger(min, max) {
return min + Math.floor(Math.random() * (max - min))
}
function generateRandomNumber() {
return getRandomInteger(0, 10);
}
// console.log(generateRandomNumber());
function generateLowerCase() {
return String.fromCharCode(getRandomInteger(97, 123));
}
function generateUpperCase() {
return String.fromCharCode(getRandomInteger(65, 91));
}
// console.log(generateLowerCase());
// console.log(generateUpperCase());
function generateSymbols() {
const symbols = "!@#$%^&*()_+-=[]{}|;\:`,./<>?";
const randNum = getRandomInteger(0, symbols.length);
return symbols[randNum];
}
// console.log(generateSymbols());
const indicator = document.querySelector("[data-indicator]");
const generateBtn = document.querySelector(".generateBtn");
// set strength color to grey
setIndicator("#ccc");
function setIndicator(color) {
indicator.style.backgroundColor = color;
indicator.style.boxShadow = `0px 0px 12px 1px ${color}`;
}
function calcStrength() {
let hasUpper = false;
let hasLower = false;
let hasNumber = false;
let hasSymbol = false;
if (uppercaseCheck.checked) hasUpper = true;
if (lowercaseCheck.checked) hasLower = true;
if (numbersCheck.checked) hasNumber = true;
if (symbolsCheck.checked) hasSymbol = true;
if (hasUpper && hasLower && hasNumber && hasSymbol && passwordLength >= 8)
setIndicator("#0f0");
else if ((hasUpper || hasLower) && (hasNumber || hasSymbol) && passwordLength >= 6)
setIndicator("#ff0");
else
setIndicator("#f00");
}
const allCheckBox = document.querySelectorAll("input[type=checkbox]");
function handleCheckBoxChange() {
checkCount = 0;
allCheckBox.forEach((checkbox) => {
if (checkbox.checked)
checkCount++;
});
// Special Condition
if (passwordLength < checkCount) {
// passwordlength change hui h so call handleslider fucnction
passwordLength = checkCount;
handleSlider();
}
}
allCheckBox.forEach((checkbox) => {
checkbox.addEventListener("change", handleCheckBoxChange);
});
generateBtn.addEventListener("click", () => {
// None of the checkbox are selected
if (checkCount === 0)
return;
if (passwordLength < checkCount) {
passwordLength = checkCount;
handleSlider();
}
//! GENERATE NEW
// console.log("Starting The Journey");
//? remove old password
password = "";
// put the stuff mentioned by checkboxes
// if (uppercaseCheck.checked)
// password += generateUpperCase();
// if (lowercaseCheck.checked)
// password += generateLowerCase();
// if (numbersCheck.checked)
// password += generateRandomNumber();
// if (symbolsCheck.checked)
// password += generateSymbols();
let funcArr = [];
if (uppercaseCheck.checked)
funcArr.push(generateUpperCase);
if (lowercaseCheck.checked)
funcArr.push(generateLowerCase);
if (numbersCheck.checked)
funcArr.push(generateRandomNumber);
if (symbolsCheck.checked)
funcArr.push(generateSymbols);
//? Compulsory Addition
for (let i = 0; i < funcArr.length; i++) {
password += funcArr[i]();
}
// console.log("Compulsory Addition Done");
//? Remaining Addition
for (let i = 0; i < passwordLength - funcArr.length; i++) {
let randIndex = getRandomInteger(0, funcArr.length);
password += funcArr[randIndex]();
}
// console.log("Remaining Addition Done");
//? Password Shuffle
password = shufflePassword(Array.from(password));
// console.log("Shuffling Done");
//? show in UI
passwordDisplay.value = password;
// console.log("UI Addition Done");
//? Calculate Strength
calcStrength();
});
function shufflePassword(array) {
// Fisher Yates Method
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
const temp = array[i];
array[i] = array[j];
array[j] = temp;
}
let ans = "";
array.forEach((value) => {
ans += value;
});
return ans;
}