Skip to content

Commit e19401e

Browse files
refactor: Regroup swipe refresh logic that goes together (#2153)
2 parents a1686da + bc7e533 commit e19401e

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

app/src/main/java/com/infomaniak/mail/ui/main/folder/ThreadListFragment.kt

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Infomaniak Mail - Android
3-
* Copyright (C) 2022-2024 Infomaniak Network SA
3+
* Copyright (C) 2022-2025 Infomaniak Network SA
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -41,7 +41,6 @@ import androidx.navigation.fragment.findNavController
4141
import androidx.navigation.fragment.navArgs
4242
import androidx.recyclerview.widget.LinearLayoutManager
4343
import androidx.recyclerview.widget.RecyclerView.Adapter.StateRestorationPolicy
44-
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
4544
import com.ernestoyaquello.dragdropswiperecyclerview.DragDropSwipeRecyclerView.ListOrientation
4645
import com.ernestoyaquello.dragdropswiperecyclerview.DragDropSwipeRecyclerView.ListOrientation.DirectionFlag
4746
import com.ernestoyaquello.dragdropswiperecyclerview.listener.OnItemSwipeListener
@@ -91,7 +90,7 @@ import com.infomaniak.lib.core.R as RCore
9190
import com.infomaniak.lib.core.utils.Utils as UtilsCore
9291

9392
@AndroidEntryPoint
94-
class ThreadListFragment : TwoPaneFragment(), SwipeRefreshLayout.OnRefreshListener {
93+
class ThreadListFragment : TwoPaneFragment() {
9594

9695
private var _binding: FragmentThreadListBinding? = null
9796
val binding get() = _binding!! // This property is only valid between onCreateView and onDestroyView
@@ -278,18 +277,16 @@ class ThreadListFragment : TwoPaneFragment(), SwipeRefreshLayout.OnRefreshListen
278277
if (rightIsSet) enableSwipeDirection(DirectionFlag.RIGHT) else disableSwipeDirection(DirectionFlag.RIGHT)
279278
}
280279

281-
override fun onRefresh() {
282-
if (mainViewModel.isDownloadingChanges.value == true) return
283-
mainViewModel.forceRefreshThreads()
284-
}
285-
286280
private fun setupDensityDependentUi() = with(binding) {
287281
val paddingTop = resources.getDimension(RCore.dimen.marginStandardMedium).toInt()
288282
threadsList.setPaddingRelative(top = if (localSettings.threadDensity == COMPACT) paddingTop else 0)
289283
}
290284

291285
private fun setupOnRefresh() {
292-
binding.swipeRefreshLayout.setOnRefreshListener(this)
286+
binding.swipeRefreshLayout.setOnRefreshListener {
287+
if (mainViewModel.isDownloadingChanges.value == true) return@setOnRefreshListener
288+
mainViewModel.forceRefreshThreads()
289+
}
293290
}
294291

295292
private fun setupAdapter() {

0 commit comments

Comments
 (0)