-
Notifications
You must be signed in to change notification settings - Fork 0
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
프로젝트 피드백 - 작성자: 오창영 튜터 #1
Comments
todo.jsDucks 패턴으로 잘 구현하셨습니다. redux_todolist/src/redux/modules/todos.js Lines 19 to 32 in 2fb92b4
Home.jsx에서 addTodo할 때 uuid를 사용하여 id를 추가하고 있습니다. initialState의 id도 uuid를 사용하는 것이 보다 일관성 있는 코드가 될 것 같습니다. redux_todolist/src/redux/modules/todos.js Lines 39 to 41 in 2fb92b4
filter 메서드는 새로운 배열을 반환하기 때문에 redux_todolist/src/redux/modules/todos.js Lines 42 to 50 in 2fb92b4
map 메서드도 새로운 배열을 반환하기 때문에 |
튜터님. 피드백 감사합니다. 피드백 확인하면서 공부해보겠습다.
2023년 6월 28일 (수) 오전 12:55, 오창영 ***@***.***>님이 작성:
… todo.js
Ducks 패턴으로 잘 구현하셨습니다.
https://github.com/songhsb/redux_todolist/blob/2fb92b4f4b41a297e9fd41300e36101c0d16ee7b/src/redux/modules/todos.js#L19-L32
Home.jsx에서 addTodo할 때 uuid를 사용하여 id를 추가하고 있습니다. initialState의 id도 uuid를
사용하는 것이 보다 일관성 있는 코드가 될 것 같습니다.
https://github.com/songhsb/redux_todolist/blob/2fb92b4f4b41a297e9fd41300e36101c0d16ee7b/src/redux/modules/todos.js#L39-L41
filter 메서드는 새로운 배열을 반환하기 때문에 return [...deletTodo]가 아닌 return deletTodo로
수정 가능합니다.
https://github.com/songhsb/redux_todolist/blob/2fb92b4f4b41a297e9fd41300e36101c0d16ee7b/src/redux/modules/todos.js#L42-L50
map 메서드도 새로운 배열을 반환하기 때문에 return [...isDoneTodo]가 아닌 return isDoneTodo로
수정 가능합니다.
—
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A5YD4AQYQNBX3LY3WLMEXUTXNL67HANCNFSM6AAAAAAZVN6DGI>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Router.jsredux_todolist/src/shared/Router.js Line 15 in 2fb92b4
|
Detail.jsxredux_todolist/src/pages/Detail.jsx Lines 12 to 14 in 2fb92b4
== 보단 ===로 비교해주세요. |
The text was updated successfully, but these errors were encountered: