-
Notifications
You must be signed in to change notification settings - Fork 2
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
refactor: Form 컴포넌트 구조 리팩토링 #277
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.
수고하셨습니다!
수정을 하는 화면이 전부 한 페이지 내에서 일어나는 거니까 이렇게 템플릿 쪽에서 다루는 것도 좋네요!
<CategoryAddHeader | ||
categoryTitle={'프로젝트'} | ||
onAddItem={() => setIsOpenStates((prev) => ({ ...prev, project: 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.
해당 부분이 Form 밖에 나오기 이전(삭제된 src/components/organisms/ResumeCategoryProject/ProjectForm.tsx 파일)에는 isEdit에 따라 표시 유무가 바뀐 것 같습니다. 이전과 조금 다르게 보일까요?
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.
보이는 건 이전과 같습니다!
이력서 카테고리 상세 컴포넌트인 ResumeCategoryDetails
에서, 사용자가 수정을 클릭한 경우에는 Form 컴포넌트
를 렌더링하고 그렇지 않은 경우에는 (default) Detail 컴포넌트
를 렌더링하고 있어요.
이전에는 Form 컴포넌트
가 CategoryAddHeader
까지 포함하고 있었어서, 사용자가 수정을 클릭한 경우 CategoryAddHeader
가 중복으로 나타나게 돼버려서 (이미 EditResumeTemplate
에 Form컴포넌트
가 있으니까요) isEdit인 경우에는 렌더링하지 않도록 했었습니다.
지금은 CategoryAddHeader
를 바깥으로 분리해서 이 문제가 해결되니 분기처리를 없애줬습니다!
💻 스크린샷 (선택사항)
📃 PR 설명
📃 참고사항
🔎 PR포인트 및 궁금한 점