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

현위치에서 키워드로 재검색, 검색 시 필터 초기화 #89

Merged
merged 10 commits into from
Feb 21, 2024

Conversation

s6m1n
Copy link
Member

@s6m1n s6m1n commented Feb 19, 2024

⭐️ Issue Number

🚩 Summary

앱 터지는 문제 해결!!
원인 : BasicTextField에서 innerTextField는 한 번만 호출되어야하는데, if문 안에서 여러번 호출될 때마다 앱이 터졌던 것

🛠️ Technical Concerns

최근 검색어 리스트 클릭 시, 해당 키워드에 대해 검색을 진행하고 지도로 이동한 뒤 결과를 띄워주는 과정이 SearchScreen의 BasicTextField에서 keyboardActions가 onDone일 때의 로직과 같다고 판단해 같은 코드를 넣어주었습니다. (if (searchText.isNotBlank()) 부분 제외)

그런데 마커와 바텀시트에 검색 결과 데이터가 아닌, 가게 상세정보 데이터가 노출되는 버그가 발생했습니다.
NaverMapScreen에서 if (mapScreenType == MapScreenType.MAIN)쪽으로 넘어가서 생기는 문제인 것 같은데 RecentSearchItem내부에서 MapScreenType.SEARCH로 업데이트 해줬는데도 이런 문제가 발생하는 원인이 뭘까요?ㅜㅜ

🙂 To Reviwer

📋 To Do

@s6m1n s6m1n added ✨ Feature 기능 관련 작업 🛠️ Fix 오류, 버그 수정 📱 Layout 레이아웃 관련 작업 labels Feb 19, 2024
@s6m1n s6m1n added this to the 4.0 milestone Feb 19, 2024
@s6m1n s6m1n self-assigned this Feb 19, 2024
Copy link
Contributor

@jeeminimini jeeminimini left a comment

Choose a reason for hiding this comment

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

수고하셨습니다!

MainActivity에서 이제 사용안하는 SearchText 삭제하면 좋을 것 같아요!

현재 키워드로 재검색의 경우 로딩 애니메이션이 없더라구요! 추가되면 좋을 것 같습니다.

) {
val mapScreenType by mapViewModel.mapScreenType.collectAsStateWithLifecycle()
val context = LocalContext.current
var backPressedTime = 0L

BackHandler {
if (mapScreenType == MapScreenType.SEARCH) {
mapViewModel.updateIsSearchTerminated(true)
Copy link
Contributor

Choose a reason for hiding this comment

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

이걸 여기에도 추가한 이유가 있나요??

Copy link
Member Author

Choose a reason for hiding this comment

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

MapScreenType.SEARCH에서 BackHandler를 통해 SearchScreen으로 갔다가 다른 키워드를 검색해 MapScreenType.SEARCH으로 넘어가는 경우, 필터 초기화를 해주기 위함입니다! 만약 이 때 필터 초기화가 안 된다면 새로운 키워드에 대한 결과 마커가 필터로 모두 가려졌을 때 사용자에게 혼란을 줄 수 있다고 생각했습니다.

Comment on lines 181 to 189
ReSearchComponent(
isMarkerClicked,
currentSummaryInfoHeight,
isMapGestured,
onReSearchButtonChanged,
onMarkerChanged,
onBottomSheetChanged,
isLoading,
)
Copy link
Contributor

Choose a reason for hiding this comment

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

이 친구 이름도 Button으로 하면 좋을 것 같아요!

Copy link
Member Author

Choose a reason for hiding this comment

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

반영하겠습니다!

@jeeminimini jeeminimini merged commit f814f4a into develop Feb 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ Feature 기능 관련 작업 🛠️ Fix 오류, 버그 수정 📱 Layout 레이아웃 관련 작업
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants