-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.js
56 lines (49 loc) · 1.16 KB
/
notes.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
const fsModule = require('fs');
// Function to fetch notes
var fetchNotes = () => {
try {
let notesString = fsModule.readFileSync('./notes.json');
return JSON.parse(notesString);
} catch(e) {
return [];
}
}
// Function to save notes
var saveNotes = (notes) => {
fsModule.writeFileSync('./notes.json', notes, function(err){
if(err) {
console.log(err);
}
});
}
var addNote = (title, body) => {
let notes = fetchNotes();
let note = {
title,
body
}
var duplicateNotes = notes.filter((note) => note.title === title);
if(duplicateNotes.length === 0) {
notes.push(note);
notesString = JSON.stringify(notes);
saveNotes(notesString);
return note;
}
}
var deleteNote = (title) => {
var notes = fetchNotes();
var filterNotes = notes.filter((note) => note.title !== title);
saveNotes(JSON.stringify(filterNotes));
return notes.length !== filterNotes.length
}
var listNotes = () => {
var notes = fetchNotes();
if(notes.length > 0) {
return notes;
}
}
module.exports = {
addNote,
deleteNote,
listNotes
}