import { Head, Appear } from "mdx-deck"; import Logo from "./assets/images/logos/rdc-icon.svg"; export { default as theme } from "./theme"; import { CodeSurfer } from "mdx-deck-code-surfer"; import ultramin from "prism-react-renderer/themes/ultramin";
Review of data fetching and component lifecycle
Send a network request to:
- Get some information from another service
- Give some information to another service
let response = await fetch("https://api.kanye.rest");
let responseJson = await response.json();
How might we load an initial quote into the page, before a user clicks "Get quote"?
React has special method names that are called at certain points of a component's life
componentDidMount
: The React component has been placed into the pagecomponentDidUpdate
: The newest render of the React component has been placed into the page
A demo of the concepts we just reviewed
We had a PokedexEntry
component:
<PokedexEntry name="ditto" />
<PokedexEntry name="abra" />
We had our PokedexEntry
component receiving props from App
's state:
<PokedexEntry name={this.state.currentPokemon} />