-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
146 lines (133 loc) · 4.2 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
144
145
146
const Manager = require("./lib/Manager");
const Engineer = require("./lib/Engineer");
const Intern = require("./lib/Intern");
const inquirer = require("inquirer");
const path = require("path");
const fs = require("fs");
const OUTPUT_DIR = path.resolve(__dirname, "output");
const outputPath = path.join(OUTPUT_DIR, "team.html");
const render = require("./src/page-template.js");
const teamMembers = [];
// TODO: Write Code to gather information about the development team members, and render the HTML file
function init() {
// Team manager
function createManager() {
inquirer.prompt([
{
type: 'input',
name: 'managerName',
message: 'What is your managerName?'
},
{
type: 'input',
name: 'managerId',
message: 'What is your manager Id?'
},
{
type: 'input',
name: 'managerEmail',
message: 'What is your managerEmail?'
},
{
type: 'input',
name: 'managerOfficeNumber',
message: 'What is your managerOfficeNumber?'
},
])
.then(answers => {
const manager = new Manager(answers.managerName, answers.managerId,answers.managerEmail,answers.managerOfficeNumber)
teamMembers.push(manager)
createTeam()
})
}
function createTeam() {
inquirer.prompt([
{
type: 'list',
name: 'userChoice',
message: 'What type of teame member would you like to add?',
choices: [
"Engineer",
"Intern",
"I'm done"
]
},
])
.then(answers => {
switch (answers.userChoice) {
case "Engineer":
createEngineer();
break;
case "Intern":
createIntern();
break;
default:
buildTeam();
}
})
}
function createEngineer() {
inquirer.prompt([
{
type: 'input',
name: 'engName',
message: 'What is your engineer name?'
},
{
type: 'input',
name: 'engId',
message: 'What is your engineer Id?'
},
{
type: 'input',
name: 'engEmail',
message: 'What is your engineer Email?'
},
{
type: 'input',
name: 'engGitHub',
message: 'What is your engineer GitHub?'
},
])
.then(answers => {
const engineer = new Engineer(answers.engName, answers.engId,answers.engEmail,answers.engGitHub)
teamMembers.push(engineer)
createTeam()
})
}
function createIntern() {
inquirer.prompt([
{
type: 'input',
name: 'internName',
message: 'What is your internName?'
},
{
type: 'input',
name: 'internId',
message: 'What is your intern Id?'
},
{
type: 'input',
name: 'internEmail',
message: 'What is your intern Email?'
},
{
type: 'input',
name: 'internSchool',
message: 'What is your interns School?'
},
])
.then(answers => {
const intern = new Intern(answers.internName, answers.internId,answers.internEmail,answers.internSchool)
teamMembers.push(intern)
createTeam()
})
}
function buildTeam() {
fs.writeFileSync(outputPath, render(teamMembers),"utf-8" );
console.log(`Data has been written to the file successfully to index.html`);
}
createManager()
}
init()