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/browser/TabPreview.kt

90 lines
3.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.browser
import android.content.Context
import android.util.AttributeSet
import android.view.Gravity
import android.view.LayoutInflater
import android.view.View
import android.widget.FrameLayout
import androidx.appcompat.content.res.AppCompatResources
import androidx.core.view.doOnNextLayout
import androidx.core.view.isVisible
import androidx.core.view.updateLayoutParams
import mozilla.components.browser.state.selector.getNormalOrPrivateTabs
import mozilla.components.browser.state.selector.selectedTab
import mozilla.components.browser.thumbnails.loader.ThumbnailLoader
import mozilla.components.concept.base.images.ImageLoadRequest
import org.mozilla.fenix.R
import org.mozilla.fenix.components.toolbar.IncompleteRedesignToolbarFeature
import org.mozilla.fenix.components.toolbar.ToolbarPosition
import org.mozilla.fenix.databinding.TabPreviewBinding
import org.mozilla.fenix.ext.components
import org.mozilla.fenix.ext.settings
import org.mozilla.fenix.theme.ThemeManager
import kotlin.math.min
class TabPreview @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyle: Int = 0,
) : FrameLayout(context, attrs, defStyle) {
private val binding = TabPreviewBinding.inflate(LayoutInflater.from(context), this)
private val thumbnailLoader = ThumbnailLoader(context.components.core.thumbnailStorage)
init {
if (context.settings().toolbarPosition == ToolbarPosition.TOP) {
binding.fakeToolbar.updateLayoutParams<LayoutParams> {
gravity = Gravity.TOP
}
binding.fakeToolbar.background = AppCompatResources.getDrawable(
context,
ThemeManager.resolveAttribute(R.attr.bottomBarBackgroundTop, context),
)
}
val isNavBarEnabled = IncompleteRedesignToolbarFeature(context.settings()).isEnabled
binding.tabButton.isVisible = !isNavBarEnabled
binding.menuButton.isVisible = !isNavBarEnabled
// Change view properties to avoid confusing the UI tests
binding.tabButton.findViewById<View>(R.id.counter_box).id = View.NO_ID
binding.tabButton.findViewById<View>(R.id.counter_text).id = View.NO_ID
}
override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
super.onLayout(changed, left, top, right, bottom)
val store = context.components.core.store
store.state.selectedTab?.let {
val count = store.state.getNormalOrPrivateTabs(it.content.private).size
binding.tabButton.setCount(count)
}
binding.previewThumbnail.translationY = if (context.settings().toolbarPosition == ToolbarPosition.TOP) {
binding.fakeToolbar.height.toFloat()
} else {
0f
}
}
/**
* Load a preview for a thumbnail.
*/
fun loadPreviewThumbnail(thumbnailId: String, isPrivate: Boolean) {
doOnNextLayout {
val previewThumbnail = binding.previewThumbnail
val thumbnailSize = min(previewThumbnail.height, previewThumbnail.width)
thumbnailLoader.loadIntoView(
previewThumbnail,
ImageLoadRequest(thumbnailId, thumbnailSize, isPrivate),
)
}
}
}