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

チャットのスクロール制御リファクタ #279

Open
wants to merge 5 commits into
base: development
Choose a base branch
from

Conversation

mori-atsushi
Copy link
Collaborator

close #276

viewからviewModelに持ってきた。
若干まだ汚い。

@@ -45,7 +47,12 @@ class ChatFragmentViewModel @Inject constructor(
ChatViewModel(ObservableField(it))
}
.subscribe {
val isScrolledToEnd = scrolledToEnd.get()
scrolledToEnd.set(false)
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

ホントはこの意味不明なこの文を書きたくない。

スクロールされたタイミングで scrolledToEnd を更新してるんだけど、データを追加した時にスクロールはされないので、実際の状態と保持している状態が食い違ってしまう。
そして、 false から true になる時のみメソッドが呼ばれるので、明示的に false にしてあげないとスクロールされないことになる。

Copy link
Member

Choose a reason for hiding this comment

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

自動でこれなってほしいのは分からなくも無いんだけど,まあしょうがないし違和感の原因はsubscribeのなかでごちゃごちゃ書いていることなのでこの一連の処理をメソッドで切り出せばいいのかなぁとは思う.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

しょうがないのかなぁ…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

チャットのスクロール制御
2 participants