mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
Fix crash in CommentsMainFragment
This commit is contained in:
parent
19390368e8
commit
5b6b1a3dfa
@ -34,12 +34,13 @@ class CommentsMainFragment : Fragment() {
|
|||||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
super.onViewCreated(view, savedInstanceState)
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
|
||||||
|
val binding = _binding ?: return
|
||||||
val layoutManager = LinearLayoutManager(requireContext())
|
val layoutManager = LinearLayoutManager(requireContext())
|
||||||
binding.commentsRV.layoutManager = layoutManager
|
binding.commentsRV.layoutManager = layoutManager
|
||||||
binding.commentsRV.setItemViewCacheSize(20)
|
binding.commentsRV.setItemViewCacheSize(20)
|
||||||
|
|
||||||
binding.commentsRV.viewTreeObserver.addOnScrollChangedListener {
|
binding.commentsRV.viewTreeObserver.addOnScrollChangedListener {
|
||||||
val binding = _binding ?: return@addOnScrollChangedListener
|
val viewBinding = _binding ?: return@addOnScrollChangedListener
|
||||||
// save the last scroll position to become used next time when the sheet is opened
|
// save the last scroll position to become used next time when the sheet is opened
|
||||||
viewModel.currentCommentsPosition = layoutManager.findFirstVisibleItemPosition()
|
viewModel.currentCommentsPosition = layoutManager.findFirstVisibleItemPosition()
|
||||||
|
|
||||||
@ -48,11 +49,11 @@ class CommentsMainFragment : Fragment() {
|
|||||||
commentsSheetBinding?.btnScrollToTop?.isVisible = viewModel.currentCommentsPosition != 0
|
commentsSheetBinding?.btnScrollToTop?.isVisible = viewModel.currentCommentsPosition != 0
|
||||||
commentsSheetBinding?.btnScrollToTop?.setOnClickListener {
|
commentsSheetBinding?.btnScrollToTop?.setOnClickListener {
|
||||||
// scroll back to the top / first comment
|
// scroll back to the top / first comment
|
||||||
binding.commentsRV.smoothScrollToPosition(0)
|
viewBinding.commentsRV.smoothScrollToPosition(0)
|
||||||
viewModel.currentCommentsPosition = 0
|
viewModel.currentCommentsPosition = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!binding.commentsRV.canScrollVertically(1)) {
|
if (!viewBinding.commentsRV.canScrollVertically(1)) {
|
||||||
viewModel.fetchNextComments()
|
viewModel.fetchNextComments()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user