mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
Added bottom options dialog
This commit is contained in:
parent
cfd04f95e3
commit
74f7bbb6d5
@ -0,0 +1,120 @@
|
|||||||
|
package org.thoughtcrime.securesms.ui.components
|
||||||
|
|
||||||
|
import androidx.compose.foundation.clickable
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Alignment.Companion.CenterVertically
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.res.painterResource
|
||||||
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import org.thoughtcrime.securesms.ui.theme.LocalColors
|
||||||
|
import org.thoughtcrime.securesms.ui.theme.LocalDimensions
|
||||||
|
import org.thoughtcrime.securesms.ui.theme.LocalType
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A bottom sheet dialog that displays a list of options.
|
||||||
|
*
|
||||||
|
* @param options The list of options to display.
|
||||||
|
* @param onDismissRequest Callback to be invoked when the dialog is to be dismissed.
|
||||||
|
* @param onOptionClick Callback to be invoked when an option is clicked.
|
||||||
|
* @param optionTitle A function that returns the title of an option.
|
||||||
|
* @param optionIconRes A function that returns the icon resource of an option.
|
||||||
|
*/
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
|
@Composable
|
||||||
|
fun <T> BottomOptionsDialog(
|
||||||
|
options: Collection<T>,
|
||||||
|
onDismissRequest: () -> Unit,
|
||||||
|
onOptionClick: (T) -> Unit,
|
||||||
|
optionTitle: (T) -> String,
|
||||||
|
optionIconRes: (T) -> Int,
|
||||||
|
) {
|
||||||
|
val sheetState = rememberModalBottomSheetState()
|
||||||
|
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = onDismissRequest,
|
||||||
|
sheetState = sheetState,
|
||||||
|
shape = RoundedCornerShape(
|
||||||
|
topStart = LocalDimensions.current.xsSpacing,
|
||||||
|
topEnd = LocalDimensions.current.xsSpacing
|
||||||
|
),
|
||||||
|
dragHandle = {},
|
||||||
|
containerColor = LocalColors.current.backgroundSecondary,
|
||||||
|
) {
|
||||||
|
for (option in options) {
|
||||||
|
MemberModalBottomSheetOptionItem(
|
||||||
|
text = optionTitle(option),
|
||||||
|
leadingIcon = optionIconRes(option),
|
||||||
|
onClick = {
|
||||||
|
onOptionClick(option)
|
||||||
|
onDismissRequest()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun MemberModalBottomSheetOptionItem(
|
||||||
|
leadingIcon: Int,
|
||||||
|
text: String,
|
||||||
|
onClick: () -> Unit
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.clickable(onClick = onClick)
|
||||||
|
.padding(LocalDimensions.current.smallSpacing)
|
||||||
|
.fillMaxWidth(),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(LocalDimensions.current.spacing),
|
||||||
|
verticalAlignment = CenterVertically,
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
painterResource(leadingIcon),
|
||||||
|
modifier = Modifier.size(24.dp),
|
||||||
|
contentDescription = null)
|
||||||
|
Text(
|
||||||
|
modifier = Modifier.weight(1f),
|
||||||
|
style = LocalType.current.large,
|
||||||
|
text = text,
|
||||||
|
textAlign = TextAlign.Start,
|
||||||
|
color = LocalColors.current.text,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
data class BottomOptionsDialogItem(
|
||||||
|
val title: String,
|
||||||
|
val iconRes: Int,
|
||||||
|
val onClick: () -> Unit,
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A convenience function to display a [BottomOptionsDialog] with a collection of [BottomOptionsDialogItem].
|
||||||
|
*/
|
||||||
|
@Composable
|
||||||
|
fun BottomOptionsDialog(
|
||||||
|
items: Collection<BottomOptionsDialogItem>,
|
||||||
|
onDismissRequest: () -> Unit
|
||||||
|
) {
|
||||||
|
BottomOptionsDialog(
|
||||||
|
options = items,
|
||||||
|
onDismissRequest = onDismissRequest,
|
||||||
|
onOptionClick = { it.onClick() },
|
||||||
|
optionTitle = { it.title },
|
||||||
|
optionIconRes = { it.iconRes }
|
||||||
|
)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user