-
Notifications
You must be signed in to change notification settings - Fork 163
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
[2단계 - 장바구니] 호프(김문희) 미션 제출합니다. #107
Conversation
- products list get mocking api 작성 - 개별 product get mocking api 작성
- 스토어에 여러 isLoading, isError 상태가 추가될 경우를 대비하여 범용성 있게 수정
- succeed 상태 추가
- CartControlBar를 CartContainer 로부터 분리
- 기존에 페이지에서 props 로 내려주던 방식에서 컴포넌트 내부에서 핸들링 하도록 수정
- Promise.all 사용하여 구현
- 기존에 객체로 export default -> 변수로 export 하도록 수정
- 도메인(페이지단위) 별로 분리
안녕하세요 발리스타님 :D 다시 한번 리뷰 요청 드리는 호프입니다! 코드가 많이 변경되어서, 먼저 방대한 양의 PR 메시지와 file changes에 양해를 구합니닷..죄송합니다.. 😭 .. ✅ 전역상태 대상 수정 및 useFetch 훅 작성🧷 관련 커밋 링크
전역 상태로 관리하자. 였습니다. 다시 말해서,
굳이 전역 상태로 관리할 필요가 없이, 해당 페이지에서 Fetch 를 받아와서 상태로 저장해주면 되겠다고 생각했습니다. 또한 말씀주신대로, 모든 API 요청에 대한 isLoading, isError 상태를 어떻게든 컴포넌트가 알아야 할 상황이 오긴 할 텐데, (예를 들어 수량 변경 버튼을 눌렀을 때, 변경 버튼을 disabled 나 로딩상태로 처리해준다던지!) 그 때 마다 일일이 전역상태에 API 요청별 상태를 추가해주는 것도 전역의존 이라고 말씀하신 것을 깊이 느꼈어요. 따라서, API 요청마다 전역 상태와 분리되는, isLoading, isError 상태를 따로 가지고 있어야 한다고 생각했고 이를 처리해주는 따라서, 현재 전역 상태로 관리하고 있는 것과 아닌 것을 정리하자면 🧷 이전전역상태로 관리되는 것
🧷 현재전역상태로 관리되는 것
✅ 비즈니스 로직 훅 & 페이지 단위 훅 분리🧷 관련 커밋 링크
✅ 단위 테스트🧷 관련 커밋 링크저번에 답변 주셨던 대로, 대다수의 로직이 커스텀 훅(페이지 훅)에 있기 때문에, 컴포넌트 렌더 테스트는 진행하지 않았습니다. 그런데..! CartItem 이나 ProductItem 과 같은 컴포넌트는 비즈니스 로직을 가지고 있어서 테스트 대상이라고 판단이 되긴 했어요. 하지만 이에 대한 로직 테스트를 수행하려면, 해당 컴포넌트 내부의 로직을 훅으로 또 분리해주어야 하는데, 오로지 테스트를 위해서 훅으로 분리하는 것은 올바르지 않은 방향같아서 진행하지는 않았습니다. 그리고, 리듀서 테스트의 경우 저도 사실상 유의미하다고 생각하지는 않지만…! 그래도 테스트를 유지했고, 테스트 설명을 더 자세하게 기재하였습니다 ㅎㅎ ✅ 그 외) 컴포넌트 폴더 구조 수정페이지 단위로 폴더 구조를 나누어서 아래와 같이 수정했습니다.
✅ 그 외) Styled Component 네이밍 수정
그리고 메모이제이션의 경우 아직 메모이제이션이 필요하다!!라는 부분을 딱히 발견하지 못했고, 메모이제이션 훅에 큰 이점을 느끼지 못했기 때문에 아직 적용하지는 않았습니다 :) 정말 좋은 조언과 리뷰, 질문에 대한 답변 감사드립니다..!! 정말 많이 성장하는 한 주가 되었습니다 👍 👍 👍 |
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 on 1 리뷰를 했으니 일부 피드백은 생략하겠습니다
순서의 중요성 생각하기
컴포넌트 내부의 코드조차 의존성이고 순서조차 규칙이 있다면 코드를 파악하고 유지보수하기에도 좋습니다.
Hooks
로 추상화를 계속하고 계시는 것 같은데 지켜지지 않은 순서 그대로 추상화까지 이어지고 있습니다.
eslint-import-sort
규칙처럼 스스로 규칙을 만들고 지켜보세요!
컴포넌트 구성
aa.jsx & aa.stories.js & style.js
로 매우 일관성을 잘 지키고 있으나..
style.js
네이밍이 계속 일관적이고 중복되다보니 코드를 읽을 때 헷갈리긴 하네요ㅠㅠ
(개인적인 의견)
Common 계층
어떤 이유로 만드셨는지 잘 모르겠는데...음
일단은 그 합당한 사유는 잘모르겠네요ㅠㅠ
컴포넌트 네이밍 규칙
- container vs wrapper 헷갈리네요ㅠㅠ
커스텀 훅 분리
굉장히 잘 활용하고 계셔서 좋아요
다만 코멘트 리뷰에 남긴 것처럼 특정 컴포넌트에 의존성을 가지고 있는 경우 해당 컴포넌트의 바로 곁에 위치해주는게 어떨까요?
디렉터리 위치조차 의존성의 일부니까요
고생하셨습니다!!
@@ -3,6 +3,7 @@ module.exports = { | |||
browser: true, |
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.
이런 configure
같은 경우 .js
로 통일하시는걸까요?
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.
네 js 로 통일하기로 한 이유는, configure 파일이 여러개 있을 경우 js 확장자가 우선순위가 제일 높기 때문입니다 :)
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-react": "^7.29.4", |
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.
겹치는 eslint
에 대해 확인해보세요!
import Layout from 'components/Layout/Layout'; | ||
import ImgWrapper from 'components/ImgWrapper/ImgWrapper'; | ||
import Layout from 'components/Common/Layout/Layout'; | ||
import ImgWrapper from 'components/Common/ImgWrapper/ImgWrapper'; |
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 ( | ||
<> | ||
<Styled.Title> | ||
댕냥 배송상품 ({React.Children.count(children)}) |
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.
WoW..!!
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.
children (아마도 CartItem 컴포넌트) 개수에 따라서, 배송상품 개수가 렌더링 되도록 구현하면서 React.Children.count 를 사용할 수 있었어요
그런데 다시 생각해보면! html 구조에 따라서 쉽게 변경될 수 있는 사항이라서 props로 개수를 직접 내려주는게 더 안전할 것 같다고 생각하긴 합니다.
<CheckBox checkedStatus={isChecked} onCheck={onControlToggleCheck} /> | ||
<span>전체 선택 / 해제</span> | ||
</Styled.LeftBox> | ||
<Styled.Button onClick={onControlClickButton}> |
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.
onControl-
이라는 네이밍 규칙이 혼란스럽네요ㅠㅠ
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.
일단..해당 컴포넌트가 CartControlBar
이기 때문에 컴포넌트 관점에서
'ToggleCheck 를 Control 한다혹은
Click Burtton을 Control 한다` 라는 의미를 살려주고 싶었어요.
그런데..그러다보니 동사 두개가 겹치니 매우 헷갈려졌네요 😢
이 부분 더 좋은 네이밍 고민해볼게요! 감사합니다 👍
import { METHOD } from 'constants'; | ||
import useFetch from 'hooks/useFetch'; | ||
|
||
const useCart = () => { |
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.
심플하게 명확한 역할을 하는 Hooks
로 좋네요 💯
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
color: #fff; |
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.
떠도는 컬러를 제거합시다!!
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.
제거 완료하였습니다. 😎
const handleChange = () => { | ||
setChecked((checked) => !checked); | ||
onCheck(); | ||
}; |
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.
useEffect()
가 더 어울리지 않을까요?
@@ -1,5 +1,6 @@ | |||
import PropTypes from 'prop-types'; | |||
import Styled, { buttonSize, buttonColor } from './style'; | |||
import { buttonColor, buttonSize } from './style'; | |||
import * as Styled from './style'; | |||
|
|||
const Button = ({ colorType, sizeType, children, ...rest }) => { |
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.
rest
말고 props
어떨까요?
어떻게 쓰이느냐에 초점을 맞춘 네이밍을 생각해보는거죠
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.
동의합니다..! 단순히 rest 는 '남은 props'라는 의미밖에 없네요! 어떻게 쓰이는지가 배제되어 있는 불친절한 네이밍이었네요!
rest 가 스타일드 컴포넌트에 props로 넘겨짐에도 불구하구요! 그래서 rest->props로 네이밍 수정해주었습니다.
PRODUCT: '/product', | ||
CART: '/cart', |
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.
useRoutes 어때요?!
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.
저도 마침 한번 적용해보고 싶었어서..! useRoutes 로 수정해보았습니다
확실히 라우팅을 객체로 관리할 수 있어서 편리하네요 👍
4a051b7
안녕하세요 ✨ 발리스타님 ✨ 호프입니다! 일주일만에 뵙습니다 :) 저번에 좋은 리뷰 덕분에 스텝2에서도 (나름..?) 저만의 방향성을 잡고 구현할 수 있었어요 :) 감사드립니다!
✨ Step2 구현 사항
✨ Step1 에서부터 추가된 Redux 적용 사항
✨ 커스텀 훅
리듀서 별로 커스텀훅을 분리하지 않고, 비즈니스 로직 단위로 커스텀훅을 분리해서, 사용하는 곳에서 불러오도록 구현해보았습니다..! 그리고 커스텀훅은 무조건 페이지컴포넌트에서만 사용하도록 하였고, 컴포넌트는 props 만 받도록 했어요! (컴포넌트 재사용성을 높이기 위해서 이렇게 구현했습니다. 저번에 주신 조언도 전역 상태관리를 이해하는데 굉장히 도움이 되었어요ㅎㅎ)
그런데 이렇게 사용하는게 맞는지 확신은 안들어서, 구조에 대해서 조언해주시면 감사하겠습니다 : D
✨ 비동기 처리 상태 수정
이전
isLoding, isError
로만 관리했습니다.현재
isLoading, IsSucceed, IsError
✨ 단위테스트 작성 기준
개인적으로..! 컴포넌트 렌더링 테스트는 이미 스토리북 테스트를 작성을 해놓았기 때문에 무의미하다고 판단했습니다. 또한 단위 테스트이기 때문에 비즈니스 로직(기능) 을 중심으로 테스트하는게 맞다고 생각하여,
리듀서 함수
와useReduxState 커스텀 훅
두 가지에 대한 단위 테스트를 작성하였습니다.💙 폴더 구조
👀 고민사항
MSW 핸들러에 로직을 추가하는게 맞을지
성능 최적화 관련