Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.97 KB

READ_ME.md

File metadata and controls

32 lines (25 loc) · 1.97 KB

UI Challenge:

Provider Directory v2.0

Inline image 1

Background: The provider directory helps healthcare providers find and connect with other healthcare providers. It acts as a personal address book of provider email addresses. Specialty is very important when searching as providers often look for available providers within in a particular specialty.

Requirements

Should load the data below into the existing data section on page load. Should have the ability to create providers that will immediately prepend to the list on submit. Should have the ability to remove selected providers from the list. Should have the ability to sort the list by any of the fields, both ascending and descending. Type ahead searching is a nice to have. Should not require a web server, and should be able to run offline. Last Name, First Name and Email Address are required fields. Match the spirit of the mock up but artistic freedom is encouraged. Be prepared to discuss the design choices you make. All data exchanges should be in JSON format.

Existing Data (JSON) [ {"last_name": "Harris", "first_name": "Mike", "email_address": "[email protected]", "specialty": "Pediatrics", "practice_name": "Harris Pediatrics"}, {"last_name": "Wijoyo", "first_name": "Bimo", "email_address": "[email protected]", "specialty": "Podiatry", "practice_name": "Wijoyo Podiatry"}, {"last_name": "Rose", "first_name": "Nate", "email_address": "[email protected]", "specialty": "Surgery", "practice_name": "Rose Cutters"}, {"last_name": "Carlson", "first_name": "Mike", "email_address": "[email protected]", "specialty": "Orthopedics", "practice_name": “Carlson Orthopedics”}, {"last_name": "Witting", "first_name": "Mike", "email_address": "[email protected]", "specialty": "Pediatrics", "practice_name": "Witting’s Well Kids Pediatrics"}, {"last_name": "Juday", "first_name": "Tobin", "email_address": "[email protected]", "specialty": "General Medicine", "practice_name": "Juday Family Practice”} ]