/* 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 import android.view.View import android.view.ViewGroup import androidx.lifecycle.LifecycleOwner import kotlinx.coroutines.ExperimentalCoroutinesApi import kotlinx.coroutines.flow.collect import kotlinx.coroutines.flow.map import mozilla.components.browser.state.selector.getNormalOrPrivateTabs import mozilla.components.browser.state.selector.selectedTab import mozilla.components.browser.state.store.BrowserStore import mozilla.components.concept.toolbar.Toolbar import mozilla.components.lib.state.ext.flowScoped import mozilla.components.support.ktx.android.content.res.resolveAttribute import mozilla.components.support.ktx.kotlinx.coroutines.flow.ifChanged import org.mozilla.fenix.ext.components import java.lang.ref.WeakReference /** * A [Toolbar.Action] implementation that shows a [TabCounter]. */ @OptIn(ExperimentalCoroutinesApi::class) class TabCounterToolbarButton( private val lifecycleOwner: LifecycleOwner, private val onItemTapped: (TabCounterMenu.Item) -> Unit = {}, private val showTabs: () -> Unit ) : Toolbar.Action { private var reference: WeakReference = WeakReference(null) override fun createView(parent: ViewGroup): View { val store = parent.context.components.core.store val metrics = parent.context.components.analytics.metrics val settings = parent.context.components.settings store.flowScoped(lifecycleOwner) { flow -> flow.map { state -> state.getNormalOrPrivateTabs(isPrivate(store)).size } .ifChanged() .collect { tabs -> updateCount(tabs) } } val menu = TabCounterMenu(parent.context, metrics, onItemTapped) menu.updateMenu(settings.toolbarPosition) val view = TabCounter(parent.context).apply { reference = WeakReference(this) setOnClickListener { showTabs.invoke() } setOnLongClickListener { menu.menuController.show(anchor = it) true } addOnAttachStateChangeListener(object : View.OnAttachStateChangeListener { override fun onViewAttachedToWindow(v: View?) { setCount(store.state.getNormalOrPrivateTabs(isPrivate(store)).size) } override fun onViewDetachedFromWindow(v: View?) { /* no-op */ } }) } // Set selectableItemBackgroundBorderless view.setBackgroundResource(parent.context.theme.resolveAttribute( android.R.attr.selectableItemBackgroundBorderless )) return view } override fun bind(view: View) = Unit private fun updateCount(count: Int) { reference.get()?.setCountWithAnimation(count) } private fun isPrivate(store: BrowserStore): Boolean { return store.state.selectedTab?.content?.private ?: false } }