This project allows you to practice the concepts and techniques learned in this module and apply them in a concrete project. This module explored Form management in React. You learned what stateful logic is, how to build custom hooks, how to compose multiple hooks together, and how to use mocks and spies in testing. In your project you will demonstrate proficiency of these subjects and principles by creating an application using each of these.
Read these instructions carefully. Understand exactly what is expected before starting this project.
Commit your code regularly and meaningfully. This helps you and any collaborators in case you ever need to return to old code for any number of reasons.
In this project you'll take this crypto currency tracker app and build two custom hooks that, when composed together, will allow users to set and persist a dark mode preference.
- Create a forked copy of this project.
- Clone your OWN version of the repository in your terminal
- CD into the project base directory
cd dark-mode
- Download project dependencies by running
npm install
- Start up the app using
npm start
- Create a new branch: git checkout -b
<firstName-lastName>
. - Implement the project on your newly created
<firstName-lastName>
branch, committing changes regularly. - Push commits: git push origin
<firstName-lastName>
.
Follow these steps for completing your project.
- Submit a Pull-Request to merge Branch into main (student's Repository). Please don't merge your own pull request
- From the home page of your repo, make sure you have your branch selected
- Copy the URL and paste it into Canvas
- Build a custom hook that let's you save data to localStorage
- Build a second custom hook that sets the
dark-mode
class on the body element - Compose your two new hooks together to be able to set and persist your user's dark mode preference in your app
Open your app and take a look around. The crypto currency data is being fetched and displayed for you. In styles.scss
, at the very bottom, you'll notice there are some styles for a class called dark-mode
. Soon, we'll write a custom hook that sets this class on the body tag. That hook is going to compose a useLocalStorage
inside it to accomplish that, so let's write the localStorage one first.
This is going to be a pretty cool hook. It will be used pretty much the same way as useState
, but with a key and value passed into it - ie const [name, setName] = useLocalStorage('name', 'Dustin')
. You can use setName
to update the value of name
on localStorage! Pretty cool, huh? Let's get to it!
- Create a new directory called
hooks
, and a new file in it calleduseLocalStorage
. - Build a function called
useLocalStorage
. Now, to set something to localStorage, we need a key (must be a string) and a value (can be anything). To retrieve something from localStorage, we need the key. To update something in localStorage, you use the same method as adding something new, and it will just replace the old key/value pair in localStorage. Knowing this, let's addkey
andinitialValue
as parameters to the hook. - We're going to set up some state here. Set up a state property called storedValue.
- This state property is going to take a function as it's initial value. When we do this, whatever that callback function returns is what gets set as the intialValue for the state property.
- In the callback function, we'll check to see if the item we passed in already exists in localStorage, and return that value, otherwise we'll return whatever initialValue was passed in.
- Quick note, if you pass in arrays or objects to localStorage, you will need to parse it into JSON. Then when you retrieve it, like we do below, you'll need to parse it back into regular JavaScript
// To retrieve an item from localStorage, call localStorage.getItem('itemName')
// If that item doesn't exist, it will return undefined
const [storedValue, setStoredValue] = useState(() => {
// Get from local storage by key
const item = window.localStorage.getItem(key);
// Parse and return stored json or, if undefined, return initialValue
return item ? JSON.parse(item) : initialValue;
});
- Now, let's return
storedValue
from this hook in an array:
import { useState } from "react";
export const useLocalStorage = (key, initialValue) => {
const [storedValue, setStoredValue] = useState(() => {
const item = window.localStorage.getItem(key);
return item ? JSON.parse(item) : initialValue;
});
return [storedValue];
};
- Remember we're trying to use this hook like this:
const [name, setName] = useLocalStorage('name', 'Dustin')
. So far we have made the value part of the hook, but not the setter. Let's go ahead and create a setter function, and return that in the array as well.- inside the hook, write a function called
setValue
that takes avalue
parameter - In
setValue
, set thevalue
to localStorage using thekey
that was passed into the hook itself - Also, update the state of
storedValue
withvalue
as well - Add
setValue
to the array that is being returned out of this hook setValue
should look something like this:
- inside the hook, write a function called
const setValue = value => {
// Save state
setStoredValue(value);
// Save to local storage
window.localStorage.setItem(key, JSON.stringify(value));
};
We're going to use this inside our dark mode hook, but this can be used anywhere for any kind of localStorage needs you have in your apps. Custom hooks are so awesome!!
- Inside the
hooks
directory, add a new file calleduseDarkMode
. - Build a function called
useDarkMode
. - Import
useLocalStorage
- Call
useLocalStorage
and pass in the key you want to use to store to indicate whether or not dark mode is enabled. Remember, this hook returns an array with a value and a setter in an array, exactly like the state hook, so make sure to capture those values in aconst
-const [someValue, setSomeValue] = useLocalStorage('your key here')
- Finally, we need to return something out of
useDarkMode
, so we can use this in our app. What do you think we'll need? We'll need to know if dark mode is enabled, right? And we'll need a setter function to toggle dark mode. Let's just forward the value and the setter that were returned out of theuseLocalStorage
call. Return those two values in an array as well.
In this case useDarkMode
isn't doing any of it's own logic, just simply composing useLocalStorage
inside it and passing those values back to the component. There are other things we could do here to extend even more logic. If you want to try that after you're finished, check out the first stretch goal 👍
Now that we have composed our different pieces of stateful logic, let's use it in our component!
- import the dark mode hook into the
NavBar
component - Looking at this component, we see that we are controlling the toggle with some state. The state hook here returns a
darkMode
value, and asetDarkMode
function. Isn't that exactly what ouruseDarkMode
hook returns as well? Replace the state hook with our hook, click the toggle, and watch the magic happen!!!
(If it wasn't magical, you have a bug somewhere 😫 go back through the steps slowly, one at a time, to see if you missed any of the steps)
After finishing your required elements, you can push your work further. These goals may or may not be things you have learned in this module but they build on the material you just studied. Time allowing, stretch your limits and see if you can deliver on the following optional goals:
-
Look at this implementation of a
useDarkMode
hook that has more logic built into it (ignore theuseEffect
hook which has some direct DOM manipulation). In youruseDarkMode
hook, build in theusePrefersDarkMode
logic that will check to see what you have set your OS theme preference to and apply that to your site. -
Add routing into this app and build out some other pages
-
Go to the Coin Gecko API where we got this data from, and add more features to your app. Maybe you want to make a dropdown list of coins, and only look at one coin at a time. You could make an API call to that API for a specific coin and get more data on it. You could get more specific coin data for the last 24 hrs. There's a lot you can do with this API. Explore and have fun!
-
Look into the recharts library and build a new chart. Or change the appearence of the charts we built out here. Maybe when you toggle to dark mode, the line on the chart could change colors! There's a lot you can do with this library. Explore and have fun!
- Submit a Pull-Request to merge Branch into
main
(student's Repository). Please don't merge your own pull request - From the home page of your repo, make sure you have your branch selected
- Copy the URL and paste it into Canvas to submit your project