-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotesController.js
72 lines (63 loc) · 2.05 KB
/
notesController.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
const { default: chalk } = require('chalk')
const fs = require('fs')
class NotesController {
constructor(fileName) {
this.fileName = fileName + '.json'
this.notes = {}
}
dumpJson() {
fs.writeFileSync(this.fileName, JSON.stringify(this.notes))
}
fetchJSON() {
try {
this.notes = JSON.parse(fs.readFileSync(this.fileName).toString())
} catch (error) {
this.notes = { data: [] }
}
}
getNotes() {
this.fetchJSON()
return this.toString()
}
findNote(title) {
this.fetchJSON()
let note = this.notes.data.find(note => note.title === title)
if (note)
return `\n${chalk.blue('Title')}: ${note.title}\n${chalk.blue('Body')}: ${note.body}\n`
else
return chalk.red(`can't find a note with this title`)
}
toString = () => {
this.fetchJSON()
if (this.notes.data.length == 0) {
return 'No notes found...'
}
else {
let notes = ''
this.notes.data.forEach(note => {
notes += `\n${chalk.blue('Title')}: ${note.title}\n${chalk.blue('Body')}: ${note.body}\n`
});
return notes
}
}
addNote(title, body) {
this.fetchJSON()
let duplicateNote = this.notes.data.find(note => note.title == title)
if (!duplicateNote) {
this.notes.data.push({ title, body })
this.dumpJson()
console.log(chalk.bgGreen('Success: '), chalk.green('Note have been added'))
}
else {
console.log(chalk.bgRed('ERROR: '), chalk.red('this title already exist'))
}
}
removeNote(title) {
this.fetchJSON()
let notesCount = this.notes.data.length
this.notes.data = this.notes.data.filter(note => note.title !== title)
this.dumpJson()
return notesCount === this.notes.data.length ? chalk.red('title not found') : chalk.green('note deleted successfully')
}
}
module.exports = NotesController