Team-Profile-Generator

Module 12 Object-Oriented Programming: Team Profile Generator

Description :closed_book:

For this project given the outline of my On-the-job ticket, my main objectives is to:

User Story

* AS A manager
* I WANT to generate a webpage that displays my team's basic info
* SO THAT I have quick access to their emails and GitHub profiles

Acceptance Criteria

Presudocode

Inquirer Questions

START:

User Prompted:

a. Please enter your Team Manager’s Name
b. Please enter your Team Manager’s Employment ID
c. Please enter your Team Manager’s Email Address 
d. Please enter your Team Manager’s Office number

Menu Options presented after:

* Add an Engineer 
* Add an Intern
* Finish building the team 

User Prompted:

  a. Please enter the Engineer’s Name
  b. Please enter the Engineer’s Employment ID
  c. Please enter the Engineer’s Email Address 
  d. Please enter the Engineer’s GitHub username
Return back to options menu

User Prompted:

  Intern Option:
       a. Please enter the Engineer’s Name
       b. Please enter the Engineer’s Employment ID
       c. Please enter the Engineer’s Email Address 
       d. Please enter the Engineer’s GitHub username
    Return back to options menu
 
  Build Team option selected:
     Exit from Inquirer 
   
     - HTML is generated 
     - Call the RENDER function 
         - Pass-in an ARRAY containing ALL the employees Objects
         - RENDER function, generates & returns a Block of HTML included templated DIV elements for each employee
     
     - Create an HTML file using the returned HTML from the RENDER function
     - Write it to a file named team.html in the output folder 
     - Use the outputPath variable to target this location

## Mock-Up :pushpin:

Unit Testing Results (via Jest):

TestResult-Final

Object Team-Generated Array Sample:

Object-team-array-generated

Team.html - Application Generated Output Sample

Team-html-Output

## Page Link :pushpin:

My GitHub Link: https://github.com/44-khowell/Team-Profile-Generator/

URL of the deployed application: https://44-khowell.github.io/Team-Profile-Generator/

Credits :pushpin:

Refernces

License :pushpin:

Copyright (c) Keith Howell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.