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 #158] 채팅 요청 상세 조회 API #159

Merged
merged 13 commits into from
Nov 23, 2024

Conversation

hyun2371
Copy link
Member

관련 이슈

📑 작업 상세 내용

  • 채팅 요청 상세 조회 API 추가

@hyun2371 hyun2371 added the ✨ feat 기능 추가 label Nov 22, 2024
@hyun2371 hyun2371 requested a review from dudxo November 22, 2024 06:53
@hyun2371 hyun2371 self-assigned this Nov 22, 2024
@hyun2371 hyun2371 linked an issue Nov 22, 2024 that may be closed by this pull request
1 task
Copy link

github-actions bot commented Nov 22, 2024

Code Coverage

Overall Project 84.9% -0.04% 🍏
Files changed 96.72% 🍏

File Coverage
ChatInquiryController.java 100% 🍏
ChatRoom.java 100% 🍏
ChatRoomService.java 95.41% 🍏
ChatInquiryService.java 90.7% 🍏
ChatInquiry.java 84.62% -2.56% 🍏

Copy link

github-actions bot commented Nov 22, 2024

Test Results

 28 files   28 suites   15s ⏱️
129 tests 129 ✅ 0 💤 0 ❌
130 runs  130 ✅ 0 💤 0 ❌

Results for commit dcb9a19.

♻️ This comment has been updated with latest results.

Copy link
Collaborator

@dudxo dudxo left a comment

Choose a reason for hiding this comment

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

고생하셨습니다~

@@ -70,6 +71,12 @@ public CreateChatInquiryResponse createChatInquiry(CreateChatInquiryRequest requ
return ChatInquiryMapper.toCreateChatInquiryResponse(chatInquiry);
}

@Transactional(readOnly = true)
public ChatInquiryDetailResponse getChatInquiryById(Long chatInquiryId, Member member) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

ChatInquiry를 조회해서 찾는 getChatInquiryById(Long chatInquiryId)와 혼동되네요!

채팅 요청 상세 조회를 하는 메서드니, getChatInquiryDetails(Long chatInquiryId, Member member)는 어떤가요?

Copy link
Member Author

Choose a reason for hiding this comment

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

코드 컨벤션이 따라서 여태까지 이렇게 작성한거라서 지금 바꾸는게 오히려 더 헷갈릴 것 같아요..!
repository 접근함수는 private이기도 하고, 반환타입도 다르니까 보고 구분할 수 있지 않을까 싶습니다.

Copy link
Collaborator

Choose a reason for hiding this comment

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

getChatInquiryDetailsById가 맞는거 아닐까요 그러면?

Copy link
Member Author

Choose a reason for hiding this comment

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

- 단건 조회 : get + 목적어 + by + 필드
- 여러건 조회 : get + 목적어s + by + 필드

여러 건 조회 메서드명이 getChatInquiresByMember니까 단건 조회는 getChatInquiryById가 맞는 것 같습니다~


//then
Assertions.assertThat(response.chatPartner().memberId())
.isEqualTo(answerer.getId());
Copy link
Collaborator

Choose a reason for hiding this comment

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

줄바꿈은 일부로 하신건가요?

Copy link
Member Author

Choose a reason for hiding this comment

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

넵 가독성 생각해서 줄바꿈 했습니다

Copy link
Collaborator

Choose a reason for hiding this comment

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

음..이전에도 이런 aseertThat().isEqualTo()는 줄바꿈을 하지 않으셨었었고, 되게 길지도 않아서 한 줄로 하는게 더 좋아보여요
그리고 static import를 하면 더 짧아지고요

Copy link
Member Author

Choose a reason for hiding this comment

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

네 수정하겠습니다~

@hyun2371 hyun2371 requested a review from dudxo November 23, 2024 05:41
@hyun2371 hyun2371 merged commit 26bfa04 into dev Nov 23, 2024
3 checks passed
@hyun2371 hyun2371 deleted the feat/#158/chat-inquiry-detail-api branch November 23, 2024 08:24
dudxo added a commit that referenced this pull request Nov 23, 2024
* [test] : 채택 시 크레딧 정합성 테스트

* [feat] : QuestionPostSimpleQueryRepo 생성

- fetch join을 활용한 한방 쿼리 추가

* [feat] : AnswerSimpleQueryRepo 생성

- fetch join을 활용한 한방 쿼리 추가

* [feat] : 답변채택 쿼리 개수 개선 v2 추가

* [feat] : 답변채택 쿼리 개수 개선 v2 API 추가

* [test] : 답변채택 쿼리 개수 개선 v2 단위테스트 추가

* [test] : 답변채택 쿼리 개수 개선 v2 통합테스트 추가

* [�Refactor #151] JWT Subject 개인정보 제거 (#154)

* [refactor] JWT 생성 로직 변경

- JWT 생성시 subject에 개인정보(이메일)이 아닌 PK값이 들어가도록 변경
- 검증 토큰을 이용한 인증 객체 생성 시 subject 이메일 -> PK 변경에 따라 PK로 회원 찾도록 변경

* [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링

* [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링

* [refactor] : 토큰 generate 메서드 파라미터 변경으로 인한 리팩토링

* [refactor #156] 채팅 요청 목록 API에서 채팅 파트너 조회 로직 리팩토링 (#157)

* [feat] : 채팅 요청에 createdAt 필드 추가

* [feat] : 채팅 요청 테스트 픽스쳐에 createdAt 추가

* [feat] : 채팅 파트너 구하는 로직 DTO에 추가

* [refactor] : 채팅 파트너 구하는 로직 DTO로 이동

* [style] : 코드 리포멧팅

* [test] : createdAt 포함된 testFixture 사용

* [refactor] : V1, V2 통합

* [test] : V1, V2 통합에 따른 테스트 코드 삭제

* [feat #158] 채팅 요청 상세 조회 API (#159)

* [feat] : 채팅 요청 상세 조회 응답 추가

* [feat] : 채팅 요청 상세 조회 비즈니스 로직 추가

* [feat] : 채팅 요청 상세 조회 비즈니스 로직 테스트

* [feat] : 채팅 요청 상세 조회 API 메서드 추가

* [test] : 채팅 요청 상세 조회 API 메서드 테스트

* [feat] : 채팅 요청 API pk 필드명 수정

* [rename] : memberInfo DTO 위치 이동

* [remove] : 불필요한 예외 로직 처리 삭제

* [refactor] : 채팅 파트너 구하는 로직 도메인으로 이동

* [refactor] : 채팅 파트너 구하는 로직 mapper가 아닌 서비스 내에서 호출

* [style] : 코드 리포멧팅

* [style] : 줄바꿈 취소

* [test] : V1, V2 통합에 따른 테스트 코드 수정

* [feat] : QuestionPost 단건조회 메서드 추가

* [test]: 정합성 테스트 disabled 처리

* [refactor]: fetch join 함수 repository로 이동

---------

Co-authored-by: Son Gahyun <[email protected]>
Co-authored-by: hs12 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feat 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

✨ 채팅 요청 상세 조회 API
2 participants