This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #21854 - Split the big ComposeView in 3 smaller ones
This would shorten the time needed to layout all Pocket recommended stories content in one go, though it may lead to shorten hiccups over a bigger period of time.
- Loading branch information
1 parent
9b7e07a
commit 5bd6f1c
Showing
8 changed files
with
277 additions
and
104 deletions.
There are no files selected for viewing
111 changes: 111 additions & 0 deletions
111
app/src/main/java/org/mozilla/fenix/home/pocket/PocketCategoriesViewHolder.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/* 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.pocket | ||
|
||
import android.view.View | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.Spacer | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.foundation.layout.height | ||
import androidx.compose.foundation.layout.wrapContentHeight | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.platform.ComposeView | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import androidx.compose.ui.unit.dp | ||
import androidx.lifecycle.LifecycleOwner | ||
import androidx.recyclerview.widget.RecyclerView | ||
import mozilla.components.lib.state.ext.observeAsComposableState | ||
import org.mozilla.fenix.R | ||
import org.mozilla.fenix.compose.ComposeViewHolder | ||
import org.mozilla.fenix.compose.SectionHeader | ||
import org.mozilla.fenix.home.HomeFragmentStore | ||
import org.mozilla.fenix.theme.FirefoxTheme | ||
|
||
internal const val POCKET_CATEGORIES_SELECTED_AT_A_TIME_COUNT = 8 | ||
|
||
/** | ||
* [RecyclerView.ViewHolder] for displaying the list of [PocketRecommendedStoriesCategory]s from [HomeFragmentStore]. | ||
* | ||
* @param composeView [ComposeView] which will be populated with Jetpack Compose UI content. | ||
* @param viewLifecycleOwner [LifecycleOwner] to which this Composable will be tied to. | ||
* @param store [HomeFragmentStore] containing the list of Pocket stories categories to be displayed. | ||
* @param interactor [PocketStoriesInteractor] callback for user interaction. | ||
*/ | ||
class PocketCategoriesViewHolder( | ||
composeView: ComposeView, | ||
viewLifecycleOwner: LifecycleOwner, | ||
private val store: HomeFragmentStore, | ||
private val interactor: PocketStoriesInteractor | ||
) : ComposeViewHolder(composeView, viewLifecycleOwner) { | ||
|
||
@Composable | ||
override fun Content() { | ||
val horizontalPadding = | ||
composeView.resources.getDimensionPixelSize(R.dimen.home_item_horizontal_margin) | ||
composeView.setPadding(horizontalPadding, 0, horizontalPadding, 0) | ||
|
||
val categories = store | ||
.observeAsComposableState { state -> state.pocketStoriesCategories }.value | ||
val categoriesSelections = store | ||
.observeAsComposableState { state -> state.pocketStoriesCategoriesSelections }.value | ||
|
||
Column { | ||
Spacer(Modifier.height(24.dp)) | ||
|
||
PocketTopics( | ||
categories = categories ?: emptyList(), | ||
categoriesSelections = categoriesSelections ?: emptyList(), | ||
onCategoryClick = interactor::onCategoryClicked | ||
) | ||
} | ||
} | ||
|
||
companion object { | ||
val LAYOUT_ID = View.generateViewId() | ||
} | ||
} | ||
|
||
@Composable | ||
private fun PocketTopics( | ||
categories: List<PocketRecommendedStoriesCategory> = emptyList(), | ||
categoriesSelections: List<PocketRecommendedStoriesSelectedCategory> = emptyList(), | ||
onCategoryClick: (PocketRecommendedStoriesCategory) -> Unit | ||
) { | ||
Column { | ||
SectionHeader( | ||
text = stringResource(R.string.pocket_stories_categories_header), | ||
modifier = Modifier | ||
.fillMaxWidth() | ||
.wrapContentHeight(align = Alignment.Top) | ||
) | ||
|
||
Spacer(Modifier.height(17.dp)) | ||
|
||
PocketStoriesCategories( | ||
categories = categories, | ||
selections = categoriesSelections, | ||
onCategoryClick = onCategoryClick, | ||
modifier = Modifier | ||
.fillMaxWidth() | ||
) | ||
} | ||
} | ||
|
||
@Composable | ||
@Preview | ||
private fun PocketCategoriesViewHolderPreview() { | ||
FirefoxTheme { | ||
PocketTopics( | ||
categories = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor" | ||
.split(" ") | ||
.map { PocketRecommendedStoriesCategory(it) }, | ||
categoriesSelections = emptyList(), | ||
onCategoryClick = {} | ||
) | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
app/src/main/java/org/mozilla/fenix/home/pocket/PocketRecommendationsHeaderViewHolder.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* 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/. */ | ||
|
||
@file:Suppress("MagicNumber") | ||
|
||
package org.mozilla.fenix.home.pocket | ||
|
||
import android.view.View | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.Spacer | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.foundation.layout.height | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.platform.ComposeView | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import androidx.compose.ui.unit.dp | ||
import androidx.lifecycle.LifecycleOwner | ||
import androidx.recyclerview.widget.RecyclerView | ||
import org.mozilla.fenix.R | ||
import org.mozilla.fenix.compose.ComposeViewHolder | ||
import org.mozilla.fenix.theme.FirefoxTheme | ||
|
||
/** | ||
* [RecyclerView.ViewHolder] for displaying the Pocket feature header. | ||
* | ||
* @param composeView [ComposeView] which will be populated with Jetpack Compose UI content. | ||
* @param viewLifecycleOwner [LifecycleOwner] to which this Composable will be tied to. | ||
* @param interactor [PocketStoriesInteractor] callback for user interaction. | ||
*/ | ||
class PocketRecommendationsHeaderViewHolder( | ||
composeView: ComposeView, | ||
viewLifecycleOwner: LifecycleOwner, | ||
private val interactor: PocketStoriesInteractor | ||
) : ComposeViewHolder(composeView, viewLifecycleOwner) { | ||
|
||
@Composable | ||
override fun Content() { | ||
val horizontalPadding = | ||
composeView.resources.getDimensionPixelSize(R.dimen.home_item_horizontal_margin) | ||
composeView.setPadding(horizontalPadding, 0, horizontalPadding, 0) | ||
|
||
Column { | ||
Spacer(Modifier.height(24.dp)) | ||
|
||
PoweredByPocketHeader( | ||
interactor::onLearnMoreClicked, | ||
modifier = Modifier.fillMaxWidth() | ||
) | ||
} | ||
} | ||
|
||
companion object { | ||
val LAYOUT_ID = View.generateViewId() | ||
} | ||
} | ||
|
||
@Composable | ||
@Preview | ||
fun PocketRecommendationsFooterViewHolderPreview() { | ||
FirefoxTheme { | ||
PoweredByPocketHeader({}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.