-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengine.js
More file actions
226 lines (168 loc) · 6.08 KB
/
Copy pathengine.js
File metadata and controls
226 lines (168 loc) · 6.08 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
console.log("Welcome to NoteItDown");
// if we already have some notes in our array , then show them
displayNotes();
/*
If Save Note button is pressed, Then Add the Content of TextArea to localStorage
*/
let saveNoteBtn = document.getElementById("saveBtn");
saveNoteBtn.addEventListener("click", saveNoteFunction);
//The function which will be called when SaveNote Button is pressed
function saveNoteFunction(e) {
console.log("button clicked");
let addHeading = document.getElementById("addHeading");
// console.log(addHeading);
// Fetching and displaying notes from localStorage
if (addHeading.value == "") {
let notificationBarHtml = `
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>Heading </strong>field cannot be empty!
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
`;
let notification = document.getElementById("notification");
notification.innerHTML = notificationBarHtml;
}
else if (document.getElementById("addTxt").value == "") {
let notificationBarHtml = `
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>Notes </strong>field cannot be empty!
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
`;
let notification = document.getElementById("notification");
notification.innerHTML = notificationBarHtml;
}
else {
let title = localStorage.getItem("Title");
let titleArray;
if (title == null) {
titleArray = [];
}
else {
titleArray = JSON.parse(title);
}
titleArray.push(addHeading.value);
localStorage.setItem("Title", JSON.stringify(titleArray));
// notification
let notificationBarHtml = `
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>"${addHeading.value}"</strong>added successfully!
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
`;
let notification = document.getElementById("notification");
notification.innerHTML = notificationBarHtml;
addHeading.value = " ";
let addTxt = document.getElementById("addTxt");
// console.log(addTxt);
// Fetching and displaying notes from localStorage
let notes = localStorage.getItem("notes");
let notesArray;
if (notes == null) {
notesArray = [];
}
else {
notesArray = JSON.parse(notes);
}
notesArray.push(addTxt.value);
localStorage.setItem("notes", JSON.stringify(notesArray));
addTxt.value = " ";
//displaying the notes
displayNotes();
}
}
//function for reading data from local storage and displaying
function displayNotes() {
//fetching heading from local storage
let title = localStorage.getItem("Title");
let titleArray;
if (title == null) {
titleArray = [];
}
else {
titleArray = JSON.parse(title);
}
//fetching notes from local storage
let notes = localStorage.getItem("notes");
let notesArray;
if (notes == null) {
notesArray = [];
}
else {
notesArray = JSON.parse(notes);
}
let html = "";
for (var i = 0; i < notesArray.length; i++) {
html += `
<div class="card my-2 mx-2 notesCard" style="width: max-content">
<div class="card-body">
<h5 class="card-title">${titleArray[i]}</h5>
<pre class="card-text">${notesArray[i]}</pre>
<button class="btn btn-primary" onclick="deleteNote(${i})" id="${i}">
Delete
</button>
</div>
</div>
`;
}
let noteCardParent = document.getElementById("notes");
if (notesArray.length != 0) {
noteCardParent.innerHTML = html;
}
else {
noteCardParent.innerHTML = `<div class="alert alert-primary" role="alert">
Nothing to show ! Refer Above Section to Save Notes Here.
</div>`;
}
}
//function for deleting a note
function deleteNote(index) {
//fetching heading from local storage
let title = localStorage.getItem("Title");
let titleArray;
if (title == null) {
titleArray = [];
}
else {
titleArray = JSON.parse(title);
}
titleArray.splice(index, 1);
localStorage.setItem("Title", JSON.stringify(titleArray));
// fetching notes from local storage
let notes = localStorage.getItem("notes");
let notesArray;
if (notes == null) {
notesArray = [];
}
else {
notesArray = JSON.parse(notes);
}
notesArray.splice(index, 1);
localStorage.setItem("notes", JSON.stringify(notesArray));
displayNotes();
let notificationBarHtml = `
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Note Deleted Successfully</strong>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
`;
let notification = document.getElementById("notification");
notification.innerHTML = notificationBarHtml;
}
/*This is search Functionality*/
let search = document.getElementById("searchTxt");
search.addEventListener("input", searchFunction);
function searchFunction() {
// console.log("Input Event Fired");
let inputValue = search.value;
let noteCards = document.getElementsByClassName("notesCard");
// console.log(noteCards);
Array.from(noteCards).forEach(function (element) {
if (element.innerHTML.toLowerCase().includes(inputValue)) {
element.style.display = "block";
}
else {
element.style.display = "none";
}
})
}