-
-
Notifications
You must be signed in to change notification settings - Fork 383
/
index.js
76 lines (58 loc) · 1.29 KB
/
index.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
#!/usr/bin/env node
'use strict';
const taskbook = require('./src/taskbook');
const taskbookCLI = (input, flags) => {
if (flags.archive) {
return taskbook.displayArchive();
}
if (flags.task) {
return taskbook.createTask(input);
}
if (flags.restore) {
return taskbook.restoreItems(input);
}
if (flags.note) {
return taskbook.createNote(input);
}
if (flags.delete) {
return taskbook.deleteItems(input);
}
if (flags.check) {
return taskbook.checkTasks(input);
}
if (flags.begin) {
return taskbook.beginTasks(input);
}
if (flags.star) {
return taskbook.starItems(input);
}
if (flags.priority) {
return taskbook.updatePriority(input);
}
if (flags.copy) {
return taskbook.copyToClipboard(input);
}
if (flags.timeline) {
taskbook.displayByDate();
return taskbook.displayStats();
}
if (flags.find) {
return taskbook.findItems(input);
}
if (flags.list) {
taskbook.listByAttributes(input);
return taskbook.displayStats();
}
if (flags.edit) {
return taskbook.editDescription(input);
}
if (flags.move) {
return taskbook.moveBoards(input);
}
if (flags.clear) {
return taskbook.clear();
}
taskbook.displayByBoard();
return taskbook.displayStats();
};
module.exports = taskbookCLI;