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/home/recentsyncedtabs/view/RecentSyncedTabViewHolder.kt

84 lines
3.6 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.home.recentsyncedtabs.view
import android.view.View
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.ComposeView
import androidx.lifecycle.LifecycleOwner
import mozilla.components.lib.state.ext.observeAsComposableState
import org.mozilla.fenix.R
import org.mozilla.fenix.components.components
import org.mozilla.fenix.compose.ComposeViewHolder
import org.mozilla.fenix.home.recentsyncedtabs.RecentSyncedTabState
import org.mozilla.fenix.home.recentsyncedtabs.interactor.RecentSyncedTabInteractor
import org.mozilla.fenix.theme.FirefoxTheme
import org.mozilla.fenix.wallpapers.Wallpaper
import org.mozilla.fenix.wallpapers.WallpaperState
/**
* View holder for a recent synced tab item.
*
* @param composeView [ComposeView] which will be populated with Jetpack Compose UI content.
* @param recentSyncedTabInteractor [RecentSyncedTabInteractor] which will have delegated to all
* recent synced tab user interactions.
*/
class RecentSyncedTabViewHolder(
composeView: ComposeView,
viewLifecycleOwner: LifecycleOwner,
private val recentSyncedTabInteractor: RecentSyncedTabInteractor,
) : ComposeViewHolder(composeView, viewLifecycleOwner) {
init {
val horizontalPadding =
composeView.resources.getDimensionPixelSize(R.dimen.home_item_horizontal_margin)
val verticalPadding =
composeView.resources.getDimensionPixelSize(R.dimen.home_item_vertical_margin)
composeView.setPadding(horizontalPadding, verticalPadding, horizontalPadding, 0)
}
companion object {
val LAYOUT_ID = View.generateViewId()
}
@Composable
override fun Content() {
val recentSyncedTabState = components.appStore.observeAsComposableState { state -> state.recentSyncedTabState }
val wallpaperState = components.appStore
.observeAsComposableState { state -> state.wallpaperState }.value ?: WallpaperState.default
val isWallpaperNotDefault = !Wallpaper.nameIsDefault(wallpaperState.currentWallpaper.name)
recentSyncedTabState.value?.let {
val syncedTab = when (it) {
RecentSyncedTabState.None,
RecentSyncedTabState.Loading,
-> null
is RecentSyncedTabState.Success -> it.tabs.firstOrNull()
}
val buttonBackgroundColor = when {
syncedTab != null && isWallpaperNotDefault -> FirefoxTheme.colors.layer1
syncedTab != null -> FirefoxTheme.colors.actionSecondary
else -> FirefoxTheme.colors.layer3
}
val buttonTextColor = when {
wallpaperState.currentWallpaper.cardColorDark != null &&
isSystemInDarkTheme() -> FirefoxTheme.colors.textPrimary
else -> FirefoxTheme.colors.textActionSecondary
}
RecentSyncedTab(
tab = syncedTab,
backgroundColor = wallpaperState.wallpaperCardColor,
buttonBackgroundColor = buttonBackgroundColor,
buttonTextColor = buttonTextColor,
onRecentSyncedTabClick = recentSyncedTabInteractor::onRecentSyncedTabClicked,
onSeeAllSyncedTabsButtonClick = recentSyncedTabInteractor::onSyncedTabShowAllClicked,
onRemoveSyncedTab = recentSyncedTabInteractor::onRemovedRecentSyncedTab,
)
}
}
}