Skip to content

sBahta1/Reactjs-Feedback-Survey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redux Feedback Loop

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.

SETUP

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

ADD NEW FEEDBACK

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? feeling
  • How well are you understanding the content? understanding
  • How well are you being supported? support
  • Any comments you want to leave? comments

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. understanding

DISPLAY FEEDBACK

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.

display feedback

STRETCH GOALS

  • 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published