Created
January 19, 2021 17:15
-
-
Save alorma/87880d54a4134ba2c9328299d8a93a35 to your computer and use it in GitHub Desktop.
Dropdown component for Compose
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
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.ColumnScope | |
import androidx.compose.foundation.layout.fillMaxWidth | |
import androidx.compose.foundation.layout.wrapContentWidth | |
import androidx.compose.material.* | |
import androidx.compose.material.icons.Icons | |
import androidx.compose.material.icons.filled.ArrowDropDown | |
import androidx.compose.material.icons.filled.ArrowDropUp | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.mutableStateOf | |
import androidx.compose.runtime.remember | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.focus.isFocused | |
import androidx.compose.ui.focus.onFocusChanged | |
import androidx.compose.ui.tooling.preview.Preview | |
@Composable | |
fun <T> DropdownComponent( | |
items: List<T>, | |
itemFormatter: (T) -> String = { itemFormat -> itemFormat.toString() }, | |
defaultValue: T? = null, | |
label: String? = null, | |
onItemSelected: (T) -> Unit | |
) { | |
val textState = remember { mutableStateOf(defaultValue?.let(itemFormatter) ?: "") } | |
val isExpanded = remember { mutableStateOf(false) } | |
TextField( | |
modifier = Modifier | |
.fillMaxWidth() | |
.onFocusChanged { focusState -> | |
isExpanded.value = focusState.isFocused | |
}, | |
value = textState.value, | |
readOnly = true, | |
trailingIcon = { | |
IconButton(onClick = { isExpanded.value = !isExpanded.value }) { | |
DropdownIcon(isExpanded = isExpanded.value) | |
} | |
}, | |
label = label?.let { labelText -> { Text(text = labelText) } }, | |
onValueChange = { }, | |
) | |
DropdownMenu( | |
dropdownModifier = Modifier.fillMaxWidth(), | |
toggle = { | |
}, | |
expanded = isExpanded.value, | |
onDismissRequest = { isExpanded.value = false }) { | |
items.forEach { item -> | |
DropdownItemComponent(item) { clickItem -> | |
textState.value = itemFormatter(clickItem) | |
isExpanded.value = false | |
onItemSelected(clickItem) | |
} | |
} | |
} | |
} | |
@Composable | |
private fun DropdownIcon(isExpanded: Boolean) { | |
val iconResource = if (isExpanded) { | |
Icons.Default.ArrowDropUp | |
} else { | |
Icons.Default.ArrowDropDown | |
} | |
Icon(iconResource) | |
} | |
@Composable | |
fun <T> ColumnScope.DropdownItemComponent( | |
item: T, | |
itemFormatter: (T) -> String = { itemFormat -> itemFormat.toString() }, | |
onClick: (T) -> Unit | |
) { | |
DropdownMenuItem( | |
modifier = Modifier.fillMaxWidth(), | |
onClick = { | |
onClick(item) | |
}) { | |
Text( | |
text = itemFormatter(item), | |
modifier = Modifier | |
.wrapContentWidth() | |
.align(alignment = Alignment.Start) | |
) | |
} | |
} | |
@Preview( | |
name = "DropDown", | |
showBackground = true | |
) | |
@Composable | |
fun DropDownComponentPreview() { | |
val items = listOf( | |
Forlayo("A"), | |
Forlayo("B"), | |
Forlayo("C"), | |
) | |
DropdownComponent( | |
items = items, | |
defaultValue = items.first(), | |
itemFormatter = { forlayo -> forlayo.text } | |
) { | |
} | |
} | |
@Preview( | |
name = "DropDown Item", | |
showBackground = true | |
) | |
@Composable | |
fun DropDownItemComponentPreview() { | |
Column(modifier = Modifier.fillMaxWidth()) { | |
DropdownItemComponent( | |
item = Forlayo("ABCD"), | |
itemFormatter = { forlayo -> forlayo.text } | |
) { | |
} | |
} | |
} | |
data class Forlayo(val text: String) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment