-
Notifications
You must be signed in to change notification settings - Fork 43
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
[정혜연] Sprint6 #242
The head ref may contain hidden characters: "React-\uC815\uD61C\uC5F0-sprint6"
[정혜연] Sprint6 #242
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.
혜연님!
정말 코드 깔끔하게 잘 작성해주고 계시네요 ㅎㅎ
이제 기능들 조금 어려운 내용이 생기면서 조금 막힐법도 한데
콤포넌트 크기도 상당히 적절하게 잘 나누어 가면서 개발하고 계십니다.
가격을 입력하는 부분에서 placeholder가 아니라 0이 뜬다고 하셨잖아요
그건 우리 기본값이 0으로 설정되어있고, input type number가 생각할때 숫자 0은 값이 이미 입력되어있다고 판단해서 placeholder를 안보여주는거에요.
이걸 어떻게 처리하면 좋을지 한번 고민해보는것도 좋겠습니다!
고생 너무 많으셨고 자세한 내용은 코드리뷰에 남겨두었으니 참고 부탁드릴게요.
// URLSearchParams을 이용하면 파라미터 값을 자동으로 쉽게 인코딩할 수 있어요. | ||
const query = new URLSearchParams(params).toString(); |
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.
👍🏻
if (!response.ok) { | ||
throw new Error(`HTTP error: ${response.status}`); | ||
} |
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.
fetch의 Response.ok에 대해 한번 살펴보고 더 적절한 에러 핸들링을 해보면 좋겠어요!
https://developer.mozilla.org/en-US/docs/Web/API/Response/ok
method: "POST", | ||
body: formData, |
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 body = await response.json(); | ||
return body; | ||
} catch (error) { | ||
console.error("Failed to fetch products:", error); |
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.
fetch가 아니라 생성에 실패했다는 로깅이 필요해요
function DropdownList({ onSortSelection }) { | ||
return ( | ||
<div className="dropdownList"> | ||
<div className="dropdownItem" onClick={() => onSortSelection("recent")}> |
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.
클릭할 수 있는 요소인만큼 버튼으로 두면 어떨까요?
setIsSubmitting(true); | ||
result = await createProduct(formData); | ||
} catch (error) { | ||
setSubmittingError(error); |
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.
submittingError
를 문자열로 변경하고, 에러 메시지를 더 사용자 친화적으로 표시하는 것이 좋아요
setSubmittingError(error.message || "상품 등록 중 오류가 발생했습니다.");
const getPageSize = () => { | ||
const width = window.innerWidth; | ||
if (width < 768) { | ||
// Mobile viewport | ||
return 4; | ||
} else if (width < 1280) { | ||
// Tablet viewport | ||
return 6; | ||
} else { | ||
// Desktop viewport | ||
return 10; | ||
} | ||
}; |
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.
오 너무 좋은데요,
다만 조금 더 욕심 내어보면, getPageSize는 전달받은 width값에 따라 달라지도록 처리해주는게 이후 코드 관리차원에서 더 수월할거에요
function getPageSize(viewportWidth) {
...
}
const fetchSortedData = async ({ orderBy, page, pageSize }) => { | ||
const products = await getProducts({ orderBy, page, pageSize }); | ||
setItemList(products.list); | ||
setTotalPageNum(Math.ceil(products.totalCount / pageSize)); | ||
}; |
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.
orderBy, page, pageSize 변경에 따라 getProducts 함수가 호출이 되어야 하죠?
그렇다면 이렇게 fetchSortedData를 한번 래핑해서 만들기 보다는, 바로 useEffect에서 이 로직들이 실행되도록 처리해보면 좀 더 직관적으로 보일 수 있지 않을까 생각을 해요
|
||
const handleSortSelection = (sortOption) => { | ||
setOrderBy(sortOption); | ||
setIsDropdownVisible(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.
dropdown이 보이고 안보이고에 대한 판단 여부는 DropdownList가 지니고 있어야 할 것 같아요.
즉, DropdownList콤포넌트가 다음과 같이 만들어져 관리되면 어떨까 싶어요
function SortOptions({ value, onValueChange }) {
const [open, setOpen] = useState(false)
function handleOptionClick(option) { onValueChange(option) }
return <div>
<button onClick={() => setOpen(prev => !prev)}>{value}</button>
{ open && ... }
</div>
}
const handleResize = () => { | ||
setPageSize(getPageSize()); | ||
}; | ||
|
||
// 화면 크기 변경할 때마다 pageSize를 다시 계산해 넣음 | ||
window.addEventListener("resize", handleResize); | ||
fetchSortedData({ orderBy, page, pageSize }); | ||
|
||
// Cleanup function | ||
return () => { | ||
window.removeEventListener("resize", handleResize); | ||
}; |
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.
이걸 관리하는 커스텀 훅을 만들어보면 어떨까요 ㅎㅎ
요구사항
기본
상품 등록
심화
상품 등록
주요 변경사항
스크린샷
멘토에게
-� 제작한 부분까지만 올리겠습니다..!