You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/tabstray/browser/BrowserTrayInteractor.kt

96 lines
2.7 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.tabstray.browser
import android.content.Context
import androidx.recyclerview.widget.GridLayoutManager
import androidx.recyclerview.widget.RecyclerView
import mozilla.components.concept.tabstray.Tab
import mozilla.components.feature.tabs.TabsUseCases
import org.mozilla.fenix.tabstray.TabsTrayInteractor
import org.mozilla.fenix.tabstray.TrayPagerAdapter
import org.mozilla.fenix.tabstray.ext.numberOfGridColumns
import org.mozilla.fenix.utils.Settings
/**
* For interacting with UI that is specifically for [BaseBrowserTrayList] and other browser
* tab tray views.
*/
interface BrowserTrayInteractor {
/**
* Select the tab.
*/
fun onOpenTab(tab: Tab)
/**
* Close the tab.
*/
fun onCloseTab(tab: Tab)
/**
* If multi-select mode is enabled or disabled.
*/
fun isMultiSelectMode(): Boolean
/**
* Returns the appropriate [RecyclerView.LayoutManager] to be used at [position].
*/
fun getLayoutManagerForPosition(context: Context, position: Int): RecyclerView.LayoutManager
}
/**
* A default implementation of [BrowserTrayInteractor].
*/
class DefaultBrowserTrayInteractor(
private val trayInteractor: TabsTrayInteractor,
private val selectTabUseCase: TabsUseCases.SelectTabUseCase,
private val removeUseCases: TabsUseCases.RemoveTabUseCase,
private val settings: Settings
) : BrowserTrayInteractor {
/**
* See [BrowserTrayInteractor.onOpenTab].
*/
override fun onOpenTab(tab: Tab) {
selectTabUseCase.invoke(tab.id)
trayInteractor.navigateToBrowser()
}
/**
* See [BrowserTrayInteractor.onCloseTab].
*/
override fun onCloseTab(tab: Tab) {
removeUseCases.invoke(tab.id)
}
/**
* See [BrowserTrayInteractor.isMultiSelectMode].
*/
override fun isMultiSelectMode(): Boolean {
// Needs https://github.com/mozilla-mobile/fenix/issues/18513 to change this value
return false
}
override fun getLayoutManagerForPosition(
context: Context,
position: Int
): RecyclerView.LayoutManager {
if (position == TrayPagerAdapter.POSITION_SYNCED_TABS) {
// Lists are just Grids with one column :)
return GridLayoutManager(context, 1)
}
// Normal/Private tabs
val numberOfColumns = if (settings.gridTabView) {
context.numberOfGridColumns
} else {
1
}
return GridLayoutManager(context, numberOfColumns)
}
}