forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes-functions.js
117 lines (102 loc) · 3.34 KB
/
notes-functions.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
'use strict'
// Read exisiting notes from local storage
const getSavedNotes = () => {
const notesJSON = localStorage.getItem('notes');
try{
return notesJSON ? JSON.parse(notesJSON) : [];
} catch (e){
return [];
}
}
// Save notes to localStorage
const saveNotes = (notes) => {
localStorage.setItem('notes', JSON.stringify(notes));
}
//remove notes by id
const removeNote = (id) => {
const index = notes.findIndex((note) => note.id === id)
if (index > -1) {
notes.splice(index,1);
}
}
// Generate the DOM structure for a note
const generateNoteDOM = (note) => {
const noteEl = document.createElement('a');
const textEl = document.createElement('p');
const statusEl = document.createElement('p')
// Setup the note title text
if (note.title.length > 0){
textEl.textContent = note.title;
} else {
textEl.textContent = 'Unnamed note';
}
textEl.classList.add('list-item__title')
noteEl.appendChild(textEl);
//Setup the link
noteEl.setAttribute('href', `./edit.html#${note.id}`)
noteEl.classList.add('list-item')
//Setup the status message
statusEl.textContent = generateLastEdited(note.updatedAt)
statusEl.classList.add('list-item__subtitle')
noteEl.appendChild(statusEl)
return noteEl;
}
const sortNotes = (notes, sortBy) => {
if (sortBy === 'byEdited'){
return notes.sort((a,b) => {
if (a.updatedAt > b.updatedAt){
return -1;
} else if (a.updatedAt < b.updatedAt){
return 1;
} else {
return 0;
}
})
} else if (sortBy === 'byCreated') {
return notes.sort( (a,b) => {
if (a.createdAt > b.createdAt){
return -1;
} else if (a.createdAt < b.createdAt){
return 1;
} else {
return 0;
}
})
} else if (sortBy === 'alphabetical'){
return notes.sort( (a,b) => {
if (a.title.toLowerCase() < b.title.toLowerCase()){
return -1;
} else if (a.title.toLowerCase() > b.title.toLowerCase()){
return 1;
} else {
return 0;
}
})
} else {
return notes;
}
}
// Render application notes
const renderNotes = (notes, filters) => {
const notesEl = document.querySelector('#notes')
notes = sortNotes(notes, filters.sortBy);
const filteredNotes = notes.filter( (note) => {
const title = note.title.toLowerCase();
const filter = filters.searchText.toLowerCase();
return title.includes(filter) // || body.includes(filter);
})
notesEl.innerHTML = '';
if (filteredNotes.length > 0){
filteredNotes.forEach( (note) => {
const p = generateNoteDOM(note);
notesEl.appendChild(p);
})
} else {
const emptyMessage = document.createElement('p')
emptyMessage.textContent = 'No notes to show'
emptyMessage.classList.add('empty-message')
notesEl.appendChild(emptyMessage)
}
};
// Generate the last edited message
const generateLastEdited = (timestamp) => `Last edited ${moment(timestamp).fromNow()}`;