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

feat: 취소/등록 버튼 컴포넌트 구현 #9

Merged
merged 7 commits into from
Jan 12, 2025

Conversation

hyuke81
Copy link
Contributor

@hyuke81 hyuke81 commented Jan 10, 2025

🚩 관련 이슈

📋 구현 기능 명세

  • 취소/등록 버튼 컴포넌트 구현
  • 취소 -> 이전 페이지 이동
  • 등록 -> 등록 완료 페이지 이동 (페이지 navigate 필요)

📌 PR Point

  • 기존의 test버튼 하단에 확인 가능하도록 임시로 넣어뒀습니다

  • 이전 페이지 이동은 현재는 console로도 확인 가능하도록 작성했습니다

  • 아직 등록 완료 페이지 구현 전이라 주석으로 처리해뒀습니다 (현재는 console로만 확인 가능)

  • 폰트 사이즈 일단 피그마의 28px로 구현했는데 좀 많이 큰 거 같아서 이건 다시 말씀드려야 할 듯 함다

📸 결과물 스크린샷

image

🛠️ 테스트

🚀 API Endpoint

@hyuke81 hyuke81 added the feature 기능 구현, 추가 label Jan 10, 2025
@hyuke81 hyuke81 self-assigned this Jan 10, 2025
Copy link
Contributor

@minjeong9919 minjeong9919 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 14 to 20
if (onCancel) {
onCancel();
} else {
navigate(-1); //기본 동작 -> 이전페이지 이동
console.log('취소 버튼 클릭');
}
};
Copy link
Contributor

Choose a reason for hiding this comment

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

if else 문보다 early return 문을 사용하시는 건 어떠신가용

Suggested change
if (onCancel) {
onCancel();
} else {
navigate(-1); //기본 동작 -> 이전페이지 이동
console.log('취소 버튼 클릭');
}
};
if (onCancel) {
return onCancel();
}
navigate(-1); //기본 동작 -> 이전페이지 이동
console.log('취소 버튼 클릭');
};

Copy link
Contributor Author

Choose a reason for hiding this comment

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

early return문 적용했슴니당!

Comment on lines 23 to 29
if (onSubmit) {
onSubmit();
} else {
// 등록 완료 페이지로 이동
// navigate('/success'); // 등록 완료 페이지 경로 설정 필요
console.log('등록 완료 페이지로 이동');
}
Copy link
Contributor

Choose a reason for hiding this comment

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

이것두요!

Copy link
Contributor

@gyuhochoime gyuhochoime left a comment

Choose a reason for hiding this comment

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

고생하셨습니다.

@hyuke81 hyuke81 merged commit 6337e58 into BrainPix:develop Jan 12, 2025
1 check passed
@gaaahee
Copy link
Contributor

gaaahee commented Jan 12, 2025

수고하셨습니다!!

@hyuke81 hyuke81 linked an issue Jan 12, 2025 that may be closed by this pull request
@hyuke81 hyuke81 deleted the feature/cancle_register_button branch January 12, 2025 08:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 구현, 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: 취소/등록 버튼 컴포넌트 구현
4 participants