PLEASE COMMENT YOUR CODE. Do not clone this repository. Instead, download the zip, extract the contents,
git init
,git add .
,git commit -m "initial commit - base project"
and add your remote. Please do this before you leave for the day.
"And my last reminder of the day, which is my last reminder of every day, is...?" - Luke
For this assignment, you will be creating a feedback form modeled after Prime's system. Feedback will be collected over 4 views, and when all steps are complete, your app will save the feedback in the database. In a separate view, a user will be able to see all the collected feedback.
Create your database and tables using the provided data.sql
file. Start the server.
npm install
npm run server
Now that the server is running, open a new terminal tab with cmd + t
and start the react client app.
npm run client
NOTE: As a baseline requirement, you must use Redux to store your data across views.
Create a multi-part form that allows users to leave feedback for today. There will be 4 views for the form parts. The parts:
- How are you feeling today?
- How well are you understanding the content?
- How well are you being supported?
- Any comments you want to leave?
While there is no nav bar, each part of the form should be at its own route. Clicking next should move the user to the appropriate step in the process.
When the form is complete, save the submission in the database. The user should see a submission success page.
Display all of the existing feedback at the route /admin
. The most recently added feedback should appear at the top of the list. Allow the user to delete existing feedback. Prompt the user to confirm prior to deleting the feedback from the database.
- Update this README.md to describe the project in your own words
- Improve the styling of the app using Material-UI theme, cards, snackbars, buttons, nav bar, and icons, and anything else you'd like.
- Add the ability to flag an existing feedback entry for further review on the /admin view
- Deploy your project to Heroku -- you'll need to read the special instructions for building and deploying with these apps!
NOTE: These stretch goals are intended to be completed in order.