-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
435 lines (349 loc) · 13.9 KB
/
script.js
File metadata and controls
435 lines (349 loc) · 13.9 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
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
var run = "run";
showNotes(run);
// Function Start on pressing Add Note
let addBtn = document.getElementById("addBtn");
addBtn.addEventListener("click", function (e) {
let addTxt = document.getElementById("addTxt");
let addTitle = document.getElementById("addTitle");
let notes = localStorage.getItem("notes");
if (notes == null) {
notesObj = [];
} else {
notesObj = JSON.parse(notes);
}
let unstarred = "unstarred";
let starred = "starred";
let myObj = {
title: addTitle.value,
text: addTxt.value,
val: unstarred
}
if (addTitle.value == '' && addTxt.value == '') {
err_1();
}
else {
notesObj.push(myObj);
localStorage.setItem("notes", JSON.stringify(notesObj));
addTxt.value = "";
addTitle.value = "";
}
if (show_star.classList.contains('star-btn')) {
show_star.classList.toggle('star-btn');
}
showNotes(run);
});
// Function End
// Function to show elements from localStorage
function showNotes(fav) {
let notes = localStorage.getItem("notes");
if (notes == null) {
notesObj = [];
} else {
notesObj = JSON.parse(notes);
}
let html = "";
fav_1 = fav;
if (fav_1 == "run") {
var show_star = document.querySelector('.show-star');
show_star.classList.remove('star-btn');
notesObj.forEach(function (element, index) {
if (notesObj[index].val == "starred") {
if (element.title == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>Untitled Note</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else if (element.text == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text">--</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
}
} else {
if (element.title == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>Untitled Note</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else if (element.text == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card" aria-hidden="true"></i>
<p class="card-text">--</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
}
}
});
} else if (fav_1 == "stop") {
notesObj.forEach(function (element, index) {
if (notesObj[index].val == "starred") {
if (element.title == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>Untitled Note</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else if (element.text == '') {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text">--</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
} else {
html += `
<div class="noteCard mt-2 mx-2 mb-5 card card_scroll" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"><b>${element.title}</b></h5>
<i id="${index}"onclick="makeStar(this.id)" class="fa fa-star fa-lg card-star toggle-card star" aria-hidden="true"></i>
<p class="card-text"> ${element.text}</p>
<button id="${index}"onclick="deleteNote(this.id)" class="btn btn-outline-danger">Delete Note</button>
<button id="${index}"onclick="editNote(this.id)" class="btn btn-outline-danger">Edit Note</button>
</div>
</div>`;
}
}
else {
}
});
}
//Function End
let notesElm = document.getElementById("notes");
if (notesObj.length != 0) {
notesElm.innerHTML = html;
} else {
notesElm.innerHTML = `Nothing to show! Use "Add a Note" section above to add notes.`;
}
}
//Function End
// Function to delete a note
function deleteNote(index) {
let notes = localStorage.getItem("notes");
if (notes == null) {
notesObj = [];
} else {
notesObj = JSON.parse(notes);
}
notesObj.splice(index, 1);
localStorage.setItem("notes", JSON.stringify(notesObj));
let stop = "stop";
if (show_star.classList.contains('star-btn')) {
showNotes(stop);
} else {
showNotes(run);
}
}
//Function End
// Function to update notes
function editNote(index) {
let notes = localStorage.getItem("notes");
if (notes == null) {
notesObj = [];
} else {
notesObj = JSON.parse(notes);
}
let addTitle = document.getElementById("addTitle");
let addTxt = document.getElementById("addTxt");
addTitle.value = notesObj[index].title;
addTxt.value = notesObj[index].text;
notesObj.splice(index, 1);
localStorage.setItem("notes", JSON.stringify(notesObj));
var show_star = document.querySelector('.show-star');
show_star.classList.remove('star-btn');
showNotes(run);
}
// Function end
//Function to search Note by Title or by Text
let search = document.getElementById('searchTxt');
search.addEventListener("input", function () {
let inputVal = search.value.toLowerCase();
let noteCards = document.getElementsByClassName('noteCard');
Array.from(noteCards).forEach(function (element) {
let srch_tog = document.querySelector('#srch_1').classList.contains('active');
if (srch_tog) {
let cardTxt = element.getElementsByTagName("h5")[0].innerText.toLowerCase();
if (cardTxt.includes(inputVal)) {
element.style.display = "block";
}
else {
element.style.display = "none";
}
} else {
let cardTxt = element.getElementsByTagName("p")[0].innerText.toLowerCase();
if (cardTxt.includes(inputVal)) {
element.style.display = "block";
}
else {
element.style.display = "none";
}
}
})
})
//Function End
//Function to show Alert
function err_1() {
let htm = "";
let err_alert = document.getElementById("err_1");
htm += `
<div id="err" class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>Please</strong> Fill the input Fields
<i id="erbtn" class="fa fa-times fa-lg" aria-hidden="true"></i>
</div>`;
err_alert.innerHTML = htm;
//To close Alert
let er = document.getElementById('erbtn');
er.addEventListener('click', () => {
let htm_1 = "";
err_alert.innerHTML = htm_1;
})
setTimeout('auto_close_alert()', 3000);
}
//Function End
//Auto close Alert
function auto_close_alert() {
let err_alert = document.getElementById("err_1");
let htm_2 = "";
err_alert.innerHTML = htm_2;
}
//Function End
//Function for Typing Effect
var typed = new Typed('.typed', {
strings: [
"Welcome To <span style='color:red'>Notes App</span>^500",
"Add Your Notes Here..^500"
],
typeSpeed: 40,
backSpeed: 10,
loop: true
});
//Function End
//Function to star a card
var click = false;
function makeStar(index) {
let notes = localStorage.getItem("notes");
if (notes == null) {
notesObj = [];
} else {
notesObj = JSON.parse(notes);
}
let unstarred = "unstarred";
let starred = "starred";
let stop = "stop";
click = !click;
if (click) {
notesObj[index].val = starred;
localStorage.setItem("notes", JSON.stringify(notesObj));
} else {
notesObj[index].val = unstarred;
localStorage.setItem("notes", JSON.stringify(notesObj));
}
if (show_star.classList.contains('star-btn')) {
showNotes(stop);
} else {
showNotes(run);
}
}
//Function End
// Function to show all starred cards
let toggle_show = document.getElementById('toggle-show');
var show_star = document.querySelector('.show-star');
toggle_show.addEventListener('click', () => {
show_star.classList.toggle('star-btn');
let stop = "stop";
if (show_star.classList.contains('star-btn')) {
showNotes(stop);
} else {
showNotes(run);
}
})
//Function End
//Preloader
var loader = document.getElementById('loader');
var rem;
rem = setTimeout(function () {
loader.style.display = 'none';
}, 3000);
//Preoader End
// Function that swaps the stylesheet.
function changeTheme() {
let theme = document.getElementById("theme");
let lightTheme = "light-mode.css";
let darkTheme = "dark-mode.css";
// Checking what stylesheet the link tag has.
if (theme.getAttribute("href") == lightTheme) {
theme.href = darkTheme;
} else {
theme.href = lightTheme;
}
}
//Function End
// -----------------------------------------------------
//Scroll Effect
// const card_scroll = ScrollReveal({
// origin: 'bottom',
// distance: '80px',
// duration: 800,
// reset: true
// });
// card_scroll.reveal('.card_scroll');
// const container_scroll = ScrollReveal({
// origin: 'left',
// distance: '100px',
// duration: 1000,
// reset: true
// });
// container_scroll.reveal('.container_scroll');