-
Notifications
You must be signed in to change notification settings - Fork 1
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
Conversation
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; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기본순은 없어도 될까여? 나머지는 정확합니다 👍
기본 순 추가하고 검색어 자동완성 추가 했습니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다 👍
{/* 최근 검색어 부분 */} | ||
{searchText.length == 0 ? ( | ||
<View style={{}}> | ||
<View style={styles.recentHeader}> | ||
<Text | ||
style={{ | ||
fontSize: 16, | ||
color: COLOR_TEXT_BLACK, | ||
fontWeight: 'bold', | ||
}}> | ||
최근 검색어 | ||
</Text> | ||
<AnimatedButton | ||
onPress={() => { | ||
console.log('최근 검색어 전부 삭제'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
검색페이지에 잇는게 맞군요 ㅎㅎ 👍
검색 페이지 내에서 필터를 사용하지 않고 지도, 리스트 페이지에서 조정하도록 해두었습니다.
[남은 작업]
현재 검색시의 자동완성 API가 스웨거에 없어서 백엔드 연결 준비만 해두었습니다.
홉화면의 오늘의 픽 API완성되는 대로 연결 하면 끝납니다.