-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
7회차과제-김도연 #2
base: master
Are you sure you want to change the base?
7회차과제-김도연 #2
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
열심히 서치 하셔서 props를 사용해 보려고 노력하신게 인상적이네요! 화이팅입니다!
src/App.js
Outdated
event.preventDefault() | ||
const new_Todo = [...todoList, {id: Date.now(), body: inputString}]; | ||
event.preventDefault(); | ||
const new_Todo = [...todoList, { id: Date.now(), body: inputString }]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
completed
속성이 추가 되었는데, todo추가할 때 해당 속성을 명시하지 않으셨네요.
JS특성상 없는 속성을 참조하면 falsy값인 undefined
가 반환되어 자동으로 false
로 처리되기 때문에 정상적으로는 작동하지만, 그래도 코드가 복잡해지면 예상치 못한 오류가 발생할 수도 있기 때문에 명시해 주시는 편이 좋을 것 같습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵! 알겠습니다! 코드 수정하겠습니다
return ( | ||
<Box> | ||
<Box complete={complete}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
팁 아닌 팁이긴 한데, styled-components에서 props를 사용할 때 <Box $complete={complete}>
이런식으로 props명 앞에 $
를 붙이면 콘솔에서 오류가 안나요!(쓸 때에도 마찬가지로 props => props.$complete ? "line-through" : "none"
요런식으로 써주시면 됩니다!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
꿀팁 감사드립니다..ㅜㅜ
1.내가 개발한 기능
Box 컴포넌트에서
props
로complete
값을 주어서 styled component Box에서complete
값을 받아 삼항연산자로 Box Component 취소선과 글씨색 변경 구현2.내가 유의 깊게 개발한 부분
1.fake배열에
completed
라는key
(default:false)값을 추가.2.
handleComplete
에서 map함수를 이용하여 완료버튼을 누른 id와 일치시completed
값을3.
true
로 배열 재구성.4.일치하지않는다면 원래배열 리턴.
3.개발하면서 들었던 의문사항
완료 버튼을 눌러
handleComplete
작동 시 component의 스타일 변경을 어떻게 해야할 지 고민 끝에 스타일 변수선언 부분에서props
를 통해 변경할 수 있는 점을 찾았다. 이러한 방법 말고 만약 인라인 함수로 구현이 가능한지에 대해 의문이 들었다.