React Fundamentals Flashcards

1
Q

What hook to fetch data in React component when it mounts?

A

useEffect, empty arr dependency
why? async data fetch is a side effect
make sure runs after render

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

useEffect vs. TanStack SWR

A

useEffect, simpler, fully customizable
reactQuery automates caching, refetching, error handling and sharing data across components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

how to handle API errors when fetching data in React

A

try catch block
loading state
error state -> display error message
parse error message and display specific message (400, 500, CORS)
retry mechanism
log errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

how to avoid unnecessary API calls during re-renders.

A

wrap is useEffect with [] dependency
useCallback to memoize
state management library
reactQuery for caching
lift data logic
throttle/debounce
pagination/infinite scroll
AbortController

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

2 components need same data, how to avoid fetching twice?

A

lift data fetching logic
reactQuery
redux state management
React useContext

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

difference between useState and state mgmt lib?

A

useState – minimizes re-renders, short lived states (toggle)

library – caching, share state across components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to let multiple components share and update the same state

A

lift state, Context API, state management lib

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

context api pros

A

low boilerplate, built into react

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

context api cons

A

risk excess re-renders because all components consuming context re-render when context changes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

redux pros

A

granular state management
only re-renders components that subscribe to slices of state
built in middleware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

redux cons

A

more overhead, 3rd party

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how to prevent unnecessary re-renders

A

react.memo
selector functions in Redux
split contexts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how to manage async state updates eg. result of an API call in react

A

useEffect and local state – only set state on mounted component
custom hook
middleware - Redux Thunk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

useState vs useReducer

A

useReducer centralized update state logic in a reducer function

use for more complex state updates, shared across components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

useMemo vs useCallback

A

useMemo memoizes value that doesn’t need to be re-rendered on every state update. only when dependency updates

useCallback memoizes a function that is passed as prop to child component. initVid example. works on a functional level – prevents creating a new function instance on every re-render.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

useRef example

A

ref prop of video element. assigned to videoRef.current when rendered. Can attach properties – src, play, currentTime

rendition of ReactReader

17
Q

React.memo

A

memoizes component’s output and skips re-rendering if props haven’t change. prevents unnecessary re-renders of a component