-
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
[Feat/#32] 폴더리스트 페이지 기능 구현 #44
Conversation
임시 데이터를 만들고 그 정보에 맞게 폴더라 로딩되도록 구현.
header의 선택 버튼이 활성화 되어 있는지 page와 공유되어야해서 각 페이지에 정의하도록 이동.
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.
수고하셨습니다👍
코드 보면서 몇 가지 궁금한 점 리뷰로 남겼습니다.
추가로 header에서 select버튼을 해제하고 나면 선택한 폴더도 선택 취소 될 수 있도록 하는 설정이 필요할 것 같아요!
app/src/components/Header/index.tsx
Outdated
return ( | ||
<> | ||
<header className={styles.header}> | ||
<div className={styles.home_btn_div}> | ||
<button className={styles.home_btn} type="button" /> | ||
<button className={styles.home_btn} type="button"> | ||
'' |
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.
아이콘 내부에 ' ' 글자가 표시됩니다 오타인가요?
app/src/components/Header/index.tsx
Outdated
onClick={handleSelectBtnClick} | ||
/> | ||
> | ||
'' |
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.
이것도...!
{hasSaveBtn && <input type="button" className={styles.save_btn} />} | ||
{hasLogoutBtn && <input type="button" className={styles.logout_btn} />} | ||
{hasBackBtn && <input type="button" className={styles.back_btn} />} |
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.
button
에서 input type="button"
으로 바꾸신 이유가 있나요?
@sewonkimm |
header의 button이 button태그와 input태그가 혼용되고 있어 통일.
선택된 폴더의 개수가 메뉴 활성화에 영향을 미치므로 컴포넌트 위치 header에서 페이지로 이동.
#32
이 정보를 불러와서 폴더를 로딩하도록 구현.
-> 후에 비동기로 정보를 불러오도록 수정해야함.
-> 선택 후의 기능에 대해서는 구현 예정.