Skip to content

Commit

Permalink
[#599] Review: Rename property and variables
Browse files Browse the repository at this point in the history
  • Loading branch information
paulinea authored and florentmaitre committed Sep 6, 2023
1 parent f416fd1 commit d56cd3e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import com.orange.ods.compose.theme.OdsDisplaySurface

@Composable
fun ButtonsIconToggleGroup(customizationState: ButtonIconCustomizationState) {
val iconToggleButtons =
val icons =
LocalRecipes.current.distinctBy { it.iconResId }.filter { it.iconResId != null }.take(ButtonIconCustomizationState.MaxToggleCount).map { recipe ->
OdsIconToggleButtonsRowIcon(painterResource(id = recipe.iconResId!!), recipe.title, customizationState.enabled.value)
}
Expand All @@ -54,7 +54,7 @@ fun ButtonsIconToggleGroup(customizationState: ButtonIconCustomizationState) {
) {

ToggleButtonsRow(
icons = iconToggleButtons,
icons = icons,
selectedIndex = selectedIndex,
onSelectedIndexChange = { index -> selectedIndex = index },
toggleCount = toggleCount.value
Expand All @@ -64,7 +64,7 @@ fun ButtonsIconToggleGroup(customizationState: ButtonIconCustomizationState) {

InvertedBackgroundColumn {
ToggleButtonsRow(
icons = iconToggleButtons,
icons = icons,
selectedIndex = selectedIndex,
onSelectedIndexChange = { index -> selectedIndex = index },
toggleCount = toggleCount.value,
Expand Down Expand Up @@ -112,17 +112,17 @@ private fun ToggleButtonsRow(
.padding(horizontal = dimensionResource(com.orange.ods.R.dimen.screen_horizontal_margin)),
horizontalArrangement = Arrangement.Center
) {
val buttons = icons.take(toggleCount)
val displayedIcons = icons.take(toggleCount)
UiFramework<OdsIconToggleButtonsGroupBinding>(
compose = {
OdsIconToggleButtonsRow(
icons = buttons,
icons = displayedIcons,
selectedIndex = selectedIndex,
onSelectedIndexChange = onSelectedIndexChange,
displaySurface = displaySurface
)
}, xml = {
this.odsIconToggleButtonsRow.iconToggleButtons = buttons
this.odsIconToggleButtonsRow.icons = displayedIcons
this.selectedIndex = selectedIndex
this.displaySurface = displaySurface
this.odsIconToggleButtonsRow.onSelectedIndexChange = onSelectedIndexChange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import com.orange.ods.xml.utilities.extension.fromXmlAttrValue

class OdsIconToggleButtonsRow @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) : OdsAbstractComposeView(context, attrs) {

var iconToggleButtons by mutableStateOf<List<OdsIconToggleButtonsRowIcon>>(emptyList())
var icons by mutableStateOf<List<OdsIconToggleButtonsRowIcon>>(emptyList())
var selectedIndex by mutableStateOf(0)
var onSelectedIndexChange by mutableStateOf<(Int) -> Unit>({})
var displaySurface by mutableStateOf(OdsDisplaySurface.Default)
Expand All @@ -41,7 +41,7 @@ class OdsIconToggleButtonsRow @JvmOverloads constructor(context: Context, attrs:
@Composable
override fun OdsContent() {
OdsIconToggleButtonsRow(
icons = iconToggleButtons,
icons = icons,
selectedIndex = selectedIndex,
onSelectedIndexChange = onSelectedIndexChange,
displaySurface = displaySurface
Expand Down

0 comments on commit d56cd3e

Please sign in to comment.