-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.js
91 lines (76 loc) · 2.18 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 os = require('os');
const fs = require('fs');
const path = require('path')
const chalk = require('chalk');
const addNote = (title, body) => {
const note = {
title: title,
body: body
}
const notes = loadNotes();
const duplicateNote = notes.find(note => note.title === title)
if(!duplicateNote){
notes.push(note)
saveNotes(notes)
console.log(chalk.green('Note added successfully'));
} else{
console.log(chalk.red('Title already taken'));
}
}
const removeNote = (title) => {
const notes = loadNotes()
const notesToKeep = notes.filter(note => note.title !== title)
if(notes > notesToKeep){
console.log(chalk.green('Note removed successfully'));
saveNotes(notesToKeep)
} else{
console.log(chalk.red('No Note found with this title'));
}
}
const listNotes = () => {
const notes = loadNotes()
console.log(chalk.blue('Your Notes : '));
notes.forEach(note => console.log(chalk.green(note.title)))
}
const readNote = (title) => {
const notes = loadNotes()
const note = notes.find(note => note.title === title)
if(note){
console.log(chalk.green(note.title));
console.log(note.body);
} else{
console.log(chalk.red('No note found with this title'));
}
}
const loadNotes = () => {
const homedir = os.homedir();
const folderName = path.join(homedir, 'notesapp')
try{
const dataBuffer = fs.readFileSync(path.join(folderName, 'notes.json'))
const noteJSON = dataBuffer.toString()
const notes = JSON.parse(noteJSON)
return notes
} catch (e) {
return []
}
}
const saveNotes = (notes) => {
const homedir = os.homedir();
const folderName = path.join(homedir, 'notesapp')
try{
if(!fs.existsSync(folderName)){
fs.mkdirSync(folderName)
console.log(chalk.green(`New file create at ${folderName}`));
}
} catch (err) {
console.error(err)
}
const notesJSON = JSON.stringify(notes)
fs.writeFileSync(path.join(folderName, 'notes.json'), notesJSON)
}
module.exports = {
addNote,
removeNote,
listNotes,
readNote
}