-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (33 loc) · 1.07 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
const contacts = require('./contacts');
const { program } = require('commander');
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();
const invokeAction = async ({ action, id, name, email, phone }) => {
switch (action) {
case "list":
const allContacts = await contacts.listContacts();
console.table(allContacts);
break;
case "get":
const oneContact = await contacts.getContactById(id);
console.log(oneContact);
break;
case "add":
const newContact = await contacts.addContact(name, email, phone);
console.log(newContact);
break;
case "remove":
const removeContact = await contacts.removeContact(id);
console.log(removeContact);
break;
default:
console.warn("\x1B[31m Unknown action type!");
}
}
invokeAction(argv);