Last active
October 7, 2021 08:10
-
-
Save bigsaigon333/a33b5d9cdcde6250f783e661229bfef4 to your computer and use it in GitHub Desktop.
Array.prototype.{map, reduce, join} 에 착안한 선언적 리액트 컴포넌트 만들기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const arr = [ | |
{ id: 1, text: "abc" }, | |
{ id: 2, text: "def" }, | |
{ id: 3, text: "ghi" }, | |
]; | |
const Map = ({ list, children }) => <>{list.map((el) => children(el))}</>; | |
const Join = ({ separator, children }) => { | |
// const [Frag] = React.Children.toArray(children); | |
// console.log(Frag); | |
// const L = React.Children.map(Frag, (Comp, i) => { | |
// console.log(i); | |
// return Comp; | |
// }); | |
// console.log(L); | |
console.log(children); | |
return <div> {children}</div>; | |
}; | |
const List = () => ( | |
<ul> | |
<Join separator={<br />}> | |
<Map list={arr}>{({ id, text }) => <li key={id}>{text}</li>}</Map> | |
</Join> | |
</ul> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1.
Array.prototype.join
Array.prototype.join
메서드는 각 문자열을 하나의 문자열로 합치면서 각 문자열 사이에 매개변수인 separator를 삽입해준다.2. jsx 에서 map을 사용하여 list 를 DOM객체로 표현
3. 각
<li />
사이에<br />
을 넣고 싶으면 어떻게 할까?즉, 다음과 같은 DOM객체를 만들고 싶다면?
jsx로 나타낸다면 다음과 같다
개념적으로
<br />
은<li />
배열의 각<li />
사이에 들어가는 join 메서드의 separator와 같은 역할이다.4.
<Map />
,<Join />
컴포넌트를 만들어보자