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/SelectionMenuIntegration.kt

42 lines
1.4 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.annotation.VisibleForTesting
import mozilla.components.browser.menu.BrowserMenuBuilder
import org.mozilla.fenix.tabstray.NavigationInteractor
import org.mozilla.fenix.tabstray.TabsTrayInteractor
import org.mozilla.fenix.tabstray.TabsTrayStore
import org.mozilla.fenix.utils.Do
class SelectionMenuIntegration(
private val context: Context,
private val store: TabsTrayStore,
private val navInteractor: NavigationInteractor,
private val trayInteractor: TabsTrayInteractor
) {
private val menu by lazy {
SelectionMenu(context, ::handleMenuClicked)
}
/**
* Builds the internal menu items list. See [BrowserMenuBuilder.build].
*/
fun build() = menu.menuBuilder.build(context)
@VisibleForTesting
internal fun handleMenuClicked(item: SelectionMenu.Item) {
Do exhaustive when (item) {
is SelectionMenu.Item.BookmarkTabs -> navInteractor.onSaveToBookmarks(
store.state.mode.selectedTabs
)
is SelectionMenu.Item.DeleteTabs -> trayInteractor.onDeleteTabs(
store.state.mode.selectedTabs
)
}
}
}