1. Component Driven Development๋?
CDD๋?
๋ถํ ๋จ์๋ก UI ์ปดํฌ๋ํธ๋ฅผ ๋ง๋ค์ด ๋๊ฐ๋ ๊ฐ๋ฐ ์งํ ๊ฐ๋ฅ
์ปดํฌ๋ํธ ๋จ์๋ก ๋ง๋ค์ด ํ์ด์ง๋ฅผ ์กฐ๋ฆฝํ๋ ๊ฐ๋ฐ ๋ฐฉ์์ธ ์ํฅ์ ๊ฐ๋ฐ์ ๊ฐ๊น์
CSS in JS
CSS ๊ตฌ์กฐํ๋ฅผ ์ํ ๋ค์ํ ์๋
SASS๋ผ๋ CSS๋ฅผ ํ์ฅํด ์ฃผ๋ ์คํฌ๋ฆฝํ
์ธ์ด๋ก ์ ์ฒ๋ฆฌ๊ธฐ ํ์ฉํ์ผ๋, ์ปดํ์ผ ๋ CSS์ฉ๋์ด ์ปค์ก์
SASS์ ๋ฌธ์ ๋ฅผ ๋ณด์ํ๊ธฐ ์ํด ์๋์ ์งํฅ์ ๋ค์ ๊ฐ์ง ๋ค์ํ CSS ๋ฐฉ๋ฒ๋ก ์ด ๋๋๋์์
์ฝ๋์ ๊ฐ๊ฒฐํ (์ ์ง๋ณด์ ์ฉ์ด)
์ฝ๋์ ์์ธก์ฑ (ํด๋์ค ๋ช
๋ฑ์ผ๋ก)
Styled-Component: ์ํ๋ฅผ ๊ฐ์ง ์ปดํฌ๋ํธ๋ค๋ก๋ถํฐ UI๋ฅผ ์์ ํ ๋ถ๋ฆฌํด ์ฌ์ฉํ ์ ์๋ ์์ฃผ ๋จ์ํ ํจํด์ ์ ๊ณต
2.CDD ๊ฐ๋ฐ๋๊ตฌ
Styled Components
CSS๋ฅผ ์ปดํฌ๋ํธํ ํ๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ก, React ํ๊ฒฝ์์ ์ฌ์ฉ ๊ฐ๋ฅํ๋ฉฐ, CSS๋ฅผ Javascript์์ ๋ฃ์ด์ค ์ ์์
Styled Components ์ค์นํ๊ธฐ
// package.json์ ์ฝ๋ ์ถ๊ฐ
{
"resolutions": {
"styled-components": "^5"
}
}
Styled Components๋ฅผ ์ฌ์ฉํ ํ์ผ๋ก ๋ถ๋ฌ์์ฃผ๊ธฐ
import styled from "styled-components"
์ปดํฌ๋ํธ ๋ง๋ค๊ธฐ
// ๋ฐ์ดํ๊ฐ ์๋ ๋ฐฑ ํฑ(`)์ ์ฌ์ฉ
import styled from "styled-components";
// Styled Components๋ก ์ปดํฌ๋ํธ๋ฅผ ๋ง๋ค๊ณ
const BlueButton = styled.button`
background-color: blue;
color: white;
`;
export default function App () {
// React ์ปดํฌ๋ํธ๋ฅผ ์ฌ์ฉํ๋ฏ ์ฌ์ฉ
return <BlueButton>Blue Button</BlueButton>;
}
์ปดํฌ๋ํธ๋ฅผ ์ฌํ์ฉํด ์๋ก์ด ์ปดํฌ๋ํธ ๋ง๋ค๊ธฐ
import styled from "styled-components";
const BlueButton = styled.button`
background-color: blue;
color: white;
`;
// ๋ง๋ค์ด์ง ์ปดํฌ๋ํธ๋ฅผ ์ฌํ์ฉํด ์ปดํฌ๋ํธ ๋ง๋ค๊ธฐ
const BigBlueButton = styled(BlueButton)`
padding: 10px;
margin-top: 10px;
`;
// ์ฌํ์ฉํ ์ปดํฌ๋ํธ๋ฅผ ์ฌํ์ฉ
const BigRedButton = styled(BigBlueButton)`
background-color: red;
`;
export default function App() {
return (
<>
<BlueButton>Blue Button</BlueButton>
<br />
<BigBlueButton>Big Blue Button</BigBlueButton>
<br />
<BigRedButton>Big Red Button</BigRedButton>
</>
);
}
Props ํ์ฉํ๊ธฐ
import styled from "styled-components";
import GlobalStyle from "./GlobalStyle";
// ๋ฐ์์จ prop์ ๋ฐ๋ผ ์กฐ๊ฑด๋ถ ๋ ๋๋ง ๊ฐ๋ฅ
// ์ผํญ ์ฐ์ฐ์๋ฅผ ํ์ฉํด <Button> ์ปดํฌ๋ํธ์ skyblue ๋ผ๋ props๊ฐ ์๋์ง ํ์ธ
// ์์ผ๋ฉด ๋ฐฐ๊ฒฝ์์ผ๋ก skyblue๋ฅผ, ์์ ๊ฒฝ์ฐ white๋ฅผ ์ง์ ํด ์ค
const Button1 = styled.button`
background: ${(props) => (props.skyblue ? "skyblue" : "white")};
`;
export default function App() {
return (
<>
<GlobalStyle />
<Button1>Button1</Button1>
<Button1 skyblue>Button1</Button1>
</>
);
}
Props ๊ฐ์ผ๋ก ๋ ๋๋งํ๊ธฐ
import styled from "styled-components";
import GlobalStyle from "./GlobalStyle";
// ๋ฐ์์จ prop ๊ฐ์ ๊ทธ๋๋ก ์ด์ฉํด ๋ ๋๋ง
const Button1 = styled.button`
background: ${(props) => (props.color ? props.color : "white")};
`;
// ์๋์ ๊ฐ์ ํ์์ผ๋ก๋ ํ์ฉ ๊ฐ๋ฅ
const Button2 = styled.button`
background: ${(props) => props.color || "white"};
`;
export default function App() {
return (
<>
<GlobalStyle />
<Button1>Button1</Button1>
<Button1 color="orange">Button1</Button1>
<Button1 color="tomato">Button1</Button1>
<br />
<Button2>Button2</Button2>
<Button2 color="pink">Button2</Button2>
<Button2 color="turquoise">Button2</Button2>
</>
);
}
3. useRef
DOM reference๋ฅผ ์ ํ์ฉํ ์ ์๋ useRef
React๋ ์์ธ์ ์ธ ์ํฉ์์ useRef
๋ก DOM ๋
ธ๋, ์๋ฆฌ๋จผํธ, React ์๋ฆฌ๋จผํธ๋ก ์ฃผ์๊ฐ ์ฐธ์กฐ ๊ฐ๋ฅ
const ์ฃผ์๊ฐ์_๋ด๋_๊ทธ๋ฆ = useRef(์ฐธ์กฐ์๋ฃํ)
// ์ด์ ์ฃผ์๊ฐ์_๋ด๋_๊ทธ๋ฆ ๋ณ์์ ์ด๋ค ์ฃผ์๊ฐ์ด๋ ๋ด์ ์ ์์
return (
<div>
<input ref={์ฃผ์๊ฐ์_๋ด๋_๊ทธ๋ฆ} type="text" />
{/* React์์ ์ฌ์ฉ ๊ฐ๋ฅํ ref๋ผ๋ ์์ฑ์ ์ฃผ์๊ฐ์_๋ด๋_๊ทธ๋ฆ์ ๊ฐ์ผ๋ก ํ ๋นํ๋ฉด*/}
{/* ์ฃผ์๊ฐ์_๋ด๋_๊ทธ๋ฆ ๋ณ์์๋ input DOM ์๋ฆฌ๋จผํธ์ ์ฃผ์๊ฐ ๋ด๊น */}
{/* ํฅํ ๋ค๋ฅธ ์ปดํฌ๋ํธ์์ input DOM ์๋ฆฌ๋จผํธ๋ฅผ ํ์ฉํ ์ ์์ */}
</div>
);
์๋์ ์ ํ๋ ์ํฉ์์ useRef
์ฌ์ฉ ๊ฐ๋ฅํ๋, React์ ํน์ง์ด์ ์ฅ์ ์ธ ์ ์ธํ ํ๋ก๊ทธ๋๋ฐ ์์น๊ณผ ๋ฐฐ์น๋๊ธฐ์ ํด๋น ์ํฉ ์ ์ธํ ๊ฒฝ์ฐ useRef
๋จ์ฉ์ ๋ถ์ ์
function TextInputWithFocusButton() {
const inputEl = useRef(null);
const onButtonClick = () => {
inputEl.current.focus();
};
return (
<>
<input ref={inputEl} type="text" />
<button onClick = {onButtonClick}>Focus the input</button>
</>;
)
}