-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.js
executable file
·92 lines (86 loc) · 2.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// index.js
import inquirer from "inquirer";
import axios from "axios";
import { hideBin } from "yargs/helpers";
import yargs from "yargs/yargs";
const options = {
fetchNodes: async () => {
return [
{ title: "Celestia" },
{ title: "DYM" },
{ title: "Mina" },
{ title: "Dusk" },
{ title: "Kenshi" },
{ title: "Dusk" },
];
// try {
// const response = await axios.get("https://api.github.com/gists/public");
// return response.data;
// } catch (error) {
// console.error("API'dan veri alınırken bir hata oluştu:", error);
// return [];
// }
},
displayNodes: async (nodes) => {
console.log("Mevcut Nodeler:");
const answers = await inquirer.prompt([
{
type: "list",
name: "nodeAction",
message: "Ne yapmak istersiniz?",
choices: nodes.map((node, index) => {
return `${index + 1}. ${node.title}`;
}),
},
]);
return answers.nodeAction;
},
askUser: async () => {
const answers = await inquirer.prompt([
{
type: "list",
name: "nodeAction",
message: "Ne yapmak istersiniz?",
choices: [
"Aktif nodeleri listele",
"Kurulabilir nodeleri listele",
"Çıkış",
],
},
]);
return answers.nodeAction;
},
};
const main = async () => {
const userChoice = await options.askUser();
switch (userChoice) {
case "Aktif nodeleri listele":
// Aktif nodeleri çekmek için API fonksiyonunu kullanın
const activeNodes = await options.fetchNodes(); // Bu fonksiyonu API'nize uygun şekilde değiştirin
options.displayNodes(activeNodes);
break;
case "Kurulabilir nodeleri listele":
// Kurulabilir nodeleri çekmek için başka bir API fonksiyonu kullanabilirsiniz
const installableNodes = await options.fetchNodes(); // Bu fonksiyonu da ihtiyacınıza göre değiştirin
options.displayNodes(installableNodes);
break;
case "Çıkış":
console.log("Programdan çıkılıyor...");
console.log("Furkan Çelik");
process.exit();
}
// Tekrar ana menüye dönmek için
};
// // yargs ile CLI argümanlarını işleyin
// yargs(hideBin(process.argv))
// .command(
// "start",
// "CLI uygulamasını başlatır",
// () => {},
// async (argv) => {
// await main();
// }
// )
// .help()
// .alias("help", "h").argv;
main();