-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
44 lines (34 loc) · 1.18 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
import { Command } from "commander";
import contacts from "./contacts.js";
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();
async function invokeAction({ action, id, name, email, phone }) {
switch (action) {
case "list":
const list = await contacts.listContacts();
console.log(action, list);
break;
case "get":
const result = await contacts.getContactById(id);
console.log(action, result);
break;
case "add":
const updateList = await contacts.addContact({ name, email, phone });
console.log(action, updateList);
break;
case "remove":
const deconsteItem = await contacts.removeContact(id);
console.log(action, deconsteItem);
break;
default:
console.warn("\x1B[31m Unknown action type!");
}
}
invokeAction(argv);