-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
248 lines (220 loc) Β· 7.11 KB
/
cli.js
File metadata and controls
248 lines (220 loc) Β· 7.11 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#!/usr/bin/node
// install any missing modules
const program = require('commander')
const { prompt } = require('inquirer')
const { newToDoPrompts } = require('./prompts')
const { getToDos, saveToDos } = require('./utils')
const chalk = require('chalk')
// todo check for file and create it if it doesn't exist
let today = new Date().toISOString().slice(0, 10)
function checkForNullToDos(toDos) {
if (toDos.length === 0) {
console.log(chalk.red.bold('\nWarning....\n'))
console.log('π€ There are no saved tasks\n')
console.log('β
Add a task')
process.exit()
}
}
function capitalizePresentationLayer(str) {
//? split at space character...
const array = str.split(" ");
//? Cap index 0 of each element in the array
for (var i = 0; i < array.length; i++) {
array[i] = array[i].charAt(0).toUpperCase() + array[i].slice(1);
}
//? join with blank space
return array.join(" ");
}
//! Program info
program
.version('0.0.5')
.description('to-do-cli')
//! the New command
program
.command('new')
.alias('n')
.description('Add a new task to the list')
.action(() => {
// let name = process.argv.join('');
let name = process.argv.splice(3, process.argv.length - 1).join(' ')
if (name) {
prompt({name: 'notes', message: 'Notes'})
.then(({notes}) => {
//? get the toDos
const toDos = getToDos()
//* Lets create our new Object
const newToDo = {
"name": capitalizePresentationLayer(name),
"dateAdded": today,
"notes": notes,
"completed": false,
"dateCompleted": null
}
//? append it to our toDos
toDos.push(newToDo)
//? overwrite the file in the file system
saveToDos(toDos)
console.log('\n' + chalk.green.bold.inverse(` Added: ${name} `))
process.exit()
})
} else {
prompt(newToDoPrompts)
.then(({toDo, notes}) => {
//? get the toDos
const toDos = getToDos()
//* Lets create our new Object
const newToDo = {
"name": capitalizePresentationLayer(toDo),
"dateAdded": today,
"notes": notes,
"completed": false,
"dateCompleted": null
}
//? append it to our toDos
toDos.push(newToDo)
//? overwrite the file in the file system
saveToDos(toDos)
console.log('\n' + chalk.green.bold.inverse(` Added: ${toDo} `))
})
}
})
//! Complete a task command
program
.command('markComplete')
.alias('mc')
.description('Mark a task as completed! β
')
.action(() => {
const AllToDos = getToDos()
const toDos = AllToDos.filter(todo => todo.completed !== true)
if (toDos.length === 0) {
console.log(chalk.red.bold('\nWarning....\n'))
console.log('π€ There are no uncompleted tasks\n')
console.log('β
Add a task')
process.exit()
}
prompt([
{
type: 'list',
name: 'selected',
message: 'Mark a task as completed! β
',
choices: toDos.map(todo => todo.name)
}
])
.then(({selected}) => {
//? get the todo by name
let justMyToDo = toDos.filter(todo => todo.name === selected)
justMyToDo = justMyToDo[0];
const updatedToDoToComplete = {
name: justMyToDo.name,
dateAdded: justMyToDo.dateAdded,
notes: justMyToDo.notes,
completed: true,
dateCompleted: today
}
//? updated the completed and dateCompleted
const updatedToDoList = AllToDos.filter(todo => todo.name != selected);
updatedToDoList.push(updatedToDoToComplete)
saveToDos(updatedToDoList);
console.log(chalk.green(`${selected}\nMarked as complete β
`));
console.log('')
})
})
//! the list All Command
program
.command('listAll')
.alias('la')
.description('List all the tasks (open & completed)')
.action(() => {
const toDos = getToDos()
checkForNullToDos(toDos)
prompt([
{
type: 'list',
name: 'selected',
message: 'Select a task to view π',
choices: toDos.map(todo => todo.name)
}
])
.then(({selected}) => {
const singleToDo = toDos.filter(todo => todo.name == selected);
const theToDoWeCareAbout = singleToDo[0];
const newName = capitalizePresentationLayer(theToDoWeCareAbout.name)
console.log('')
console.log('Name: ' + chalk.magenta(newName))
console.log('Date Added: ' + chalk.magenta(theToDoWeCareAbout.dateAdded))
console.log('Notes: ' + chalk.magenta(theToDoWeCareAbout.notes))
if (theToDoWeCareAbout.completed === false) {
console.log('Completed: β')
} else {
console.log('Completed: β
')
console.log('Date Completed: ' + chalk.magenta(theToDoWeCareAbout.dateCompleted))
console.log('')
}
})
})
//! List completed Tasks
program
.command('listCompleted')
.alias('lc')
.description('List all of the completed tasks β
')
.action(() => {
let toDos = getToDos()
toDos = toDos.filter(todo => todo.completed === true)
checkForNullToDos(toDos)
prompt([
{
type: 'list',
name: 'selected',
message: 'Select a completed task to view π',
choices: toDos.map(todo => todo.name)
}
])
.then(({selected}) => {
const singleToDo = toDos.filter(todo => todo.name == selected);
const theToDoWeCareAbout = singleToDo[0];
const newName = capitalizePresentationLayer(theToDoWeCareAbout.name)
console.log('')
console.log('Name: ' + chalk.magenta(newName))
console.log('Date Added: ' + chalk.magenta(theToDoWeCareAbout.dateAdded))
console.log('Notes: ' + chalk.magenta(theToDoWeCareAbout.notes))
if (theToDoWeCareAbout.completed === false) {
console.log('Completed: β')
} else {
console.log('Completed: β
')
console.log('Date Completed: ' + chalk.magenta(theToDoWeCareAbout.dateCompleted))
console.log('')
}
})
})
//! List All Open Tasks
program
.command('listOpen')
.alias('lo')
.description('List all the open tasks β')
.action(() => {
let toDos = getToDos()
toDos = toDos.filter(todo => todo.completed !== true)
checkForNullToDos(toDos)
prompt([
{
type: 'list',
name: 'selected',
message: 'Select an open task to view π',
choices: toDos.map(todo => todo.name)
}
])
.then(({selected}) => {
const singleToDo = toDos.filter(todo => todo.name == selected);
const theToDoWeCareAbout = singleToDo[0];
const newName = capitalizePresentationLayer(theToDoWeCareAbout.name)
console.log('\nName: ' + chalk.magenta(newName))
console.log('Date Added: ' + chalk.magenta(theToDoWeCareAbout.dateAdded))
console.log('Notes: ' + chalk.magenta(theToDoWeCareAbout.notes))
if (theToDoWeCareAbout.completed == false) {
console.log('Completed: β')
} else {
console.log('Completed: β
\n')
}
})
})
program.parse(process.argv)