-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.js
73 lines (64 loc) · 1.6 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
const fs = require('fs');
const chalk = require('chalk');
const log = console.log;
addNote = (title, description) => {
const notes = loadNotes();
const duplicate = notes.find(note => note.title === title);
if (!duplicate) {
notes.push({
title: title,
description: description
});
saveNotes(notes);
log(chalk.green('Note added successfully!'));
} else {
log(chalk.red('Title already taken'));
}
}
removeNote = (title) => {
const notes = loadNotes();
const notesKept = notes.filter(note => note.title !== title)
if (notes.length === notesKept.length + 1) {
saveNotes(notesKept);
log(chalk.green('Note deleted successfully'));
} else {
log(chalk.red('No such note found!'));
}
}
readNote = (title) => {
const notes = loadNotes();
const note = notes.find(note => note.title === title);
if (note) {
log(note);
} else {
log(chalk.red('No such note found!'));
}
}
listNotes = () => {
const notes = loadNotes();
if (notes.length !== 0) {
notes.forEach(note => {
log(note);
});
} else {
log(chalk.red('No notes available'));
}
}
loadNotes = () => {
let notes;
try {
notes = JSON.parse(fs.readFileSync('notes.json').toString());
} catch (e) {
notes = [];
}
return notes;
}
saveNotes = (notes) => {
fs.writeFileSync('notes.json', JSON.stringify(notes));
}
module.exports = {
addNote: addNote,
removeNote: removeNote,
readNote: readNote,
listNotes: listNotes
};