feat:회원가입 기능 구현#19
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthrough회원가입 폼 컴포넌트를 단일 파일에서 모듈 구조로 재구성하고, FormField의 에러 처리 로직을 업데이트했으며, 새로운 Firebase 기반 회원가입 API 및 폼 검증 로직을 추가했습니다. Changes
Sequence DiagramsequenceDiagram
participant User
participant SignupForm as SignupForm<br/>(Component)
participant useSignupForm as useSignupForm<br/>(Hook)
participant Validators as Validators
participant FirebaseAPI as Firebase API
participant Firestore as Firestore
participant Router as Next.js Router
User->>SignupForm: 입력 (닉네임, 이메일, 비밀번호)
SignupForm->>useSignupForm: 폼 상태 업데이트
useSignupForm->>Validators: 각 필드 검증
Validators-->>useSignupForm: 검증 결과
User->>SignupForm: 회원가입 버튼 클릭
SignupForm->>FirebaseAPI: signupWithEmail(nickname, email, password)
FirebaseAPI->>FirebaseAPI: createUserWithEmailAndPassword
FirebaseAPI->>FirebaseAPI: updateProfile(displayName)
FirebaseAPI->>Firestore: users/{uid} 문서 작성
Firestore-->>FirebaseAPI: 완료
FirebaseAPI-->>SignupForm: user 객체 반환
SignupForm->>User: 성공 알림
SignupForm->>Router: /login으로 이동
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
✨ Finishing touches
📜 Recent review detailsConfiguration used: Organization UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (8)
Comment |
This was referenced Jan 15, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
1) 작업한 이슈번호
1
2) 변경 요약 (What & Why)
3) 스크린샷/동영상 (UI 변경 시)
4) 상세 변경사항
5) 참고사항
Summary by CodeRabbit
릴리스 노트
새로운 기능
개선사항
✏️ Tip: You can customize this high-level summary in your review settings.