-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
143 lines (133 loc) · 3.25 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
const inquirer = require("inquirer");
const Employee = require("./lib/Employee");
const Engineer = require("./lib/Engineer");
const Manager = require("./lib/Manager");
const Intern = require("./lib/Intern")
const generateHtml = require("./src/generateHtml")
const fs = require("fs")
const team = []
const managerQuestions = [
{
type: "input",
name: "managerName",
message: "What is the manager's name?",
},
{
type: "input",
name: "employeeId",
message: "What is your employee ID?",
},
{
type: "input",
name: "email",
message: "What is your email address?",
},
{
type: "input",
name: "officeNumber",
message: "What is your office number?",
},
];
function promptManager() {
inquirer.prompt(managerQuestions).then((answers) => {
console.log(answers);
const manager = new Manager(answers.managerName, answers.employeeId, answers.email, answers.officeNumber)
team.push(manager)
promptMenu();
});
}
const otherEmployeesQuestions = [
{
type: "list",
name: "otherEmployees",
message: "Would you like to add the following other employees?",
choices: ["Engineer", "Intern", "None"],
},
];
const engineerQuestions = [
{
type: "input",
name: "engineerName",
message: "What is the engineer's name?",
},
{
type: "input",
name: "engineerId",
message: "What is their employee ID?",
},
{
type: "input",
name: "email",
message: "What is their email address?",
},
{
type: "input",
name: "gitUn",
message: "What is their GitHub username?",
},
];
const internQuestions = [
{
type: "input",
name: "internName",
message: "What is the intern's name?",
},
{
type: "input",
name: "internId",
message: "What is their employee ID?",
},
{
type: "input",
name: "email",
message: "What is their email address?",
},
{
type: "input",
name: "school",
message: "What school did they go to?",
},
];
function promptMenu() {
inquirer.prompt(otherEmployeesQuestions).then((answers) => {
console.log(answers);
if (answers.otherEmployees === "Engineer") {
promptEngineer();
// .then(answers => {
// console.log(answers)
}
if (answers.otherEmployees === "Intern") {
promptIntern();
// .then(answers => {
// console.log(answers)
}
if (answers.otherEmployees === "None") {
buildHtml(team)
}
});
}
function promptEngineer() {
inquirer.prompt(engineerQuestions).then((engineerAnswers) => {
const engineer = new Engineer(engineerAnswers.engineerName, engineerAnswers.engineerId, engineerAnswers.email, engineerAnswers.gitUn)
team.push(engineer)
promptMenu();
});
}
function promptIntern() {
inquirer.prompt(internQuestions).then((internAnswers) => {
const intern = new Intern(internAnswers.internName, internAnswers.internId, internAnswers.email, internAnswers.school)
team.push(intern)
promptMenu();
});
}
function buildHtml() {
fs.writeFile("./dist/index.html", generateHtml(team), function(err){
if(err){
console.log(err)
} else {
console.log("You have successfuolly created your html.")
}
})
}
promptManager();
// promptMenu();