-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add configurator for Switch in CatalogApp
- Loading branch information
1 parent
bddc45a
commit 975cccb
Showing
5 changed files
with
196 additions
and
13 deletions.
There are no files selected for viewing
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
184 changes: 184 additions & 0 deletions
184
...main/kotlin/com/adevinta/spark/catalog/configurator/samples/toggles/SwitchConfigurator.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,184 @@ | ||
/* | ||
* Copyright (c) 2023 Adevinta | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
package com.adevinta.spark.catalog.configurator.samples.toggles | ||
|
||
import androidx.compose.foundation.layout.Arrangement | ||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.foundation.layout.fillMaxWidth | ||
import androidx.compose.foundation.layout.height | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.foundation.rememberScrollState | ||
import androidx.compose.foundation.verticalScroll | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.remember | ||
import androidx.compose.runtime.setValue | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.platform.LocalFocusManager | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.text.font.FontWeight | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import androidx.compose.ui.unit.dp | ||
import com.adevinta.spark.SparkTheme | ||
import com.adevinta.spark.catalog.R | ||
import com.adevinta.spark.catalog.model.Configurator | ||
import com.adevinta.spark.catalog.themes.SegmentedButton | ||
import com.adevinta.spark.catalog.util.SampleSourceUrl | ||
import com.adevinta.spark.components.menu.DropdownMenuItem | ||
import com.adevinta.spark.components.text.Text | ||
import com.adevinta.spark.components.textfields.SelectTextField | ||
import com.adevinta.spark.components.textfields.TextField | ||
import com.adevinta.spark.components.toggles.ContentSide | ||
import com.adevinta.spark.components.toggles.Switch | ||
import com.adevinta.spark.components.toggles.SwitchLabelled | ||
import com.adevinta.spark.components.toggles.ToggleIntent | ||
|
||
public val SwitchConfigurator: Configurator = Configurator( | ||
name = "Switch", | ||
description = "Switch configuration", | ||
sourceUrl = "$SampleSourceUrl/SwitchSamples.kt", | ||
) { | ||
SwitchSample() | ||
} | ||
|
||
@Preview( | ||
showBackground = true, | ||
) | ||
@Composable | ||
private fun SwitchSample() { | ||
val scrollState = rememberScrollState() | ||
val focusManager = LocalFocusManager.current | ||
Column( | ||
verticalArrangement = Arrangement.spacedBy(16.dp), | ||
modifier = Modifier.verticalScroll(scrollState), | ||
) { | ||
var isEnabled by remember { mutableStateOf(true) } | ||
var contentSide by remember { mutableStateOf(ContentSide.End) } | ||
var label: String? by remember { mutableStateOf(null) } | ||
var state by remember { mutableStateOf(false) } | ||
var intent by remember { mutableStateOf(ToggleIntent.Main) } | ||
val onClick = { checked: Boolean -> state = checked } | ||
ConfigedSwitch( | ||
label = label, | ||
onClick = onClick, | ||
checked = state, | ||
isEnabled = isEnabled, | ||
intent = intent, | ||
contentSide = contentSide, | ||
) | ||
SwitchLabelled( | ||
checked = isEnabled, | ||
onCheckedChange = { | ||
isEnabled = it | ||
focusManager.clearFocus() | ||
}, | ||
) { | ||
Text( | ||
text = stringResource(id = R.string.configurator_component_screen_enabled_label), | ||
modifier = Modifier.fillMaxWidth(), | ||
) | ||
} | ||
val intents = ToggleIntent.values() | ||
var expanded by remember { mutableStateOf(false) } | ||
SelectTextField( | ||
modifier = Modifier.fillMaxWidth(), | ||
value = intent.name, | ||
onValueChange = {}, | ||
readOnly = true, | ||
label = stringResource(id = R.string.configurator_component_screen_intent_label), | ||
expanded = expanded, | ||
onExpandedChange = { expanded = !expanded }, | ||
onDismissRequest = { expanded = false }, | ||
dropdownContent = { | ||
intents.forEach { | ||
DropdownMenuItem( | ||
text = { Text(it.name) }, | ||
onClick = { | ||
intent = it | ||
expanded = false | ||
}, | ||
) | ||
} | ||
}, | ||
) | ||
Column { | ||
Text( | ||
text = stringResource(id = R.string.configurator_component_toggle_content_side_label), | ||
modifier = Modifier.padding(bottom = 8.dp), | ||
style = SparkTheme.typography.body2.copy(fontWeight = FontWeight.Bold), | ||
) | ||
val contentSides = ContentSide.values() | ||
val contentSidesLabel = contentSides.map { it.name } | ||
SegmentedButton( | ||
options = contentSidesLabel, | ||
selectedOption = contentSide.name, | ||
onOptionSelect = { | ||
contentSide = ContentSide.valueOf(it) | ||
focusManager.clearFocus() | ||
}, | ||
modifier = Modifier | ||
.fillMaxWidth() | ||
.height(48.dp), | ||
) | ||
} | ||
TextField( | ||
modifier = Modifier.fillMaxWidth(), | ||
value = label.orEmpty(), | ||
onValueChange = { | ||
label = it | ||
}, | ||
label = stringResource(id = R.string.configurator_component_screen_textfield_label), | ||
placeholder = stringResource(id = R.string.configurator_component_toggle_placeholder_label), | ||
) | ||
} | ||
} | ||
|
||
@Composable | ||
private fun ConfigedSwitch( | ||
modifier: Modifier = Modifier, | ||
label: String?, | ||
onClick: (Boolean) -> Unit, | ||
checked: Boolean, | ||
isEnabled: Boolean, | ||
contentSide: ContentSide, | ||
intent: ToggleIntent, | ||
) { | ||
if (label.isNullOrBlank().not()) { | ||
SwitchLabelled( | ||
modifier = modifier, | ||
enabled = isEnabled, | ||
checked = checked, | ||
onCheckedChange = onClick, | ||
contentSide = contentSide, | ||
intent = intent, | ||
) { Text(text = label!!) } | ||
} else { | ||
Switch( | ||
modifier = modifier, | ||
enabled = isEnabled, | ||
checked = checked, | ||
onCheckedChange = onClick, | ||
intent = intent, | ||
) | ||
} | ||
} |
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
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