-
Notifications
You must be signed in to change notification settings - Fork 4
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
[9주차] : 개발 사항 Merge(develop → master) #76
Merged
Conversation
This file contains 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
학생증업로드는 일단 업로드하는 기능만 있어요
- /signup URL로 계좌정보를 담은 데이터를 POST 요청 - 모킹 결과, 정상 작동함을 확인
- 코드를 복잡하게 보이게 하는 console.log 제거 - 일부 코드에 주석을 추가하여 설명 보충 - 원본 공고글을 따로 저장해놓지 않아 필터적용 이후에 다시 All 클릭시 공고글이 삭제되는 부분 수정 - lastpage : false인 경우에 대해 렌더링 과정에서 버그가 있는데, 이는 API 연동을 통해 잡아야 할 것으로 보임 - 모킹으로 주는 데이터는 세부 로직을 적용하지 않아, 정확한 디버깅을 위해서는 API 연동이 필요함
- FormProvider로 자식 컴포넌트에 methods 뿌림 (props drilling 막음) - 필수 항목에 작성을 마치고 제출하면 post 요청(msw)
- 주문 정보, 요청 사항, 마감기한 - 입력의 에러 반환에 쓰이는 상수 데이터
- 상수 데이터 import - 하위까지 register 전달하지 않고, templates 단계에서 register 사용
[feat] : 계좌정보 입력 & 공고현황페이지 모킹 적용 및 코드 디버깅
[feat]: 학생증 업로드, 공고상세페이지 수정
[feat]: 공고 작성 페이지 수정 및 msw 테스트
[feat]: 관리자 학생 인증 페이지, 공고 작성 페이지 (useQuery, useMutation 위주)
[9주차] : 9주차 개발 코드 Merge
[9주차] : 개발 사항 Merge(weekly-9 → develop)
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.
PR 타입(하나 이상의 PR 타입을 선택해주세요)
작업 사항
AdminMyPageTemplate(관리자)
GuestMyPageTemplate(학생)
StudentMyPageTemplate(일반 유저, 학생증 인증 x 상태)
PickerMatchTemplate(사용자가 매칭완료된 글을 클릭)(자신의 글 x)
PickerNoMatchTemplate(사용자가 매칭전 공고글 클릭)(자신의 글 x)
WriterMatchTemplate(사용자가 매칭완료된 자신의 공고글을 클릭)
WriterNoMatchTemplate(사용자가 매칭전 자신의 공고글 클릭)
date.js
코드 수정console.log
제거lastpage : false
인 경우에 대해 렌더링 과정에서 버그가 있는데, 이는 API 연동을 통해 잡아야 할 것으로 보임useFormContext
를 사용하여props drilling
을 막으려고 함 (노력은 했는데 전이랑 똑같은 것 같기도..)msw
적용npm install @hookform/error-message
해주세요!)utils/dateAndTime.js
에 정의)constant
로 분리useMutation
적용useMutation
적용NaN
시간 렌더링 버그Swal
이 OK만 띄우는 버그div
가 아닌dijv
로 되어있던 부분 수정관련 PR