-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnote.js
79 lines (66 loc) · 1.45 KB
/
note.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
const fs = require('fs');
var fetchNotes = () => {
// Try catch to verify if the file exist in the system and convert to JSON OBJECT
try {
var notesString = fs.readFileSync('notes-data.json');
return JSON.parse(notesString);
} catch(e){
return [];
}
};
//SAVE Note to a file
var saveNotes = (notes) => {
fs.writeFileSync('notes-data.json',JSON.stringify(notes));
};
//Add note
var addNote = (title, body) =>
{
// create array of empty notes
var notes = fetchNotes ();
//OBJECT OF A note
var note ={
title,
body
};
// CHECk FOR DUPLICATE NOTES
var duplicateNotes = notes.filter((note) => note.title === title);
//SAVE Note to a file
if (duplicateNotes.length === 0)
{
notes.push(note);
saveNotes(notes);
return note;
}
};
// List all note
var getAll = () =>
{
return fetchNotes ();
};
// List note
var getNote = (title) =>
{
var notes = fetchNotes ();
var FilteredNotes = notes.filter((note) => note.title === title);
return FilteredNotes[0];
};
// remove a note
var removeNote = (title) =>
{
var notes = fetchNotes ();
var FilteredNotes = notes.filter((note) => note.title !== title);
saveNotes(FilteredNotes);
return notes.length !== FilteredNotes.length;
};
var logNote = (note) =>{
console.log("----");
console.log(`Title: ${note.title} `);
console.log(`Body: ${note.body} `);
};
module.exports = {
addNote,
getAll,
getNote,
removeNote,
logNote
};