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

[Kan 95, Kan 93] 검색 페이지 생성 및 정렬 기능 추가 #16

Merged
merged 5 commits into from
May 26, 2024

Conversation

sjsjmine129
Copy link
Collaborator

  1. 정렬 기능 추가
  2. 검색 페이지 추가 & 검색 기능 연결 (지도 페이지, 리스트 페이지)

검색 페이지 내에서 필터를 사용하지 않고 지도, 리스트 페이지에서 조정하도록 해두었습니다.

[남은 작업]

  1. 검색시 자동완성 API연결
  2. 홈 화면의 오늘의 픽

현재 검색시의 자동완성 API가 스웨거에 없어서 백엔드 연결 준비만 해두었습니다.
홉화면의 오늘의 픽 API완성되는 대로 연결 하면 끝납니다.

Comment on lines +196 to +209
case '가까운 순':
params.customSort = 'CLOSELY_DESC';
params.latitude = myLocation.latitude;
params.longitude = myLocation.longitude;
break;
case '평점 높은 순':
params.customSort = 'RATING_DESC';
break;
case '댓글 많은 순':
params.customSort = 'REVIEW_COUNT_DESC';
break;
case '찜 많은 순':
params.customSort = 'LIKE_COUNT_DESC';
break;
Copy link
Member

Choose a reason for hiding this comment

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

기본순은 없어도 될까여? 나머지는 정확합니다 👍

@github-actions github-actions bot requested a review from sinkyoungdeok May 26, 2024 11:59
@sjsjmine129
Copy link
Collaborator Author

기본 순 추가하고

검색어 자동완성 추가 했습니다!

Copy link
Member

@sinkyoungdeok sinkyoungdeok left a comment

Choose a reason for hiding this comment

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

고생하셨습니다 👍

Comment on lines +170 to +184
{/* 최근 검색어 부분 */}
{searchText.length == 0 ? (
<View style={{}}>
<View style={styles.recentHeader}>
<Text
style={{
fontSize: 16,
color: COLOR_TEXT_BLACK,
fontWeight: 'bold',
}}>
최근 검색어
</Text>
<AnimatedButton
onPress={() => {
console.log('최근 검색어 전부 삭제');
Copy link
Member

Choose a reason for hiding this comment

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

검색페이지에 잇는게 맞군요 ㅎㅎ 👍

@github-actions github-actions bot requested a review from sinkyoungdeok May 26, 2024 22:29
@sjsjmine129 sjsjmine129 merged commit 459bbe8 into main May 26, 2024
1 check passed
@sjsjmine129 sjsjmine129 deleted the KAN-95 branch May 26, 2024 22:33
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.

2 participants