168 lines
4.6 KiB
Kotlin
Raw Normal View History

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
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
2022-04-23 15:51:50 -04:00
import androidx.compose.material3.Switch
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
2022-04-23 15:51:50 -04:00
import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
2022-04-23 15:51:50 -04:00
import eu.kanade.core.prefs.PreferenceMutableState
import eu.kanade.presentation.theme.TachiyomiTheme
import eu.kanade.presentation.util.horizontalPadding
2022-05-19 17:43:27 -04:00
const val DIVIDER_ALPHA = 0.2f
2022-04-23 12:42:35 -04:00
@Composable
fun Divider(
modifier: Modifier = Modifier,
) {
2022-04-23 12:42:35 -04:00
androidx.compose.material3.Divider(
modifier = modifier,
2022-05-19 17:43:27 -04:00
color = MaterialTheme.colorScheme.onSurface.copy(alpha = DIVIDER_ALPHA),
2022-04-23 12:42:35 -04:00
)
}
@Composable
fun PreferenceRow(
modifier: Modifier = Modifier,
title: String,
2022-04-23 15:51:50 -04:00
painter: Painter? = null,
onClick: () -> Unit = {},
onLongClick: () -> Unit = {},
subtitle: String? = null,
action: @Composable (() -> Unit)? = null,
) {
val height = if (subtitle != null) 72.dp else 56.dp
2022-04-24 14:39:51 -04:00
val titleTextStyle = MaterialTheme.typography.bodyLarge
2022-04-23 12:42:35 -04:00
val subtitleTextStyle = MaterialTheme.typography.bodyMedium.copy(
color = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.75f),
)
Row(
modifier = modifier
.fillMaxWidth()
2022-04-23 12:42:35 -04:00
.heightIn(min = height)
.combinedClickable(
onLongClick = onLongClick,
2022-04-23 15:51:50 -04:00
onClick = onClick,
),
2022-05-10 17:54:52 -04:00
verticalAlignment = Alignment.CenterVertically,
) {
2022-04-23 15:51:50 -04:00
if (painter != null) {
Icon(
2022-04-23 15:51:50 -04:00
painter = painter,
modifier = Modifier
2022-05-11 22:29:28 -04:00
.padding(start = horizontalPadding, end = 16.dp)
.size(24.dp),
tint = MaterialTheme.colorScheme.primary,
2022-04-23 15:51:50 -04:00
contentDescription = null,
)
}
Column(
Modifier
2022-05-11 22:29:28 -04:00
.padding(horizontal = 16.dp)
2022-05-10 17:54:52 -04:00
.weight(1f),
) {
Text(
text = title,
2022-04-23 12:42:35 -04:00
style = titleTextStyle,
)
if (subtitle != null) {
Text(
2022-04-23 12:42:35 -04:00
modifier = Modifier.padding(top = 4.dp),
text = subtitle,
2022-04-23 12:42:35 -04:00
style = subtitleTextStyle,
)
}
}
if (action != null) {
2022-05-11 22:29:28 -04:00
Box(
Modifier
.widthIn(min = 56.dp)
.padding(end = horizontalPadding),
) {
action()
}
}
}
}
2022-04-23 15:51:50 -04:00
@Composable
fun SwitchPreference(
modifier: Modifier = Modifier,
checked: Boolean,
onClick: () -> Unit,
2022-04-23 15:51:50 -04:00
title: String,
subtitle: String? = null,
painter: Painter? = null,
) {
PreferenceRow(
modifier = modifier,
2022-04-23 15:51:50 -04:00
title = title,
subtitle = subtitle,
painter = painter,
action = { Switch(checked = checked, onCheckedChange = null) },
onClick = onClick,
)
}
@Composable
fun SwitchPreference(
modifier: Modifier = Modifier,
preference: PreferenceMutableState<Boolean>,
title: String,
subtitle: String? = null,
painter: Painter? = null,
) {
SwitchPreference(
modifier = modifier,
title = title,
subtitle = subtitle,
painter = painter,
checked = preference.value,
2022-04-23 15:51:50 -04:00
onClick = { preference.value = !preference.value },
)
}
@Preview
@Composable
private fun PreferencesPreview() {
TachiyomiTheme {
Column {
PreferenceRow(
title = "Plain",
subtitle = "Subtitle",
)
Divider()
SwitchPreference(
title = "Switch (on)",
subtitle = "Subtitle",
checked = true,
onClick = {},
)
SwitchPreference(
title = "Switch (off)",
subtitle = "Subtitle",
checked = false,
onClick = {},
)
}
}
}