-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (30 loc) · 839 Bytes
/
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
const tasks = require('./contacts');
const { Command } = require('commander');
const program = new Command();
program
.option('-a, --action <type>', 'choose action')
.option('-i, --id <type>', 'user id')
.option('-n, --name <type>', 'user name')
.option('-e, --email <type>', 'user email')
.option('-p, --phone <type>', 'user phone');
program.parse(process.argv);
const argv = program.opts();
function invokeAction({ action, id, name, email, phone }) {
switch (action) {
case 'list':
tasks.listContacts();
break;
case 'get':
tasks.getContactById(id);
break;
case 'add':
tasks.addContact(name, email, phone);
break;
case 'remove':
tasks.removeContact(id);
break;
default:
console.warn('\x1B[31m Unknown action type!');
}
}
invokeAction(argv);