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: 내가 개설한 스터디 조회 #558

Open
wants to merge 1 commit into
base: BE/develop
Choose a base branch
from

Conversation

kevstevie
Copy link
Collaborator

😋 작업한 내용

  • 내가 개설한 스터디 조회 구현

🙏 PR Point

  • 기존 쿼리로 구현했습니다

👍 관련 이슈


기획의 어떤 부분을 구현 / 수정했는가 (굉장히 상세하게 적어주세요, 해당 커밋의 링크, 코드의 위치를 남겨주면 더욱 좋습니다.)

밑은 예시입니다.

시작되면서 스터디의 주 몇 회 정보를 유저가 실제로 선택한 일 수로 수정

  • StudyService의 createStudy 메서드에서 PeriodOfRound 를 받지 않도록 수정했습니다. 해당커밋
  • Study의 start 메서드에서 파라미터로 시작한 날짜를 받도록 구현하였습니다.
  • 날짜(월화수목금토일)를 뜻하는 Enum을 Study 패키지에 추가하였습니다.
  • flyway에서 해당 엔티티에 필요할 칼럼을 수정했습니다.

스터디가 더 이상 종료되지 않도록 수정

  • 상동

@kevstevie kevstevie self-assigned this Oct 19, 2023
@github-actions
Copy link

Test Results

112 tests  +3   112 ✔️ +3   19s ⏱️ ±0s
  22 suites ±0       0 💤 ±0 
  22 files   ±0       0 ±0 

Results for commit 17082a1. ± Comparison against base commit f68d536.

Copy link
Collaborator

@poi1649 poi1649 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다 주드 딱히 커멘트 드릴 부분은 없네고, 궁금한 점 커멘트 달았습니다.


public List<StudyListItemResponse> findAllStudiesCreatedByMember(Member member) {
List<Study> studies = studyRepository.findAllByMasterIdAndProcessingStatus(member.getId(), ProcessingStatus.RECRUITING, Role.MASTER);
return toRecruitingStudyResponse(new SliceImpl<>(studies));
Copy link
Collaborator

Choose a reason for hiding this comment

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

그냥 List를 넘겨주는 거에 비해 이점이 있나요?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

사실 슬라이스 내부기능을 전혀 사용하지 않기 때문에 리스트로 해도 상관없긴 합니다

Copy link
Member

@yujamint yujamint left a comment

Choose a reason for hiding this comment

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

주드 안녕하세요. 개설한 스터디의 상태를 어떤 걸 보여줄 것인지에 대해 의견을 남겼습니다.
이건 확인하고 넘어가면 좋을 것 같아서 일단 RC 할게요.

@@ -315,4 +316,9 @@ public void exit(Member member, Long studyId) {
Study study = findStudyById(studyId);
study.exit(member);
}

public List<StudyListItemResponse> findAllStudiesCreatedByMember(Member member) {
List<Study> studies = studyRepository.findAllByMasterIdAndProcessingStatus(member.getId(), ProcessingStatus.RECRUITING, Role.MASTER);
Copy link
Member

Choose a reason for hiding this comment

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

이거 개설한 스터디는 모집 중인 것만 보기로 결정된 사안인가요??
사용자가 <개설한 스터디>와 같은 필터링을 선택했을 때, 모집 중인 것만 보여줄 것이라고 예상하기 보다는 개설한 전체 스터디를 보여주길 예상하지 않을까 싶네요.
차라리 전체를 넘겨주되, 정렬하여 모집 중인 것을 상위로 보여주는 게 낫지 않을까요??

UI 측면에서 해결할 수 있다면 OK긴 합니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants