-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathscript.js
More file actions
602 lines (499 loc) · 19.9 KB
/
script.js
File metadata and controls
602 lines (499 loc) · 19.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
const noteInput = document.getElementById("noteInput");
const addNoteBtn = document.getElementById("addNoteBtn");
const notesGrid = document.getElementById("notesGrid");
const searchInput = document.getElementById("searchInput");
const trashGrid = document.getElementById("trashGrid");
const darkModeBtn = document.getElementById("darkModeBtn");
const labelCheckboxes = document.querySelectorAll(".label-checkbox");
// Folder Elements
const newFolderBtn = document.getElementById("newFolderBtn");
const newFolderModal = document.getElementById("newFolderModal");
const closeFolderModal = document.getElementById("closeFolderModal");
const folderNameInput = document.getElementById("folderNameInput");
const createFolderBtn = document.getElementById("createFolderBtn");
const customFoldersList = document.getElementById("customFoldersList");
const folderSelect = document.getElementById("folderSelect");
let trash = JSON.parse(localStorage.getItem("ultimateTrash")) || [];
let notes = JSON.parse(localStorage.getItem("ultimateNotes")) || [];
let folders = JSON.parse(localStorage.getItem("noteFolders")) || [];
let currentFilter = "all"; // Track current category/folder filter
function showEmptyState(container, message) {
container.innerHTML = `
<div class="empty-state">
<div class="empty-icon">📝</div>
<h3>No notes yet</h3>
<p>${message}</p>
<button id="emptyAddBtn">+ Add Note</button>
</div>
`;
const btn = document.getElementById("emptyAddBtn");
if (btn) {
btn.addEventListener("click", () => {
noteInput.focus();
});
}
}
function getSelectedLabels() {
const selected = [];
labelCheckboxes.forEach(checkbox => {
if (checkbox.checked) {
selected.push(checkbox.value);
}
});
return selected;
}
function filterNotesByCategory(category) {
currentFilter = category;
if (category === "all") {
renderNotes(searchInput.value);
} else {
const filtered = notes.filter(note =>
(note.labels && note.labels.includes(category)) ||
(note.folder === category)
);
// Create a temporary filtered display
notesGrid.innerHTML = "";
if (filtered.length === 0) {
showEmptyState(
notesGrid,
`No ${category} notes found. Start by adding your first note!`
);
return;
}
filtered.forEach((note, index) => {
const originalIndex = notes.findIndex(n => n.id === note.id);
const card = document.createElement("div");
card.className = "note-card";
if (note.labels && note.labels.length > 0) {
card.setAttribute('data-labels', note.labels.join(' '));
const labelsDiv = document.createElement("div");
labelsDiv.className = "note-labels";
note.labels.forEach(label => {
const labelSpan = document.createElement("span");
labelSpan.className = `note-label ${label.toLowerCase()}`;
labelSpan.textContent = label;
labelsDiv.appendChild(labelSpan);
});
card.appendChild(labelsDiv);
}
const content = document.createElement("p");
content.textContent = note.text;
const actions = document.createElement("div");
actions.className = "card-actions";
const editBtn = document.createElement("button");
editBtn.textContent = "Edit";
editBtn.className = "edit-btn";
editBtn.onclick = () => editNote(originalIndex);
const deleteBtn = document.createElement("button");
deleteBtn.textContent = "Delete";
deleteBtn.className = "delete-btn";
deleteBtn.onclick = () => deleteNote(originalIndex);
actions.appendChild(editBtn);
actions.appendChild(deleteBtn);
card.appendChild(content);
card.appendChild(actions);
notesGrid.appendChild(card);
});
}
// Update active state in sidebar
document.querySelectorAll('.sidebar li').forEach(li => {
li.classList.remove('active');
});
// Check if it's a built-in category or a custom folder
const builtInNav = document.getElementById(`nav${category}`);
if (builtInNav) {
builtInNav.classList.add('active');
} else {
const customNavs = document.querySelectorAll('.custom-folder-item');
customNavs.forEach(nav => {
if (nav.dataset.folder === category) nav.classList.add('active');
});
}
}
function saveNotes() {
localStorage.setItem("notestackNotes", JSON.stringify(notes));
}
// Migrate old notes to new format
notes = notes.map(note => {
if (typeof note === 'string') {
return {
id: Date.now() + Math.random(),
text: note,
labels: [],
folder: ""
};
}
// Set empty folder if undefined for backward compatibility
if (note.folder === undefined) note.folder = "";
return note;
});
saveNotes();
function saveFolders() {
localStorage.setItem("noteFolders", JSON.stringify(folders));
}
function saveTrash() {
localStorage.setItem("ultimateTrash", JSON.stringify(trash));
}
function renderNotes(filter = "") {
// If we're in a category view, don't override with search
if (currentFilter !== "all") {
filterNotesByCategory(currentFilter);
return;
}
notesGrid.innerHTML = "";
let filteredNotes = notes;
if (filter.startsWith('#')) {
const labelFilter = filter.substring(1).toLowerCase();
filteredNotes = notes.filter(note =>
note.labels && note.labels.some(label => label.toLowerCase().includes(labelFilter))
);
} else {
filteredNotes = notes.filter(note =>
note.text.toLowerCase().includes(filter.toLowerCase())
);
}
if (filteredNotes.length === 0 && filter.trim() !== "") {
showEmptyState(
notesGrid,
`No notes found matching "${filter}". Try a different search or add a new note.`
);
return;
}
filteredNotes.forEach((note, index) => {
const originalIndex = notes.findIndex(n => n.text === note.text && n.id === note.id);
const card = document.createElement("div");
card.className = "note-card";
if (note.labels && note.labels.length > 0) {
card.setAttribute('data-labels', note.labels.join(' '));
const labelsDiv = document.createElement("div");
labelsDiv.className = "note-labels";
note.labels.forEach(label => {
const labelSpan = document.createElement("span");
labelSpan.className = `note-label ${label.toLowerCase()}`;
labelSpan.textContent = label;
labelsDiv.appendChild(labelSpan);
});
card.appendChild(labelsDiv);
}
const content = document.createElement("p");
content.textContent = note.text;
const actions = document.createElement("div");
actions.className = "card-actions";
const editBtn = document.createElement("button");
editBtn.textContent = "Edit";
editBtn.className = "edit-btn";
editBtn.onclick = () => editNote(originalIndex);
const deleteBtn = document.createElement("button");
deleteBtn.textContent = "Delete";
deleteBtn.className = "delete-btn";
deleteBtn.onclick = () => deleteNote(originalIndex);
actions.appendChild(editBtn);
actions.appendChild(deleteBtn);
card.appendChild(content);
card.appendChild(actions);
notesGrid.appendChild(card);
});
}
function addNote() {
const text = noteInput.value.trim();
if (!text) return;
const selectedLabels = getSelectedLabels();
const selectedFolder = folderSelect.value;
notes.push({
id: Date.now(),
text: text,
labels: selectedLabels,
folder: selectedFolder
});
noteInput.value = "";
folderSelect.value = "";
labelCheckboxes.forEach(cb => cb.checked = false);
saveNotes();
renderNotes(searchInput.value);
}
function deleteNote(index) {
// Store the entire note object, not just the text
trash.push(notes[index]);
notes.splice(index, 1);
saveNotes();
saveTrash();
// Re-render based on current view
if (currentFilter !== "all") {
filterNotesByCategory(currentFilter);
} else {
renderNotes(searchInput.value);
}
}
function editNote(index) {
const updated = prompt("Edit note:", notes[index].text);
if (updated !== null && updated.trim() !== "") {
notes[index].text = updated.trim();
saveNotes();
renderNotes(searchInput.value);
}
}
addNoteBtn.addEventListener("click", addNote);
searchInput.addEventListener("input", () => {
if (currentFilter !== "all") {
// If in category view, search within that category
const filtered = notes.filter(note =>
note.labels && note.labels.includes(currentFilter) &&
note.text.toLowerCase().includes(searchInput.value.toLowerCase())
);
notesGrid.innerHTML = "";
if (filtered.length === 0) {
notesGrid.innerHTML = `<p style="text-align:center; margin-top:20px; color:#777;">
No ${currentFilter} notes found matching "${searchInput.value}"
</p>`;
return;
}
filtered.forEach((note, index) => {
const originalIndex = notes.findIndex(n => n.id === note.id);
const card = document.createElement("div");
card.className = "note-card";
if (note.labels && note.labels.length > 0) {
card.setAttribute('data-labels', note.labels.join(' '));
const labelsDiv = document.createElement("div");
labelsDiv.className = "note-labels";
note.labels.forEach(label => {
const labelSpan = document.createElement("span");
labelSpan.className = `note-label ${label.toLowerCase()}`;
labelSpan.textContent = label;
labelsDiv.appendChild(labelSpan);
});
card.appendChild(labelsDiv);
}
const content = document.createElement("p");
content.textContent = note.text;
const actions = document.createElement("div");
actions.className = "card-actions";
const editBtn = document.createElement("button");
editBtn.textContent = "Edit";
editBtn.className = "edit-btn";
editBtn.onclick = () => editNote(originalIndex);
const deleteBtn = document.createElement("button");
deleteBtn.textContent = "Delete";
deleteBtn.className = "delete-btn";
deleteBtn.onclick = () => deleteNote(originalIndex);
actions.appendChild(editBtn);
actions.appendChild(deleteBtn);
card.appendChild(content);
card.appendChild(actions);
notesGrid.appendChild(card);
});
} else {
renderNotes(searchInput.value);
}
});
function restoreNote(index) {
notes.push(trash[index]);
trash.splice(index, 1);
saveNotes();
saveTrash();
// If we're in trash view, stay in trash view
if (document.getElementById("trashView").style.display === "block") {
renderTrash();
} else {
// Otherwise update notes view based on current filter
if (currentFilter !== "all") {
filterNotesByCategory(currentFilter);
} else {
renderNotes(searchInput.value);
}
}
}
function permanentlyDelete(index) {
if (!confirm("Permanently delete this note? This cannot be undone.")) return;
trash.splice(index, 1);
saveTrash();
renderTrash();
}
function renderTrash() {
if (!trashGrid) return;
trashGrid.innerHTML = "";
if (trash.length === 0) {
trashGrid.innerHTML = `<p style="text-align:center; margin-top:20px; color:#777;">Trash is empty</p>`;
return;
}
trash.forEach((note, index) => {
const card = document.createElement("div");
card.className = "note-card";
// Handle both old string format and new object format
const noteText = typeof note === 'string' ? note : note.text;
const noteLabels = typeof note === 'object' && note.labels ? note.labels : [];
// Show labels if they exist
if (noteLabels.length > 0) {
const labelsDiv = document.createElement("div");
labelsDiv.className = "note-labels";
noteLabels.forEach(label => {
const labelSpan = document.createElement("span");
labelSpan.className = `note-label ${label.toLowerCase()}`;
labelSpan.textContent = label;
labelsDiv.appendChild(labelSpan);
});
card.appendChild(labelsDiv);
}
const content = document.createElement("p");
content.textContent = noteText;
const actions = document.createElement("div");
actions.className = "card-actions";
const restoreBtn = document.createElement("button");
restoreBtn.textContent = "Restore";
restoreBtn.className = "edit-btn";
restoreBtn.onclick = () => restoreNote(index);
const permDeleteBtn = document.createElement("button");
permDeleteBtn.textContent = "Delete Forever";
permDeleteBtn.className = "delete-btn";
permDeleteBtn.onclick = () => permanentlyDelete(index);
actions.appendChild(restoreBtn);
actions.appendChild(permDeleteBtn);
card.appendChild(content);
card.appendChild(actions);
trashGrid.appendChild(card);
});
}
if (localStorage.getItem("theme") === "dark") {
document.body.classList.add("dark-mode");
darkModeBtn.textContent = "☀️ Light Mode";
}
darkModeBtn.addEventListener("click", () => {
document.body.classList.toggle("dark-mode");
const isDark = document.body.classList.contains("dark-mode");
localStorage.setItem("theme", isDark ? "dark" : "light");
darkModeBtn.textContent = isDark ? "☀️ Light Mode" : "🌙 Dark Mode";
});
renderNotes();
renderTrash();
// Sidebar navigation
document.getElementById("navNotes").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
document.getElementById("navNotes").classList.add("active");
document.getElementById("navTrash").classList.remove("active");
});
document.getElementById("navTrash").addEventListener("click", () => {
document.getElementById("notesView").style.display = "none";
document.getElementById("trashView").style.display = "block";
document.getElementById("navTrash").classList.add("active");
document.getElementById("navNotes").classList.remove("active");
renderTrash();
});
// Category filter event listeners
document.getElementById("navImportant").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory("Important");
});
document.getElementById("navWork").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory("Work");
});
document.getElementById("navPersonal").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory("Personal");
});
document.getElementById("navIdeas").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory("Ideas");
});
// Update existing All Notes navigation
document.getElementById("navNotes").addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory("all");
});
// Update Trash navigation
document.getElementById("navTrash").addEventListener("click", () => {
document.getElementById("notesView").style.display = "none";
document.getElementById("trashView").style.display = "block";
document.getElementById("navTrash").classList.add("active");
document.getElementById("navNotes").classList.remove("active");
document.getElementById("navImportant").classList.remove("active");
document.getElementById("navWork").classList.remove("active");
document.getElementById("navPersonal").classList.remove("active");
document.getElementById("navIdeas").classList.remove("active");
renderTrash();
});
// --- Folder Management ---
function renderFolders() {
customFoldersList.innerHTML = "";
folderSelect.innerHTML = '<option value="">No Folder</option>';
folders.forEach(folder => {
// Sidebar list item
const li = document.createElement("li");
li.className = "custom-folder-item";
li.dataset.folder = folder;
li.innerHTML = `📁 ${folder}`;
li.addEventListener("click", () => {
document.getElementById("notesView").style.display = "block";
document.getElementById("trashView").style.display = "none";
filterNotesByCategory(folder);
});
customFoldersList.appendChild(li);
// Select dropdown option
const option = document.createElement("option");
option.value = folder;
option.textContent = folder;
folderSelect.appendChild(option);
});
}
newFolderBtn.addEventListener("click", () => {
newFolderModal.style.display = "flex";
folderNameInput.focus();
});
closeFolderModal.addEventListener("click", () => {
newFolderModal.style.display = "none";
});
createFolderBtn.addEventListener("click", () => {
const name = folderNameInput.value.trim();
if (!name) return;
if (folders.includes(name)) {
alert("A folder with this name already exists.");
return;
}
folders.push(name);
saveFolders();
renderFolders();
folderNameInput.value = "";
newFolderModal.style.display = "none";
});
/* ===========================
KEYBOARD SHORTCUTS (SAFE)
=========================== */
document.addEventListener("keydown", (e) => {
// ALT + N → Focus new note
if (e.altKey && e.key.toLowerCase() === "n") {
e.preventDefault();
noteInput.focus();
return;
}
// ALT + S → Focus search
if (e.altKey && e.key.toLowerCase() === "s") {
e.preventDefault();
searchInput.focus();
return;
}
// ALT + D → Toggle dark mode
if (e.altKey && e.key.toLowerCase() === "d") {
e.preventDefault();
darkModeBtn.click();
return;
}
// ALT + T → Open Trash
if (e.altKey && e.key.toLowerCase() === "t") {
e.preventDefault();
document.getElementById("navTrash").click();
return;
}
// ESC → Clear search
if (e.key === "Escape") {
searchInput.value = "";
renderNotes();
return;
}
});
// Initial Render
renderFolders();