-
Notifications
You must be signed in to change notification settings - Fork 6
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] 그룹 생성 페이지 추가 #509
[Feat] 그룹 생성 페이지 추가 #509
Conversation
- 임시 GroupCreate 타입 추가 - 공개/비공개 그룹 타입 useForm 사용해서 선택하도록 변경
}; | ||
|
||
return ['approve', 'code'].map((type) => ( | ||
<label key={type} className={styles.inputField} htmlFor={type}> |
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.
p3: 저도 useController 훅을 사용하는 편이 html 쪽이 더 자연스럽고 보기 편해져서 좋은 것 같아요!
그리고 아까 그룹 방식 관련해서 잠깐 더 대화가 이어졌었는데, 참여 코드 방식이 아예 빠지고 비공개 그룹은 무조건 가입 신청->승인 방식으로만 진행하기로 다시 결론이 나왔던 것 같습니다.
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/frontend/src/pages/Groups/Create/index.tsx
파일에 작성한GroupJoin
,GroupCreate
타입은 API 명세 작성 전 임시로 작성한 타입입니다. 추후 변경 예정.체크박스, 라디오 버튼은 컴포넌트 추가 후 변경하겠습니다.
기존 react-hook-form의
Controller
대신useController
훅을 사용해 보았습니다.Controller
를 사용하는 것보다 작성한 html 코드를 확인하는 것이 로직에 방해받지 않을 수 있어 더 깔끔하다고 생각하는데, 다른 분들 의견도 궁금합니다.완료한 기능 명세
스크린샷
2024-01-28.20.34.15.mov
리뷰 요청 사항