-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
362 lines (292 loc) · 10.3 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
const userTab = document.querySelector("[data-userWeather]");
const searchTab = document.querySelector("[data-searchWeather]");
const genaretorContenar=document.querySelector(".container");
const viewContener=document.querySelector(".container1");
let oldTab = userTab;
oldTab.classList.add("current-tab");
genaretorContenar.classList.add("active");
function switchTab(newTab) {
if(newTab != oldTab) {
oldTab.classList.remove("current-tab");
oldTab = newTab;
oldTab.classList.add("current-tab");
if(!viewContener.classList.contains("active")) {
//kya search form wala container is invisible, if yes then make it visible
genaretorContenar.classList.remove("active");
viewContener.classList.add("active");
}
else {
//main pehle search wale tab pr tha, ab your weather tab visible karna h
viewContener.classList.remove("active");
genaretorContenar.classList.add("active");
//ab main your weather tab me aagya hu, toh weather bhi display karna poadega, so let's check local storage first
//for coordinates, if we haved saved them there.
// getfromSessionStorage();
}
}
}
userTab.addEventListener("click", () => {
//pass clicked tab as input paramter
switchTab(userTab);
});
searchTab.addEventListener("click", () => {
//pass clicked tab as input paramter
switchTab(searchTab);
});
//----------------------------------- password genaretror-------------------------------=======================================
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 symbols = '~`!@#$%^&*()_-+={[}]|:;"<,>.?/';
//initially
let password = "";
let passwordLength = 10;
let checkCount = 0;
handleSlider();
//ste strength circle color to grey
setIndicator("#ccc");
//set passwordLength
function handleSlider() {
inputSlider.value = passwordLength;
lengthDisplay.innerText = passwordLength;
//or kuch bhi karna chahiye ? - HW
const min = inputSlider.min;
const max = inputSlider.max;
inputSlider.style.backgroundSize = ( (passwordLength - min)*100/(max - min)) + "% 100%"
}
function setIndicator(color) {
indicator.style.backgroundColor = color;
indicator.style.boxShadow = `0px 0px 12px 1px ${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() {
let hasUpper = false;
let hasLower = false;
let hasNum = false;
let hasSym = false;
if (uppercaseCheck.checked) hasUpper = true;
if (lowercaseCheck.checked) hasLower = true;
if (numbersCheck.checked) hasNum = true;
if (symbolsCheck.checked) hasSym = true;
if (hasUpper && hasLower && (hasNum || hasSym) && passwordLength >= 8) {
setIndicator("#0f0");
} else if (
(hasLower || hasUpper) &&
(hasNum || hasSym) &&
passwordLength >= 6
) {
setIndicator("#ff0");
} else {
setIndicator("#f00");
}
}
async function copyContent() {
try {
await navigator.clipboard.writeText(passwordDisplay.value);
copyMsg.innerText = "copied";
}
catch(e) {
copyMsg.innerText = "Failed";
}
//to make copy wala span visible
copyMsg.classList.add("active");
setTimeout( () => {
copyMsg.classList.remove("active");
},2000);
}
function shufflePassword(array) {
//Fisher Yates Method
for (let i = array.length - 1; i > 0; i--) {
//random J, find out using random function
const j = Math.floor(Math.random() * (i + 1));
//swap number at i index and j index
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();
});
//-----------------------------------------------------------------------------------------------------
// Selectors
window.addEventListener("load", () => {
const form = document.querySelector("#new-task-form");
const input = document.querySelector("#new-task-input");
const list_el = document.querySelector("#tasks");
// Load tasks from localStorage
function loadTasks() {
const tasks = JSON.parse(localStorage.getItem("tasks")) || [];
tasks.forEach((task) => {
addTaskToDOM(task.text, task.isReadOnly);
});
}
// Add task to DOM and localStorage
function addTaskToDOM(taskText, isReadOnly = true) {
const task_el = document.createElement("div");
task_el.classList.add("task");
const task_content_el = document.createElement("div");
task_content_el.classList.add("content");
task_el.appendChild(task_content_el);
const task_input_el = document.createElement("input");
task_input_el.classList.add("text");
task_input_el.type = "text";
task_input_el.value = taskText;
task_input_el.setAttribute("readonly", isReadOnly ? "readonly" : "");
task_content_el.appendChild(task_input_el);
const task_actions_el = document.createElement("div");
task_actions_el.classList.add("actions");
const task_edit_el = document.createElement("button");
task_edit_el.classList.add("edit");
task_edit_el.innerText = isReadOnly ? "Edit" : "Save";
const task_delete_el = document.createElement("button");
task_delete_el.classList.add("delete");
task_delete_el.innerText = "Delete";
task_actions_el.appendChild(task_edit_el);
task_actions_el.appendChild(task_delete_el);
task_el.appendChild(task_actions_el);
list_el.appendChild(task_el);
// Edit button event listener
task_edit_el.addEventListener("click", () => {
if (task_edit_el.innerText.toLowerCase() === "edit") {
task_edit_el.innerText = "Save";
task_input_el.removeAttribute("readonly");
task_input_el.focus();
} else {
task_edit_el.innerText = "Edit";
task_input_el.setAttribute("readonly", "readonly");
saveTasksToLocalStorage(); // Save tasks after editing
}
});
// Delete button event listener
task_delete_el.addEventListener("click", () => {
list_el.removeChild(task_el);
saveTasksToLocalStorage(); // Save tasks after deletion
});
}
// Save tasks to localStorage
function saveTasksToLocalStorage() {
const tasks = Array.from(document.querySelectorAll(".task")).map((task) => {
const text = task.querySelector(".text").value;
const isReadOnly = task.querySelector(".text").hasAttribute("readonly");
return { text, isReadOnly };
});
localStorage.setItem("tasks", JSON.stringify(tasks));
}
// Add new task event listener
form.addEventListener("submit", (e) => {
e.preventDefault();
const task = input.value.trim();
if (task === "") {
alert("Please enter a password before saving."); // Show an alert
return; // Don't add empty tasks
}
addTaskToDOM(task);
saveTasksToLocalStorage(); // Save new task
input.value = "";
});
// Load existing tasks on page load
loadTasks();
});