The Interview Scheduler is single page application that acts as a simple interview appointment scheduling tool. Users are able to book, edit, and cancel interviews.
This project was created using Create React App. A complete list of the technologies used to build this application can be seen below:
Client-Side:
Server-Side:
Testing:
Clone this repository to your machine and install dependencies by:
git clone git@github.com:egrannis/scheduler.git
cd scheduler
npm install
Ensure that that your package.json file under "dependencies" and "devDependencies" includes:
- axios
- @testing-library/react-hooks
- react-test-renderer
- react-dom
- react-scripts
- classnames
- normalize.css
- prop-types
- node-sass
- cypress
Clone this scheduler-api github repository to your machine:
git clone git@github.com:egrannis/scheduler-api
Follow the setup instructions in the scheduler-api README file to set up your API server.
cd /scheduler
npm start
cd /scheduler
npm test
cd /scheduler
npm run storybook
-
Click through any day in the
menu bar
on theleft side
of the page to view available appointment slots for each day. -
Create a new appointment in an available slot by pressing the
+ icon
. -
Enter your name
in theform field
that shows the placeholder 'Enter Student Name'. -
Select an interviewer
from the list by hovering over the icon and clicking it. -
Click
Save
at the bottom right and the page will indicate that the appointment is 'Saving'. Then, you will see your newly created appointment right on your screen. -
If you made a mistake in creating an appointment, no worries! There are both functional
edit
anddelete
options. -
To
edit
an appointment, hover over that appointment and click on theedit icon
at thebottom right
of the appointment card. You can then change the student name input and/or select a different interviewer and press save. -
To
delete
an appointment, hover over that appointment and click on thedelete icon
at thebottom right
of the appointment card. A message will pop up asking if you are sure you want to delete the appointment. Clickconfirm
and it will indicate that it is deleting your appointment, and then you will see an empty slot where your appointment was originally. If you clickcancel
when presented with the confirmation message, it will simply bring you back to the view of your appointment. -
Enjoy!