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/compose/ComposeViewHolder.kt

52 lines
1.7 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.compose
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.ComposeView
import androidx.lifecycle.LifecycleOwner
import androidx.lifecycle.setViewTreeLifecycleOwner
import androidx.recyclerview.widget.RecyclerView
import androidx.savedstate.SavedStateRegistryOwner
import androidx.savedstate.setViewTreeSavedStateRegistryOwner
import org.mozilla.fenix.theme.FirefoxTheme
import org.mozilla.fenix.theme.Theme
/**
* [RecyclerView.ViewHolder] used for Jetpack Compose UI content .
*
* @property composeView [ComposeView] which will be populated with Jetpack Compose UI content.
* @param viewLifecycleOwner [LifecycleOwner] life cycle owner for the view.
*/
abstract class ComposeViewHolder(
val composeView: ComposeView,
viewLifecycleOwner: LifecycleOwner,
) : RecyclerView.ViewHolder(composeView) {
/**
* Composable that contains the content for a specific [ComposeViewHolder] implementation.
*/
@Composable
abstract fun Content()
/**
* Optional override used to disable private browsing theming and only obey dark/light theming.
*/
open val allowPrivateTheme: Boolean = true
init {
composeView.setContent {
FirefoxTheme(theme = Theme.getTheme(allowPrivateTheme = allowPrivateTheme)) {
Content()
}
}
composeView.setViewTreeLifecycleOwner(viewLifecycleOwner)
composeView.setViewTreeSavedStateRegistryOwner(
viewLifecycleOwner as SavedStateRegistryOwner,
)
}
}