forked from Codipk/Password-Generator
-
Notifications
You must be signed in to change notification settings - Fork 10
/
script.js
386 lines (330 loc) · 13.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
const inputSlider = document.querySelector("[data-lengthSlider]");
const lengthDisplay = document.querySelector("[data-lengthNumber]");
const passwordDisplay = document.querySelector("[data-passwordDisplay]");
const copyBtn = document.querySelector("[data-copy]");
const copyMsg = document.querySelector("[data-copyMsg]");
const uppercaseCheck = document.querySelector("#uppercase");
const lowercaseCheck = document.querySelector("#lowercase");
const numbersCheck = document.querySelector("#numbers");
const symbolsCheck = document.querySelector("#symbols");
const indicator = document.querySelector("[data-indicator]");
const generateBtn = document.querySelector(".generateButton");
const allCheckBox = document.querySelectorAll("input[type=checkbox]");
const strengthBar = document.querySelector('.strength-bar');
const symbols = '~`!@#$%^&*()_-+={[}]|:;"<,>.?/';
//Toggle function for blue/dark/white theme
document.addEventListener("DOMContentLoaded", function () {
const currentMode = localStorage.getItem('mode') || 'light-mode';
const heading = document.querySelector('h1');
const paragraphs = document.querySelectorAll('p');
const labels = document.querySelectorAll('label');
const inputContainer = document.querySelector('.input-container');
const displayContainer = document.querySelector('.display-container');
const inputDisplay = document.querySelector('input[data-passwordDisplay]');
const generateButton = document.getElementById('generateButton');
const generateBtn = document.querySelector(".generateButton");
const copyBtn = document.querySelector(".copyBtn");
const tooltip = document.getElementById('tooltip');
const updateSliderColor = (mode) => {
const slider = document.querySelector('input[data-lengthSlider]');
if (slider) {
if (mode === 'light-mode') {
slider.style.backgroundImage = 'linear-gradient(#0066ff, #0066ff)';
slider.style.setProperty('--vb-yellow', '#ffcc00');
} else {
slider.style.backgroundImage = '';
slider.style.setProperty('--vb-yellow', '');
}
}
};
const updateCheckboxStyles = (mode) => {
const checkboxes = document.querySelectorAll('.check input[type="checkbox"]');
checkboxes.forEach(checkbox => {
if (checkbox.checked) {
if (mode === 'light-mode') {
checkbox.style.backgroundColor = 'hsl(177, 92%, 70%)';
checkbox.style.border = '2px solid darkred';
checkbox.style.color = 'blue';
} else {
checkbox.style.backgroundColor = 'var(--vb-cyan)';
checkbox.style.border = 'none';
checkbox.style.color = 'white';
}
} else {
checkbox.style.backgroundColor = '';
checkbox.style.color = '';
if (mode === 'light-mode') {
checkbox.style.border = '2px solid darkred';
} else {
checkbox.style.border = '';
}
}
});
};
const updateInputTextColor = (mode) => {
inputDisplay.style.color = mode === 'light-mode' ? '#700067' : 'hsla(98, 100%, 50%, 0.957)';
};
const updatePlaceholderColor = (mode) => {
if (mode === 'light-mode') {
inputDisplay.style.setProperty('--placeholder-color', '#700067');
} else {
inputDisplay.style.setProperty('--placeholder-color', 'hsla(98, 100%, 50%, 0.957)');
}
};
const updateGenerateButtonColor = (mode) => {
if (generateButton) {
generateButton.style.backgroundColor = mode === 'light-mode' ? '#001358' : 'blanchedalmond';
generateBtn.style.color = mode === 'light-mode' ? 'white' : 'darkred';
}
};
const applyModeStyles = (mode) => {
document.body.className = mode;
if (mode === 'light-mode') {
heading.style.color = "darkred";
document.getElementById('mode-icon').style.color = 'black';
document.body.style.backgroundColor = "white";
inputContainer.style.backgroundColor = "#D2D3D3";
displayContainer.style.backgroundColor = "#D2D3D3";
paragraphs.forEach(p => p.style.color = 'black');
labels.forEach(label => label.style.color = 'black');
generateBtn.style.backgroundColor = '#001358';
generateBtn.style.color = 'white';
copyBtn.style.color = 'darkred';
tooltip.style.backgroundColor = '#0077FF';
tooltip.style.color = '#FFEA00';
} else {
heading.style.color = "rgb(172, 199, 241)";
document.getElementById('mode-icon').style.color = 'white';
document.body.style.backgroundColor = "#121212";
inputContainer.style.backgroundColor = "";
displayContainer.style.backgroundColor = "";
paragraphs.forEach(p => p.style.color = 'white');
labels.forEach(label => label.style.color = 'white');
generateBtn.style.backgroundColor = 'blanchedalmond';
generateBtn.style.color = 'darkred';
copyBtn.style.color = 'hsla(98, 100%, 50%, 0.957)';
tooltip.style.backgroundColor = '';
tooltip.style.color = '';
}
updateCheckboxStyles(mode);
updateInputTextColor(mode);
updatePlaceholderColor(mode);
updateGenerateButtonColor(mode);
updateSliderColor(mode);
};
// Initial setup based on stored mode or default
applyModeStyles(currentMode);
const toggleButton = document.getElementById('mode-toggle');
if (toggleButton) {
toggleButton.addEventListener('click', function () {
const newMode = document.body.classList.contains('dark-mode') ? 'light-mode' : 'dark-mode';
localStorage.setItem('mode', newMode);
applyModeStyles(newMode);
});
}
const checkboxes = document.querySelectorAll('.check input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.addEventListener('change', function () {
updateCheckboxStyles(localStorage.getItem('mode'));
});
});
});
//initially
let password = "";
let passwordLength = 10;
let checkCount = 0;
handleSlider();
//ste strength circle color to grey
//set passwordLength
function handleSlider() {
inputSlider.value = passwordLength;
lengthDisplay.innerText = passwordLength;
//or kuch bhi karna chahiye ? - HW
}
function setIndicator(color) {
indicator.style.backgroundColor = color;
//shadow - HW
}
function setStrengthBar(pswd_strength)
{
/*This function sets the color and length of the strength bar based on pswd_strength
passed to it*/
let color="";
if(pswd_strength>66)
color="green"
else if(pswd_strength>=33)
color="yellow"
else
color="red"
// pswd_strength is between 0 to 100.
// By adding a % to the end will use it as width of strengthbar
let w = pswd_strength.toString()+"%";
strengthBar.style.width = w;
strengthBar.style.backgroundColor = color;
}
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
function generateRandomNumber() {
return getRndInteger(0,9);
}
function generateLowerCase() {
return String.fromCharCode(getRndInteger(97,123))
}
function generateUpperCase() {
return String.fromCharCode(getRndInteger(65,91))
}
function generateSymbol() {
const randNum = getRndInteger(0, symbols.length);
return symbols.charAt(randNum);
}
function calcStrength() {
/*This function calculates the strength of password based on
value of checkboxes and length of the password.
To calculate the strength we first generate the pswd_strength between 0 and 1
if uppercase letters are allowed we add 0.2 to strength
if lowercase letters are allowed we add 0.2 to strength
if numbers are allowed we add 0.3 to strength
if symbols are allowed we add 0.3 to strength
finally we multiply the strength so generated by password length
Once done we call the setStrengthBar function to make the strengthBar
reflect the new strength so calculated
*/
let pswd_strength=0;
pswd_strength+=uppercaseCheck.checked?0.2:0;
pswd_strength+=lowercaseCheck.checked?0.2:0;
pswd_strength+=numbersCheck.checked?0.3:0;
pswd_strength+=symbolsCheck.checked?0.3:0;
pswd_strength=pswd_strength*passwordLength*8;
pswd_strength=pswd_strength>100?100:pswd_strength;
setStrengthBar(pswd_strength);
}
// adding the eventlistener to the inputs so that
// when user changes any of the input the password strength is calculated again
// and the strength bar is updated accordingly
inputSlider.addEventListener('input',()=>calcStrength());
uppercaseCheck.addEventListener('change',()=>calcStrength());
lowercaseCheck.addEventListener('change',()=>calcStrength());
numbersCheck.addEventListener('change',()=>calcStrength());
symbolsCheck.addEventListener('change',()=>calcStrength());
const copyIcon = copyBtn.querySelector('.icon')
// Generate password logic
const generatePassword = () => {
passwordDisplay.value = "YourGeneratedPassword"; // Replace with actual password generation logic
// updateCopyButtonState(); // Enable copy button after generating password
};
// Copy password to clipboard and show feedback
async function copyContent() {
const passwordToCopy = passwordDisplay.value.trim(); // Get the trimmed password
if (!passwordToCopy) return; // Don't proceed if there's no password
try {
await navigator.clipboard.writeText(passwordToCopy); // Copy to clipboard
} catch (e) {
copyMsg.innerText = "Failed"; // Show failure message
}
copyMsg.innerText = "Copied"; // Show copied message
copyIcon.src = "https://img.icons8.com/ios-filled/50/40C057/checked-checkbox.png"; // Change icon to checked state
copyIcon.classList.add('success'); // Add success class
copyMsg.classList.add("active"); // Show the copy message
// Set a timeout to reset the icon and message after 2 seconds
setTimeout(() => {
copyIcon.src = 'copy.svg'; // Reset icon to original
copyIcon.classList.remove('success'); // Remove success class
copyMsg.classList.remove("active"); // Hide the copy message
}, 2000); // 2-second delay
}
// Event Listeners
// passwordDisplay.addEventListener('input', updateCopyButtonState); // For updating copy button state
document.getElementById('generateButton')?.addEventListener('click', generatePassword); // Password generation
copyBtn.addEventListener('click', copyContent); // Copy event
// updateCopyButtonState(); // Initial state update
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 str = "";
array.forEach((el) => (str += el));
return str;
}
function handleCheckBoxChange() {
checkCount = 0;
allCheckBox.forEach( (checkbox) => {
if(checkbox.checked)
checkCount++;
});
//special condition
if(passwordLength < checkCount ) {
passwordLength = checkCount;
handleSlider();
}
}
allCheckBox.forEach( (checkbox) => {
checkbox.addEventListener('change', handleCheckBoxChange);
})
inputSlider.addEventListener('input', (e) => {
passwordLength = e.target.value;
handleSlider();
})
copyBtn.addEventListener('click', () => {
if(passwordDisplay.value)
copyContent();
})
generateBtn.addEventListener('click', () => {
//none of the checkbox are selected
if(checkCount == 0)
return;
if(passwordLength < checkCount) {
passwordLength = checkCount;
handleSlider();
}
// let's start the jouney to find new password
console.log("Starting the Journey");
//remove old password
password = "";
//let's 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 += generateSymbol();
// }
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(generateSymbol);
//compulsory addition
for(let i=0; i<funcArr.length; i++) {
password += funcArr[i]();
}
console.log("COmpulsory adddition done");
//remaining adddition
for(let i=0; i<passwordLength-funcArr.length; i++) {
let randIndex = getRndInteger(0 , funcArr.length);
console.log("randIndex" + randIndex);
password += funcArr[randIndex]();
}
console.log("Remaining adddition done");
//shuffle the password
password = shufflePassword(Array.from(password));
console.log("Shuffling done");
//show in UI
passwordDisplay.value = password;
console.log("UI adddition done");
//calculate strength
calcStrength();
});