2022-04-23 12:05:00 -04:00
|
|
|
package eu.kanade.presentation.components
|
|
|
|
|
|
|
|
import androidx.compose.foundation.combinedClickable
|
|
|
|
import androidx.compose.foundation.layout.Box
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
import androidx.compose.foundation.layout.Row
|
|
|
|
import androidx.compose.foundation.layout.fillMaxWidth
|
2022-04-23 12:42:35 -04:00
|
|
|
import androidx.compose.foundation.layout.heightIn
|
2022-04-23 12:05:00 -04:00
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
import androidx.compose.foundation.layout.size
|
|
|
|
import androidx.compose.foundation.layout.widthIn
|
|
|
|
import androidx.compose.material3.Icon
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
import androidx.compose.ui.Alignment
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
import androidx.compose.ui.graphics.vector.ImageVector
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
import eu.kanade.presentation.util.horizontalPadding
|
|
|
|
|
2022-04-23 12:42:35 -04:00
|
|
|
@Composable
|
|
|
|
fun Divider() {
|
|
|
|
androidx.compose.material3.Divider(
|
|
|
|
color = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.2f),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-04-23 12:05:00 -04:00
|
|
|
@Composable
|
|
|
|
fun PreferenceRow(
|
|
|
|
title: String,
|
|
|
|
icon: ImageVector? = null,
|
|
|
|
onClick: () -> Unit = {},
|
|
|
|
onLongClick: () -> Unit = {},
|
|
|
|
subtitle: String? = null,
|
|
|
|
action: @Composable (() -> Unit)? = null,
|
|
|
|
) {
|
|
|
|
val height = if (subtitle != null) 72.dp else 56.dp
|
|
|
|
|
2022-04-23 12:42:35 -04:00
|
|
|
val titleTextStyle = MaterialTheme.typography.bodyLarge.copy(
|
|
|
|
color = MaterialTheme.colorScheme.onSurface,
|
|
|
|
)
|
|
|
|
val subtitleTextStyle = MaterialTheme.typography.bodyMedium.copy(
|
|
|
|
color = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.75f),
|
2022-04-23 12:05:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
Row(
|
|
|
|
modifier = Modifier
|
|
|
|
.fillMaxWidth()
|
2022-04-23 12:42:35 -04:00
|
|
|
.heightIn(min = height)
|
2022-04-23 12:05:00 -04:00
|
|
|
.combinedClickable(
|
|
|
|
onLongClick = onLongClick,
|
|
|
|
onClick = onClick
|
|
|
|
),
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
) {
|
|
|
|
if (icon != null) {
|
|
|
|
Icon(
|
|
|
|
imageVector = icon,
|
|
|
|
modifier = Modifier
|
|
|
|
.padding(horizontal = horizontalPadding)
|
|
|
|
.size(24.dp),
|
|
|
|
tint = MaterialTheme.colorScheme.primary,
|
|
|
|
contentDescription = null
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Column(
|
|
|
|
Modifier
|
|
|
|
.padding(horizontal = horizontalPadding)
|
|
|
|
.weight(1f)
|
|
|
|
) {
|
|
|
|
Text(
|
|
|
|
text = title,
|
2022-04-23 12:42:35 -04:00
|
|
|
style = titleTextStyle,
|
2022-04-23 12:05:00 -04:00
|
|
|
)
|
|
|
|
if (subtitle != null) {
|
|
|
|
Text(
|
2022-04-23 12:42:35 -04:00
|
|
|
modifier = Modifier.padding(top = 4.dp),
|
2022-04-23 12:05:00 -04:00
|
|
|
text = subtitle,
|
2022-04-23 12:42:35 -04:00
|
|
|
style = subtitleTextStyle,
|
2022-04-23 12:05:00 -04:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (action != null) {
|
|
|
|
Box(Modifier.widthIn(min = 56.dp)) {
|
|
|
|
action()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|