Affected files: notes/utils/React.md projects/personal-page-notes/List of Games.md projects/radio-notes/Dev Stack.md
1.4 KiB
1.4 KiB
React use shallow comparision (values are equals in case of primitive types. In case of object it just check the reference) to check if the dependency changes between renders, this can conduce to bugs in the following situa
Always use a depency array
useEffect(() => {
setCount((count) => count + 1);
}, []);
Function as dependency
React re defines functions on every render, so the dependency always changes, use useCallback to memoize the function so it doesn't change
const logResult = useCallback(() => {
return 2 + 2;
}, []);
useEffect(()=> {
setCount((count) => count + 1);
}, [logResult]);
Array as dependency
The reference to an array changes in every render, use useRef so it doesn't change
const [count, setCount] = useState(0);
//extract the 'current' property and assign it a value
const { current: myArray } = useRef(["one", "two", "three"]);
useEffect(() => {
setCount((count) => count + 1);
}, [myArray]);
Object as dependency
The reference to an object changes in every render, use useMemo so it doesn't change
const person = useMemo(
() => ({ name: "Rue", age: 17 }),
[] //no dependencies so the value doesn't change
);
useEffect(() => {
setCount((count) => count + 1);
}, [person]);