|
@@ -1,21 +1,41 @@
|
|
|
package eu.kanade.presentation.manga.components
|
|
|
|
|
|
+import androidx.compose.animation.core.animateFloatAsState
|
|
|
+import androidx.compose.animation.core.tween
|
|
|
+import androidx.compose.foundation.background
|
|
|
import androidx.compose.foundation.combinedClickable
|
|
|
import androidx.compose.foundation.layout.Arrangement
|
|
|
+import androidx.compose.foundation.layout.Box
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
import androidx.compose.foundation.layout.Row
|
|
|
+import androidx.compose.foundation.layout.fillMaxSize
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
import androidx.compose.foundation.layout.sizeIn
|
|
|
+import androidx.compose.foundation.shape.RoundedCornerShape
|
|
|
+import androidx.compose.material.DismissDirection
|
|
|
+import androidx.compose.material.DismissValue
|
|
|
+import androidx.compose.material.SwipeToDismiss
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
import androidx.compose.material.icons.filled.Bookmark
|
|
|
+import androidx.compose.material.icons.filled.BookmarkRemove
|
|
|
import androidx.compose.material.icons.filled.Circle
|
|
|
+import androidx.compose.material.icons.filled.Delete
|
|
|
+import androidx.compose.material.icons.filled.Download
|
|
|
+import androidx.compose.material.icons.filled.FileDownloadOff
|
|
|
+import androidx.compose.material.icons.filled.Visibility
|
|
|
+import androidx.compose.material.icons.filled.VisibilityOff
|
|
|
+import androidx.compose.material.rememberDismissState
|
|
|
+import androidx.compose.material3.Card
|
|
|
+import androidx.compose.material3.CardDefaults
|
|
|
import androidx.compose.material3.Icon
|
|
|
import androidx.compose.material3.LocalContentColor
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
import androidx.compose.material3.ProvideTextStyle
|
|
|
import androidx.compose.material3.Text
|
|
|
+import androidx.compose.material3.contentColorFor
|
|
|
import androidx.compose.runtime.Composable
|
|
|
+import androidx.compose.runtime.LaunchedEffect
|
|
|
import androidx.compose.runtime.getValue
|
|
|
import androidx.compose.runtime.mutableStateOf
|
|
|
import androidx.compose.runtime.remember
|
|
@@ -23,6 +43,7 @@ import androidx.compose.runtime.setValue
|
|
|
import androidx.compose.ui.Alignment
|
|
|
import androidx.compose.ui.Modifier
|
|
|
import androidx.compose.ui.draw.alpha
|
|
|
+import androidx.compose.ui.graphics.Color
|
|
|
import androidx.compose.ui.platform.LocalDensity
|
|
|
import androidx.compose.ui.res.stringResource
|
|
|
import androidx.compose.ui.text.style.TextOverflow
|
|
@@ -30,9 +51,11 @@ import androidx.compose.ui.unit.dp
|
|
|
import androidx.compose.ui.unit.sp
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
import eu.kanade.tachiyomi.data.download.model.Download
|
|
|
+import tachiyomi.domain.library.service.LibraryPreferences
|
|
|
import tachiyomi.presentation.core.components.material.ReadItemAlpha
|
|
|
import tachiyomi.presentation.core.components.material.SecondaryItemAlpha
|
|
|
import tachiyomi.presentation.core.util.selectedBackground
|
|
|
+import kotlin.math.min
|
|
|
|
|
|
@Composable
|
|
|
fun MangaChapterListItem(
|
|
@@ -47,103 +70,271 @@ fun MangaChapterListItem(
|
|
|
downloadIndicatorEnabled: Boolean,
|
|
|
downloadStateProvider: () -> Download.State,
|
|
|
downloadProgressProvider: () -> Int,
|
|
|
+ chapterSwipeEndAction: LibraryPreferences.ChapterSwipeAction,
|
|
|
+ chapterSwipeStartAction: LibraryPreferences.ChapterSwipeAction,
|
|
|
onLongClick: () -> Unit,
|
|
|
onClick: () -> Unit,
|
|
|
onDownloadClick: ((ChapterDownloadAction) -> Unit)?,
|
|
|
+ onChapterSwipe: (LibraryPreferences.ChapterSwipeAction) -> Unit,
|
|
|
) {
|
|
|
val textAlpha = if (read) ReadItemAlpha else 1f
|
|
|
val textSubtitleAlpha = if (read) ReadItemAlpha else SecondaryItemAlpha
|
|
|
|
|
|
- Row(
|
|
|
- modifier = modifier
|
|
|
- .selectedBackground(selected)
|
|
|
- .combinedClickable(
|
|
|
- onClick = onClick,
|
|
|
- onLongClick = onLongClick,
|
|
|
- )
|
|
|
- .padding(start = 16.dp, top = 12.dp, end = 8.dp, bottom = 12.dp),
|
|
|
- ) {
|
|
|
- Column(
|
|
|
- modifier = Modifier.weight(1f),
|
|
|
- verticalArrangement = Arrangement.spacedBy(6.dp),
|
|
|
- ) {
|
|
|
- Row(
|
|
|
- horizontalArrangement = Arrangement.spacedBy(2.dp),
|
|
|
- verticalAlignment = Alignment.CenterVertically,
|
|
|
+ val chapterSwipeStartEnabled = chapterSwipeStartAction != LibraryPreferences.ChapterSwipeAction.Disabled
|
|
|
+ val chapterSwipeEndEnabled = chapterSwipeEndAction != LibraryPreferences.ChapterSwipeAction.Disabled
|
|
|
+
|
|
|
+ val dismissState = rememberDismissState()
|
|
|
+ val dismissDirections = remember { mutableSetOf<DismissDirection>() }
|
|
|
+ var lastDismissDirection: DismissDirection? by remember { mutableStateOf(null) }
|
|
|
+ if (lastDismissDirection == null) {
|
|
|
+ if (chapterSwipeStartEnabled) {
|
|
|
+ dismissDirections.add(DismissDirection.EndToStart)
|
|
|
+ }
|
|
|
+ if (chapterSwipeEndEnabled) {
|
|
|
+ dismissDirections.add(DismissDirection.StartToEnd)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ val animateDismissContentAlpha by animateFloatAsState(
|
|
|
+ label = "animateDismissContentAlpha",
|
|
|
+ targetValue = if (lastDismissDirection != null) 1f else 0f,
|
|
|
+ animationSpec = tween(durationMillis = if (lastDismissDirection != null) 500 else 0),
|
|
|
+ finishedListener = {
|
|
|
+ lastDismissDirection = null
|
|
|
+ },
|
|
|
+ )
|
|
|
+ LaunchedEffect(dismissState.currentValue) {
|
|
|
+ when (dismissState.currentValue) {
|
|
|
+ DismissValue.DismissedToEnd -> {
|
|
|
+ lastDismissDirection = DismissDirection.StartToEnd
|
|
|
+ val dismissDirectionsCopy = dismissDirections.toSet()
|
|
|
+ dismissDirections.clear()
|
|
|
+ onChapterSwipe(chapterSwipeEndAction)
|
|
|
+ dismissState.snapTo(DismissValue.Default)
|
|
|
+ dismissDirections.addAll(dismissDirectionsCopy)
|
|
|
+ }
|
|
|
+ DismissValue.DismissedToStart -> {
|
|
|
+ lastDismissDirection = DismissDirection.EndToStart
|
|
|
+ val dismissDirectionsCopy = dismissDirections.toSet()
|
|
|
+ dismissDirections.clear()
|
|
|
+ onChapterSwipe(chapterSwipeStartAction)
|
|
|
+ dismissState.snapTo(DismissValue.Default)
|
|
|
+ dismissDirections.addAll(dismissDirectionsCopy)
|
|
|
+ }
|
|
|
+ DismissValue.Default -> { }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ SwipeToDismiss(
|
|
|
+ state = dismissState,
|
|
|
+ directions = dismissDirections,
|
|
|
+ background = {
|
|
|
+ val backgroundColor = if (chapterSwipeEndEnabled && (dismissState.dismissDirection == DismissDirection.StartToEnd || lastDismissDirection == DismissDirection.StartToEnd)) {
|
|
|
+ MaterialTheme.colorScheme.primary
|
|
|
+ } else if (chapterSwipeStartEnabled && (dismissState.dismissDirection == DismissDirection.EndToStart || lastDismissDirection == DismissDirection.EndToStart)) {
|
|
|
+ MaterialTheme.colorScheme.primary
|
|
|
+ } else {
|
|
|
+ Color.Unspecified
|
|
|
+ }
|
|
|
+ Box(
|
|
|
+ modifier = Modifier
|
|
|
+ .fillMaxSize()
|
|
|
+ .background(backgroundColor),
|
|
|
) {
|
|
|
- var textHeight by remember { mutableStateOf(0) }
|
|
|
- if (!read) {
|
|
|
- Icon(
|
|
|
- imageVector = Icons.Filled.Circle,
|
|
|
- contentDescription = stringResource(R.string.unread),
|
|
|
+ if (dismissState.dismissDirection in dismissDirections) {
|
|
|
+ val downloadState = downloadStateProvider()
|
|
|
+ SwipeBackgroundIcon(
|
|
|
modifier = Modifier
|
|
|
- .height(8.dp)
|
|
|
- .padding(end = 4.dp),
|
|
|
- tint = MaterialTheme.colorScheme.primary,
|
|
|
+ .padding(start = 16.dp)
|
|
|
+ .align(Alignment.CenterStart)
|
|
|
+ .alpha(
|
|
|
+ if (dismissState.dismissDirection == DismissDirection.StartToEnd) 1f else 0f,
|
|
|
+ ),
|
|
|
+ tint = contentColorFor(backgroundColor),
|
|
|
+ swipeAction = chapterSwipeEndAction,
|
|
|
+ read = read,
|
|
|
+ bookmark = bookmark,
|
|
|
+ downloadState = downloadState,
|
|
|
)
|
|
|
- }
|
|
|
- if (bookmark) {
|
|
|
- Icon(
|
|
|
- imageVector = Icons.Filled.Bookmark,
|
|
|
- contentDescription = stringResource(R.string.action_filter_bookmarked),
|
|
|
+ SwipeBackgroundIcon(
|
|
|
modifier = Modifier
|
|
|
- .sizeIn(maxHeight = with(LocalDensity.current) { textHeight.toDp() - 2.dp }),
|
|
|
- tint = MaterialTheme.colorScheme.primary,
|
|
|
+ .padding(end = 16.dp)
|
|
|
+ .align(Alignment.CenterEnd)
|
|
|
+ .alpha(
|
|
|
+ if (dismissState.dismissDirection == DismissDirection.EndToStart) 1f else 0f,
|
|
|
+ ),
|
|
|
+ tint = contentColorFor(backgroundColor),
|
|
|
+ swipeAction = chapterSwipeStartAction,
|
|
|
+ read = read,
|
|
|
+ bookmark = bookmark,
|
|
|
+ downloadState = downloadState,
|
|
|
)
|
|
|
}
|
|
|
- Text(
|
|
|
- text = title,
|
|
|
- style = MaterialTheme.typography.bodyMedium,
|
|
|
- color = LocalContentColor.current.copy(alpha = textAlpha),
|
|
|
- maxLines = 1,
|
|
|
- overflow = TextOverflow.Ellipsis,
|
|
|
- onTextLayout = { textHeight = it.size.height },
|
|
|
+ }
|
|
|
+ },
|
|
|
+ dismissContent = {
|
|
|
+ val animateCornerRatio = if (dismissState.offset.value != 0f) {
|
|
|
+ min(
|
|
|
+ dismissState.progress.fraction / .075f,
|
|
|
+ 1f,
|
|
|
)
|
|
|
+ } else {
|
|
|
+ 0f
|
|
|
}
|
|
|
-
|
|
|
- Row {
|
|
|
- ProvideTextStyle(
|
|
|
- value = MaterialTheme.typography.bodyMedium.copy(
|
|
|
- fontSize = 12.sp,
|
|
|
- color = LocalContentColor.current.copy(alpha = textSubtitleAlpha),
|
|
|
- ),
|
|
|
- ) {
|
|
|
- if (date != null) {
|
|
|
- Text(
|
|
|
- text = date,
|
|
|
- maxLines = 1,
|
|
|
- overflow = TextOverflow.Ellipsis,
|
|
|
+ val animateCornerShape = (8f * animateCornerRatio).dp
|
|
|
+ val dismissContentAlpha =
|
|
|
+ if (lastDismissDirection != null) animateDismissContentAlpha else 1f
|
|
|
+ Card(
|
|
|
+ modifier = modifier,
|
|
|
+ colors = CardDefaults.elevatedCardColors(
|
|
|
+ containerColor = Color.Transparent,
|
|
|
+ ),
|
|
|
+ shape = RoundedCornerShape(animateCornerShape),
|
|
|
+ ) {
|
|
|
+ Row(
|
|
|
+ modifier = Modifier
|
|
|
+ .background(
|
|
|
+ MaterialTheme.colorScheme.background.copy(dismissContentAlpha),
|
|
|
)
|
|
|
- if (readProgress != null || scanlator != null) DotSeparatorText()
|
|
|
- }
|
|
|
- if (readProgress != null) {
|
|
|
- Text(
|
|
|
- text = readProgress,
|
|
|
- maxLines = 1,
|
|
|
- overflow = TextOverflow.Ellipsis,
|
|
|
- modifier = Modifier.alpha(ReadItemAlpha),
|
|
|
+ .selectedBackground(selected)
|
|
|
+ .alpha(dismissContentAlpha)
|
|
|
+ .combinedClickable(
|
|
|
+ onClick = onClick,
|
|
|
+ onLongClick = onLongClick,
|
|
|
)
|
|
|
- if (scanlator != null) DotSeparatorText()
|
|
|
+ .padding(start = 16.dp, top = 12.dp, end = 8.dp, bottom = 12.dp),
|
|
|
+ ) {
|
|
|
+ Column(
|
|
|
+ modifier = Modifier.weight(1f),
|
|
|
+ verticalArrangement = Arrangement.spacedBy(6.dp),
|
|
|
+ ) {
|
|
|
+ Row(
|
|
|
+ horizontalArrangement = Arrangement.spacedBy(2.dp),
|
|
|
+ verticalAlignment = Alignment.CenterVertically,
|
|
|
+ ) {
|
|
|
+ var textHeight by remember { mutableStateOf(0) }
|
|
|
+ if (!read) {
|
|
|
+ Icon(
|
|
|
+ imageVector = Icons.Filled.Circle,
|
|
|
+ contentDescription = stringResource(R.string.unread),
|
|
|
+ modifier = Modifier
|
|
|
+ .height(8.dp)
|
|
|
+ .padding(end = 4.dp),
|
|
|
+ tint = MaterialTheme.colorScheme.primary,
|
|
|
+ )
|
|
|
+ }
|
|
|
+ if (bookmark) {
|
|
|
+ Icon(
|
|
|
+ imageVector = Icons.Filled.Bookmark,
|
|
|
+ contentDescription = stringResource(R.string.action_filter_bookmarked),
|
|
|
+ modifier = Modifier
|
|
|
+ .sizeIn(maxHeight = with(LocalDensity.current) { textHeight.toDp() - 2.dp }),
|
|
|
+ tint = MaterialTheme.colorScheme.primary,
|
|
|
+ )
|
|
|
+ }
|
|
|
+ Text(
|
|
|
+ text = title,
|
|
|
+ style = MaterialTheme.typography.bodyMedium,
|
|
|
+ color = LocalContentColor.current.copy(alpha = textAlpha),
|
|
|
+ maxLines = 1,
|
|
|
+ overflow = TextOverflow.Ellipsis,
|
|
|
+ onTextLayout = { textHeight = it.size.height },
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
+ Row {
|
|
|
+ ProvideTextStyle(
|
|
|
+ value = MaterialTheme.typography.bodyMedium.copy(
|
|
|
+ fontSize = 12.sp,
|
|
|
+ color = LocalContentColor.current.copy(alpha = textSubtitleAlpha),
|
|
|
+ ),
|
|
|
+ ) {
|
|
|
+ if (date != null) {
|
|
|
+ Text(
|
|
|
+ text = date,
|
|
|
+ maxLines = 1,
|
|
|
+ overflow = TextOverflow.Ellipsis,
|
|
|
+ )
|
|
|
+ if (readProgress != null || scanlator != null) DotSeparatorText()
|
|
|
+ }
|
|
|
+ if (readProgress != null) {
|
|
|
+ Text(
|
|
|
+ text = readProgress,
|
|
|
+ maxLines = 1,
|
|
|
+ overflow = TextOverflow.Ellipsis,
|
|
|
+ modifier = Modifier.alpha(ReadItemAlpha),
|
|
|
+ )
|
|
|
+ if (scanlator != null) DotSeparatorText()
|
|
|
+ }
|
|
|
+ if (scanlator != null) {
|
|
|
+ Text(
|
|
|
+ text = scanlator,
|
|
|
+ maxLines = 1,
|
|
|
+ overflow = TextOverflow.Ellipsis,
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- if (scanlator != null) {
|
|
|
- Text(
|
|
|
- text = scanlator,
|
|
|
- maxLines = 1,
|
|
|
- overflow = TextOverflow.Ellipsis,
|
|
|
+
|
|
|
+ if (onDownloadClick != null) {
|
|
|
+ ChapterDownloadIndicator(
|
|
|
+ enabled = downloadIndicatorEnabled,
|
|
|
+ modifier = Modifier.padding(start = 4.dp),
|
|
|
+ downloadStateProvider = downloadStateProvider,
|
|
|
+ downloadProgressProvider = downloadProgressProvider,
|
|
|
+ onClick = onDownloadClick,
|
|
|
)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ )
|
|
|
+}
|
|
|
|
|
|
- if (onDownloadClick != null) {
|
|
|
- ChapterDownloadIndicator(
|
|
|
- enabled = downloadIndicatorEnabled,
|
|
|
- modifier = Modifier.padding(start = 4.dp),
|
|
|
- downloadStateProvider = downloadStateProvider,
|
|
|
- downloadProgressProvider = downloadProgressProvider,
|
|
|
- onClick = onDownloadClick,
|
|
|
- )
|
|
|
+@Composable
|
|
|
+private fun SwipeBackgroundIcon(
|
|
|
+ modifier: Modifier = Modifier,
|
|
|
+ tint: Color,
|
|
|
+ swipeAction: LibraryPreferences.ChapterSwipeAction,
|
|
|
+ read: Boolean,
|
|
|
+ bookmark: Boolean,
|
|
|
+ downloadState: Download.State,
|
|
|
+) {
|
|
|
+ val imageVector = when (swipeAction) {
|
|
|
+ LibraryPreferences.ChapterSwipeAction.ToggleRead -> {
|
|
|
+ if (!read) {
|
|
|
+ Icons.Default.Visibility
|
|
|
+ } else {
|
|
|
+ Icons.Default.VisibilityOff
|
|
|
+ }
|
|
|
+ }
|
|
|
+ LibraryPreferences.ChapterSwipeAction.ToggleBookmark -> {
|
|
|
+ if (!bookmark) {
|
|
|
+ Icons.Default.Bookmark
|
|
|
+ } else {
|
|
|
+ Icons.Default.BookmarkRemove
|
|
|
+ }
|
|
|
}
|
|
|
+ LibraryPreferences.ChapterSwipeAction.Download -> {
|
|
|
+ when (downloadState) {
|
|
|
+ Download.State.NOT_DOWNLOADED,
|
|
|
+ Download.State.ERROR,
|
|
|
+ -> { Icons.Default.Download }
|
|
|
+ Download.State.QUEUE,
|
|
|
+ Download.State.DOWNLOADING,
|
|
|
+ -> { Icons.Default.FileDownloadOff }
|
|
|
+ Download.State.DOWNLOADED -> { Icons.Default.Delete }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ LibraryPreferences.ChapterSwipeAction.Disabled -> {
|
|
|
+ null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ imageVector?.let {
|
|
|
+ Icon(
|
|
|
+ modifier = modifier,
|
|
|
+ imageVector = imageVector,
|
|
|
+ tint = tint,
|
|
|
+ contentDescription = null,
|
|
|
+ )
|
|
|
}
|
|
|
}
|