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] Comment 작성, 수정, 삭제 구현 #7

Merged
merged 6 commits into from
Jan 19, 2024
Merged

[Feat] Comment 작성, 수정, 삭제 구현 #7

merged 6 commits into from
Jan 19, 2024

Conversation

Jeongmin39
Copy link
Contributor

✨ PR 유형

어떤 변경 사항이 있나요??

  • 새로운 기능 추가
  • 버그 수정
  • CSS 등 사용자 UI 디자인 변경
  • 코드에 영향을 주지 않는 변경사항(오타 수정, 탭 사이즈 변경, 변수명 변경)
  • 코드 리팩토링
  • 주석 추가 및 수정
  • 문서 수정
  • 테스트 추가, 테스트 리팩토링
  • 빌드 부분 혹은 패키지 매니저 수정
  • 파일 혹은 폴더명 수정
  • 파일 혹은 폴더 삭제

🛠️ 작업내용

Comment 작성, 수정, 삭제 API 구현

📋 추후 진행 상황

위도, 경도 별 Comment 조회 API 구현 중
Store API 구현 예정

📌 리뷰 포인트

빌더를 제대로 사용해서 코드를 구현한 것이 처음이라 다른 분들 코드 참고해서 했습니다
수정이 필요한 부분이 있다면 말씀해 주세요 감사합니다!

✅ Checklist

PR이 다음 요구 사항을 충족하는지 확인해주세요

  • 커밋 메시지 컨벤션에 맞게 작성했습니다
  • 유지-보수를 위해 주석 처리를 잘 작성했습니다

@Jeongmin39 Jeongmin39 added 🚶‍♀️정민 정민이 담당 ✨ feature 기능 추가 labels Jan 18, 2024
@Jeongmin39 Jeongmin39 self-assigned this Jan 18, 2024
@Jeongmin39 Jeongmin39 changed the title Feature/3 [Feat] Comment 작성, 수정, 삭제 구현 Jan 18, 2024
Copy link
Contributor

@choeun7 choeun7 left a comment

Choose a reason for hiding this comment

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

전체적으로 깔끔하게 잘 짜주신 것 같아요! 코멘트 남긴 부분만 다음 commit에 수정해주시면 좋을 것 같습니다 다른 분들도 approve 남기시면 merge 할게요 고생하셨습니다~😊

import lombok.Data;

@Data
public class CommentUpdateReq {
Copy link
Contributor

Choose a reason for hiding this comment

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

CommentUpdateReq 보다 UpdateCommentReq 쪽으로 수정하면 좋을 것 같아요! CommentWriteReq도요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

확인했습니다 ~

@Transactional
public ResponseEntity<?> writeComment(UserPrincipal userPrincipal, CommentWriteReq commentWriteReq) {

Optional<Member> optionalMember = memberRepository.findById(userPrincipal.getId());
Copy link
Contributor

Choose a reason for hiding this comment

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

이 부분도 optionalMember -> memberOptional 쪽으로 수정하면 좋을 것 같습니다:)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

넵 !

Copy link
Member

@arinming arinming left a comment

Choose a reason for hiding this comment

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

댓글 작성, 수정, 삭제 API 확인했습니다 수고 많으셨습니다~!

})
@PostMapping
public ResponseEntity<?> writeComment(
@Parameter(description = "AccessToken을 입력해주세요.", required = true) @CurrentUser UserPrincipal userPrincipal,
Copy link
Member

Choose a reason for hiding this comment

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

이 부분 중복이 되는 것 같은데 중복 코드 줄일 방법이 있는지 찾아봐도 좋을 것 같아욥!

Copy link
Contributor

@sanggae4133 sanggae4133 left a comment

Choose a reason for hiding this comment

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

LGTM!

@choeun7 choeun7 merged commit 324d94c into dev Jan 19, 2024
1 check failed
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.

4 participants