Connect useEffect and useState to Update Components with Data

chantastic - Dec 7 '19 - - Dev Community

We have one way to update (or re-render) a component.
It's React.useState.

When we want to render our component with data we've useEffected from the internet, we need to need a useState updater function to call.

This is a common pairing of functions where server data is used to update a component:

let [componentData, setComponentData] = React.useState(null);

React.useEffect(() => {
  fetchData().then(serverData => setComponentData(serverData));
})
Enter fullscreen mode Exit fullscreen mode

In our Pokemon app, that looks like this:

let [index, setIndex] = React.useState(1);
let [pokemon, setPokemon] = React.useState(null);

React.useEffect(() => {
  fetchPokemon(index).then(json => setPokemon(json));
});
Enter fullscreen mode Exit fullscreen mode

Our useEffect connects us to the outside world — fetching data with JavaScript.
The callback we give to fetchPokemon calls our useState updater function when data is ready — updating our component.

Give it a try!

Assignment Sandbox:

Assignment:

  1. Update the let pokemon assignment to get it's value from React.useState(null)
  2. Using destructuring assignment, take the second element of React.useState's return (our updater function) and setPokemon
  3. Replace console.log(json) with a call to setPokemon(json)

Follow the 🧵 on Twitter:

Subscribe on YouTube:

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player