๐ Reference
๐ Chapter
useRef, ref, forwardRef
useEffect
โฃ
Reconciliation
- Reconciliation
- ๋ฆฌ์ปจ์ค๋ฆฌ์์ด์
- ์ฌ์กฐ์
- React๋ component์์ prop์ด๋ state๊ฐ ๋ณ๊ฒฝ๋ ๋, ์ง์ ์ ๋ ๋๋ง๋ ์์(element)์ ์๋ก ๋ฐํ๋ ์์๋ฅผ ๋น๊ตํ์ฌ ์ค์ DOM์ ์
๋ฐ์ดํธ ํ ์ง ๋ง์ง ๊ฒฐ์ ํด์ผ ํ๋ค.
- ์ด๋ ๋ element๊ฐ ์ผ์นํ์ง ์์ผ๋ฉด React๋ ์๋ก์ด ์์๋ก DOM์ ์
๋ฐ์ดํธ ํ๋๋ฐ, ์ด๋ฌํ ํ๋ก์ธ์ค๋ฅผ reconciliation์ด๋ผ๊ณ ํ๋ค.
- Reconciliation์ render phase, commit phase๋ก ๋๋์ด์ง๋ค. render phase๋ ๋ฆฌ๋ ๋๋ง์ ๋ฐ๋ฅธ UI ๋ณ๊ฒฝ ๋ด์ญ์ virtual dom์ ๊ธฐ๋กํ๋ ๋จ๊ณ์ด๋ฉฐ, commit phase๋ ์ค์ UI painting์ผ๋ก ์ด์ด์ง๋ ๋จ๊ณ์ด๋ค.
- Class component์์๋ render phase์ commit phase๋ ์ผ๋์ผ ๊ด๊ณ๋ฅผ ๋์ง๋ง, Function component์์๋ ์ผ๋์ผ ๊ด๊ณ๋ฅผ ๋ณด์ฅํ์ง ์์, render ํจ์ ๋ด๋ถ์์ UI ๋ณ๊ฒฝ๊ณผ ์ฐ๊ด ์๋ ๊ฐ์ ๋ณ๊ฒฝํ๋ค๋ฉด, ์์์น ๋ชปํ๊ฒ ๋์ํ ์ ์๋ค.
- ๋ฐ๋ผ์ ๋ค์๊ณผ ๊ฐ์ด commit phase์ ๋์ํ๋ useEffect ๋ด๋ถ์์ ๊ฐ์ ์์ ํด์ฃผ๋ ๊ฒ์ด ์ ์์ ์ธ ์ฒ๋ฆฌ ๋ฐฉ๋ฒ์ด๋ค.
const Counter = () => {
const count = useRef(0);
let currentCount = count.current;
useEffect(() => {
count.current = currentCount;
});
currentCount += 1;
return <div>count:{currentCount}</div>;
};