This challenge allows you to practice the concepts and techniques learned over the past Sprint and apply them in a concrete project. This Sprint explored class components and lifecycle methods, advanced form management, and unit testing.
Read these instructions carefully. Understand exactly what is expected before starting this Sprint Challenge.
This is an individual assessment. All work must be your own. Your challenge score is a measure of your ability to work independently using the material covered through this sprint. You need to demonstrate proficiency in the concepts and objectives introduced and practiced in preceding days.
You are not allowed to collaborate during the Sprint Challenge. However, you are encouraged to follow the twenty-minute rule and seek support from your team lead and Instructor in your cohort help channel on Slack. Your work reflects your proficiency in advanced React techniques.
You have three hours to complete this challenge. Plan your time accordingly.
Commit your code regularly and meaningfully. This helps both you (in case you ever need to return to old code for any number of reasons and your project manager.
In the challenge for this Sprint, you will demonstrate proficiency by creating an application that has a registration page and let's you register a new user. Once a user is registered, you can fetch data and render it to the DOM.
Demonstrate your understanding of this Sprint's concepts by answering the following free-form questions. Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your project manager.
- What are the required parts of class components?
Class keyword and extending React.Component. Previously a constructor function with a call to super would have been necessary, but now you can just declare some state without it if you choose to. You also need a render function that returns some JSX/content.
- Name at least three lifecycle methods?
ComponentDidMount, ComponentDidUpdate, ComponentWillUnmount
- Why are forms used so often in web applications and software?
If your application needs some way of getting information from a user of that application, forms are the way to do it, and since many sites do need to get information from a user, naturally forms are going to be used often.
- What advantages are there by using a forms library like Formik?
Cleaner form interface, easier for future developers to read and extends, not having to manage everything with handlers that you write yourself every time you make a form, having forms standardized across the whole application, etc.
- Why do we write tests for our apps?
To ensure things are working correctly i.e. as expected. To prevent costly and difficult to diagnose bugs later on in the life of your app. It can help you think about to develop your app and cover edge cases that may not have been apparent at the start.
Follow these steps to set up and work on your project:
-
Create a forked copy of this project.
-
Add PM as collaborator on Github.
-
Clone your OWN version of Repo. (Not Lambda's by mistake!)
-
Create a new Branch locally:
git checkout -b <firstName-lastName>
. -
Implement the project on this Branch, committing progress & changes often.
-
Push commits:
git push origin <firstName-lastName>
. -
Navigate to the BE folder in this repository (this is where your server is located) from the command line, install the dependencies, and run
yarn start
ornpm start
to spin up the server provided for you. -
In the terminal, navigate back to the main folder, then into the
client
folder. -
Create your React app here.
Follow these steps for completing your project:
- Submit a Pull-Request to merge Branch into master (student's Repo).
- Add your Project Manager as a Reviewer on the Pull-request.
- PM then will count the HW as done by merging the branch back into master.
Your finished project must include all of the following requirements:
- A registration form built with formik - include inputs for a
username
and apassword
- Form validation using Yup
- At least one class component (I would challenge you to make the form a class!)
- Tests for at least one element, one event, and one unit test for a function
- A POST request made from the registration form to
http://localhost:5000/api/register
to add a user - the request body should have the following shape:
{
username: "Your name",
password: "password"
}
and the response object will look like this:
{
"error": "false",
"message": "User created successfully",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MiwiaWF0IjoxNTYzNDc2NTc0LCJleHAiOjE1NjM0ODAxNzR9.pIkjFgRRbrrg8j38YGiWpMlw0wgTWRfZmIIMAeFLQcw"
}
-
A GET request made to
http://localhost:5000/api/restricted/data
to retrieve the data -
Map over the array of objects you recieve and render some or all of it's information to the DOM.
-
Styling! Make your form pretty. Research pseudo elements and event selectors. Try to find interesting ways to present and layout the data you recieve from the back end.
-
Make a Login form. Reuse your Formik form in such a way that it can be extracted into a component and reused for both Register and Login.
-
Add React Router to your app and build routes for the registration form