-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.js
91 lines (74 loc) · 1.98 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
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
const fs = require('fs')
const { timeLog } = require('console')
const chalk = require('chalk')
const getNotes = () => 'Getting Notes..'
const addNotes = (title , body) => {
const notes = loadNotes()
// const duplicatenotes = notes.filter((note) => note.title === title )
const duplicatenote = notes.find((note) => note.title === title)
debugger
if (!duplicatenote )
{
notes.push({
title: title,
body : body
})
savenotes(notes)
console.log(chalk.green.inverse('New Notes Added'))
}
else
console.log('Same title name already exist !!')
}
const removeNote = (title)=> {
const notes = loadNotes()
const notesToKeep = notes.filter((note) => note.title !== title )
// console.log('NO NOTE FOUND')
if ( notes.length > notesToKeep.length)
{
console.log(chalk.green.inverse('note is removed'))
savenotes(notesToKeep)
}
else
{
console.log(chalk.red.inverse('Note Not found'))
}
}
const listnotes=() => {
console.log(chalk.yellow.inverse("Your Notes"))
const notes = loadNotes()
notes.forEach((note)=> {
console.log(note.title)
})
}
const readNotes = (title) => {
const notes = loadNotes()
const note = notes.find((note) => note.title === title)
if (note) {
console.log(chalk.italic.inverse(note.title))
console.log(note.body)
}
else{
console.log(chalk.yellow.inverse('Note not found!!'))
}
}
const savenotes = (notes) => {
const dataJSON = JSON.stringify(notes)
fs.writeFileSync("notes.json",dataJSON)
}
const loadNotes = ()=> {
try{
const data = fs.readFileSync('notes.json')
const databuffer = data.toString()
return JSON.parse(databuffer)
}
catch(e){
return []
}
}
module.exports = {
getNotes : getNotes,
addNotes : addNotes,
removeNote : removeNote,
listnotes : listnotes,
readNotes : readNotes
}