Skip to content
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

Merged
merged 10 commits into from
Feb 28, 2024

Conversation

leeminhee119
Copy link
Member

💻 스크린샷 (선택사항)

📃 PR 설명

  • Form 컴포넌트들
    • 변경 전: CategoryAddHeader(+ 버튼이 있는 카테고리별 헤더)의 역할과, Form을 감싸는 BorderBox의 display 여부 등의 기능까지 포함
    • 변경 후: 위 기능들을 상위 컴포넌트 (EditResumeTemplate, FeedbackReflectTemplate) 로 분리
  • 기타 안 쓰는 파일 제거�

📃 참고사항

🔎 PR포인트 및 궁금한 점

@leeminhee119 leeminhee119 added the 🛠 Refactor 리팩토링한 경우(리팩토링 과정에서 파일 삭제, 이동 포함) label Feb 25, 2024
@leeminhee119 leeminhee119 self-assigned this Feb 25, 2024
Copy link
Contributor

@backward99 backward99 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다!
수정을 하는 화면이 전부 한 페이지 내에서 일어나는 거니까 이렇게 템플릿 쪽에서 다루는 것도 좋네요!

Comment on lines +65 to +68
<CategoryAddHeader
categoryTitle={'프로젝트'}
onAddItem={() => setIsOpenStates((prev) => ({ ...prev, project: true }))}
/>
Copy link
Contributor

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에 따라 표시 유무가 바뀐 것 같습니다. 이전과 조금 다르게 보일까요?

Copy link
Member Author

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가 중복으로 나타나게 돼버려서 (이미 EditResumeTemplateForm컴포넌트가 있으니까요) isEdit인 경우에는 렌더링하지 않도록 했었습니다.
지금은 CategoryAddHeader를 바깥으로 분리해서 이 문제가 해결되니 분기처리를 없애줬습니다!

@leeminhee119 leeminhee119 merged commit f73c1b1 into main Feb 28, 2024
1 check passed
@leeminhee119 leeminhee119 deleted the refactor/resume-category-form branch February 28, 2024 13:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🛠 Refactor 리팩토링한 경우(리팩토링 과정에서 파일 삭제, 이동 포함)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants