Skip to content

dougkna/react-survey-template

Repository files navigation

React + MongoDB Survey App

DESCRIPTION

When users sign up for our site we want them to be presented with a questionnaire that allows them to define their preference for certain types of products. We want to create a web based experience that makes it easy for them to enter in data in a survey format, and store that data in a database for reference when they view our catalog. Users should be able to pick up where they left off if they close the browser and come back later. The app would be able to keep state across devices.

GOAL

Create a survey that :

  1. provides user experience to four types of users (new, revisiting, complete, retired)
  2. reflects scalability and flexibility in database design, while minimizing inefficiency
  • An ideal survey platform will need to cover all of below cases: Home View (Implemented : Survey + Survey2 for four types of users)

ASSUMPTIONS

  • Not to overwhelm customers, each survey will contain reasonably small set of questions (1-50 questions). Pagination may be needed.
  • Survey will minimize uses of free response types of questions.
  • Database design will need to reflect possible changes or versioning from the admin, i.e. admin may update, alter, or delete survey questions and answers.

DATABASE DESIGN

  • User (_id, name, email, password, survey_status)
  • Survey (_id, version, name)
  • Question (_id, survey_name, number, type, text, (optional: version))
  • Answer (_id, question_id, value)
  • UserAnswer (_id, question_id, answer_id, user_id)

PROCESS

Home View

  • There are four types of users with a survey: new, revisiting, complete, or retired user.
  • Each user has survey status of 'new', 'pending', 'complete', or 'retired'.
  • Upon signup, user is assigned survey status 'new'.
  • Upon signup or login, retrieve one most recent published survey.
  • If user is a revisiting user ('pending'), retrieve user's saved answers.
  • Survey component will save two states, 'survey questions' and user's 'picked answers' (if user is new or has no saved answers, this is blank).
  • As user fills questions with answers, Question component will update 'picked answers'.
  • User may save and exit, or choose to decline ('retire') to participate.
  • If user saves his answers, UserAnswer will update.
  • When all questions are filled with answers, user may save as complete, and his survey status will become 'complete'. Complete users will not be shown the survey upon login.

VIEW

https://z-survey-app.herokuapp.com/

survey-template