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

호미 정렬, 슬랙 메시지 prod 환경에서만 오도록 수정 #165

Merged
merged 5 commits into from
Oct 18, 2022

Conversation

orijoon98
Copy link
Member

✒️ 관련 이슈번호

🔑 Key Changes

  1. 성향 테스트에 한번이라도 참여한 사람들의 순서를 고정시키기 위해 인덱스를 추가하기보다는 createdAt 으로 비교하는게 맞다고 생각해서 다시 기존처럼 null 처리 하는 방식으로 수정했습니다.
  2. 클래스에 Comparable implement 해서 성향테스트 참여한 사람은 앞으로, 안한 사람은 뒤로 정렬되도록 했고
  3. 본인을 맨 앞으로 빼는 로직은 유틸화해서 처리했습니다!
  4. 슬랙 메시지 관련해서 @Profile 은 관련 환경일 때만 Bean 으로 등록하게 하는 어노테이션인데 SlackService 를 ControllerExceptionAdvice 에서 사용중이라 @value 사용해서 prod 환경일 때만 사용하도록 수정해뒀습니다!

📢 To Reviewers

  • 와다다다 하긴 했는데.. 수정 필요한 부분이나 더 좋은 의견 제시해주세용 하핳

@orijoon98 orijoon98 added 🐼 혁준 🐼 혁준이가 했다아~ 🔧 Fix 간단한 수정 labels Oct 17, 2022
@orijoon98 orijoon98 self-assigned this Oct 17, 2022
Comment on lines 133 to 146
public int compareTo(Onboarding o) {
TestScore t1 = getTestScore();
TestScore t2 = o.getTestScore();
if (t1 == null && t2 != null) {
return 1;
}
if (t1 != null && t2 == null) {
return -1;
}
if (t1 == null && t2 == null) {
return 0;
}
return t1.getCreatedAt().compareTo(t2.getCreatedAt());
}
Copy link
Member

Choose a reason for hiding this comment

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

성향테스트를 안한 사람 중 방 참여 시간 순서로 정렬하는 부분은 없는 것 같아요 ?!

@@ -40,9 +41,10 @@ public UserPersonalityInfoResponse getUsersInfo(Long userId) {
List<Participate> participates = room.getParticipates();
List<Onboarding> onboardings = participates.stream()
.map(Participate::getOnboarding)
.sorted(Comparator.comparing(onboarding -> onboarding.getTestScore().getUpdatedAt()))
.sorted(Onboarding::compareTo)
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
Member

@hyejungg hyejungg left a comment

Choose a reason for hiding this comment

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

좋습니당 ! 반영 감사합니다 ~~

@orijoon98 orijoon98 merged commit 24253ee into develop Oct 18, 2022
@orijoon98 orijoon98 deleted the fix/#164 branch October 18, 2022 05:03
@orijoon98 orijoon98 added this to the Hous 1차 릴리즈 milestone Oct 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐼 혁준 🐼 혁준이가 했다아~ 🔧 Fix 간단한 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

성향테스트 참여 순서 정렬 수정
2 participants