-
Notifications
You must be signed in to change notification settings - Fork 0
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
[mod] 상세페이지 홈페이지, 인스타, 전화번호 없는 경우에 대한 분기처리, 상세페이지, 검색뷰, 필터뷰 이슈 해결 #229
Conversation
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.
수고하셨숨당🥖
this.toBreadTypePointM2Chip(layoutInflater) | ||
} | ||
) | ||
private fun initBreadTypeChips( |
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.
흠 그러게요 chip 관련이라 같이 따로 확장함수로 빼도 괜찮을 것 같긴 합니당
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.
이게 제가 모든 로직 확장함수로 빼려다가 일부만 뺀게, 리스트로 넘어오는 타입(BreadFilterType, ReviewData 등,, ) 이 다 다른데 거기서 breadType을 generic으로 받아서 접근할 수 가 없음여,,, 가능하면 빼면 좋을 거 같긴 하네염 근데 이게 경우의 수가 겁나 많아서 좀 고민이 필요함!
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.
수고티비입니다
this.toBreadTypePointM2Chip(layoutInflater) | ||
} | ||
) | ||
private fun initBreadTypeChips( |
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.
이게 제가 모든 로직 확장함수로 빼려다가 일부만 뺀게, 리스트로 넘어오는 타입(BreadFilterType, ReviewData 등,, ) 이 다 다른데 거기서 breadType을 generic으로 받아서 접근할 수 가 없음여,,, 가능하면 빼면 좋을 거 같긴 하네염 근데 이게 경우의 수가 겁나 많아서 좀 고민이 필요함!
@@ -53,7 +53,7 @@ data class ResponseDetailReview( | |||
memberNickname = review.memberNickname, | |||
reviewId = review.reviewId, | |||
reviewText = review.reviewText, | |||
recommendKeywordList = review.toRecommentKeyword() | |||
recommendKeywordList = review.toRecommendKeyword() |
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.
ㅋㅋㅋㅋㅋ 오 감사합니다
) { | ||
binding.bakery = bakery | ||
binding.executePendingBindings() | ||
|
||
// TODO: dana 다른 방식이 있는지 고민, 매 바인딩마다 removeAllViews 해야하는가 ? | ||
with(binding.cgBakeryBreadTypes) { | ||
this.removeAllViews() | ||
initBreadTypeChips(this, position) | ||
initBreadTypeChips(this, bakery.breadTypeList) |
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.
오옹 이 방식으로 햇어야 했네여
this.toBreadTypePointM2Chip(layoutInflater) | ||
} | ||
) | ||
private fun initBreadTypeChips( |
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.
나중에 이런 방식으로 다 바꾸는 것도 괜찮을 거 같네염!
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.
음하하 ㅋ.ㅋ
@@ -228,7 +228,7 @@ | |||
|
|||
<TextView | |||
android:id="@+id/tv_item_detail_bakery_info_homepage" | |||
visibility="@{!bakeryInfo.homepageUrl.isEmpty()}" | |||
visibility="@{!bakeryInfo.homepageUrl.trim().isEmpty()}" |
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.
trim()을 적용해야 하는 이유가 있나염?!
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.
아항 ㅜㅜ
Related issue 🛠
Work Description ✏️
Screenshot 📸
Screen_recording_20240218_172516.mp4
Screen_recording_20240218_172213.mp4
Uncompleted Tasks 😅
To Reviewers 📢