-
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
#152 [fix] todo, badge QA 반영 #158
Conversation
…to feature/#152-adapt-todo-qa
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.
또, 멤버별보기, 요일별보기를 클릭시 fragment를 계속 replace하기 때문에, 첫 진입 시 pager 효과가 불가피합니다..
와 앱잼 때 생각나네 고생하셨습니당
class MemberTodoMapperTest { | ||
private val mockTodoEntity = ToDoEntity( | ||
isChecked = false, | ||
todoId = 1, | ||
todoName = "테스트", | ||
nicknames = listOf("KWY"), | ||
status = null | ||
) |
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.
아 계속 mapper 에러 나서 답답해서 에러 찾으려고 만들었는데,
clean project 했더니 사라진 오류... 😢
잃어버린 내 1시간...
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.
ㅠ3ㅠ
@@ -78,6 +78,7 @@ class DailyFragment : BindingFragment<FragmentDailyBinding>(R.layout.fragment_da | |||
) | |||
} | |||
} | |||
delay(10) |
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.
혹시 라이프 사이클 문제는 아닐까 싶은데 뷰가 그려지기 전에 이게 동작한거라면 안먹지 않을까 싶어서... 딜레이를 줌으로써 뷰가 그려진 후의 라이프사이클에 들어간 것이 아닐까...
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.
고생하셨습니다!
@@ -78,6 +78,7 @@ class DailyFragment : BindingFragment<FragmentDailyBinding>(R.layout.fragment_da | |||
) | |||
} | |||
} | |||
delay(10) |
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.
혹시 라이프 사이클 문제는 아닐까 싶은데 뷰가 그려지기 전에 이게 동작한거라면 안먹지 않을까 싶어서... 딜레이를 줌으로써 뷰가 그려진 후의 라이프사이클에 들어간 것이 아닐까...
enum class TodoState { | ||
IDLE, PROGRESS | ||
} |
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.
여기서만 쓰여서 entity로 분리안한걸까요?
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.
ui 단에서만 쓰이는 거라서 여기에 선언했습니다..!
…to feature/#152-adapt-todo-qa # Conflicts: # app/src/main/java/hous/release/android/presentation/todo/detail/daily/DailyFragment.kt # app/src/main/java/hous/release/android/presentation/todo/detail/member/MemberFragment.kt
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.
고생하셨습니다ㅏ
@@ -78,6 +78,7 @@ class DailyFragment : BindingFragment<FragmentDailyBinding>(R.layout.fragment_da | |||
) | |||
} | |||
} | |||
delay(10) |
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.
보고갑니다..
class MemberTodoMapperTest { | ||
private val mockTodoEntity = ToDoEntity( | ||
isChecked = false, | ||
todoId = 1, | ||
todoName = "테스트", | ||
nicknames = listOf("KWY"), | ||
status = null | ||
) |
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.
ㅠ3ㅠ
관련 이슈
KakaoTalk_20221206_052454726.mp4
작업한 내용
PR 포인트
viewpager의 뷰 구현이 느린지,
currItem = uiState.tabindex
이게 안 먹습니다.그래서 delay(10)을 줬다는... ㅠ_ㅠ
위 delay 문제랑 이 문제 때문에 activity에 멤버별 보기, 요일별 보기 뷰를 visible, unvisible로 바꿀지...고민입니다....