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] 프로젝트 카드 동적 쿼리 조회 로직 구현, 커서 기반 페이지네이션 적용 #74

Merged
merged 3 commits into from
Feb 18, 2024

Conversation

JIN-076
Copy link
Collaborator

@JIN-076 JIN-076 commented Feb 18, 2024

🚀 개발 사항

  • 프로젝트 카드 필터링 조회 로직
  • 커서 기반 페이지네이션 적용

이슈 번호

특이 사항 🫶

@JIN-076 JIN-076 added ⭐️ Feat 새로운 기능 🎯 MVP1 mvp1 개발사항 labels Feb 18, 2024
@JIN-076 JIN-076 self-assigned this Feb 18, 2024
Copy link

github-actions bot commented Feb 18, 2024

Test Results

0 tests   0 ✅  0s ⏱️
0 suites  0 💤
0 files    0 ❌

Results for commit 248f26e.

♻️ This comment has been updated with latest results.

return cursorId != null ? project.id.eq(cursorId) : null;
}

private Slice<Project> checkLastPage(List<Project> projects, Pageable pageable) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

저 같으면 여기서 Slice<Project> 생성까지 안할 것 같아요

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
Collaborator

Choose a reason for hiding this comment

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

함수 두개로 분리한 이유가 있나요?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

명시적인 이름을 갖는 메서드를 따로 두는 게 좋지 않을까 생각했는데 불필요한 것 같아서 메서드 하나로 처리하도록 수정했습니다!

@JIN-076 JIN-076 merged commit ecb7864 into develop Feb 18, 2024
3 checks passed
@JIN-076 JIN-076 deleted the feat/#63-find_project_filtering branch March 4, 2024 09:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⭐️ Feat 새로운 기능 🎯 MVP1 mvp1 개발사항
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[💡 FEAT] 내 프로젝트 카드 조회 하기
2 participants