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/components/toolbar/navbar/NavbarIntegration.kt

54 lines
1.9 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.components.toolbar.navbar
import androidx.annotation.VisibleForTesting
import androidx.core.view.isVisible
import androidx.lifecycle.LifecycleOwner
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.cancel
import kotlinx.coroutines.flow.distinctUntilChangedBy
import mozilla.components.browser.state.store.BrowserStore
import mozilla.components.concept.toolbar.ScrollableToolbar
import mozilla.components.feature.toolbar.ToolbarBehaviorController
import mozilla.components.lib.state.ext.flowScoped
import mozilla.components.support.base.feature.LifecycleAwareFeature
import org.mozilla.fenix.components.AppStore
/**
* The feature responsible for scrolling behaviour of the navigation bar.
* When the content of a tab is being scrolled, the nav bar will react
* to the user interactions.
*/
class NavbarIntegration(
val toolbar: ScrollableToolbar,
val store: BrowserStore,
val appStore: AppStore,
val viewLifecycleOwner: LifecycleOwner,
val bottomToolbarContainerView: BottomToolbarContainerView,
sessionId: String?,
) : LifecycleAwareFeature {
@VisibleForTesting(otherwise = VisibleForTesting.PRIVATE)
var toolbarController = ToolbarBehaviorController(toolbar, store, sessionId)
var scope: CoroutineScope? = null
override fun start() {
toolbarController.start()
scope = appStore.flowScoped(viewLifecycleOwner) { flow ->
flow.distinctUntilChangedBy { it.isSearchDialogVisible }
.collect { state ->
bottomToolbarContainerView.composeView.isVisible = !state.isSearchDialogVisible
}
}
}
override fun stop() {
toolbarController.stop()
scope?.cancel()
}
}