2022-06-19 10:33:25 -04:00
|
|
|
package eu.kanade.presentation.components
|
|
|
|
|
|
|
|
import android.view.ViewConfiguration
|
|
|
|
import androidx.compose.animation.core.Animatable
|
|
|
|
import androidx.compose.animation.core.tween
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
import androidx.compose.foundation.gestures.Orientation
|
|
|
|
import androidx.compose.foundation.gestures.draggable
|
|
|
|
import androidx.compose.foundation.gestures.rememberDraggableState
|
|
|
|
import androidx.compose.foundation.interaction.MutableInteractionSource
|
|
|
|
import androidx.compose.foundation.interaction.collectIsDraggedAsState
|
2022-07-27 09:13:43 -04:00
|
|
|
import androidx.compose.foundation.layout.Arrangement
|
2022-06-19 10:33:25 -04:00
|
|
|
import androidx.compose.foundation.layout.Box
|
2022-07-27 09:13:43 -04:00
|
|
|
import androidx.compose.foundation.layout.PaddingValues
|
|
|
|
import androidx.compose.foundation.layout.calculateEndPadding
|
|
|
|
import androidx.compose.foundation.layout.calculateStartPadding
|
2022-06-19 10:33:25 -04:00
|
|
|
import androidx.compose.foundation.layout.height
|
|
|
|
import androidx.compose.foundation.layout.offset
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
import androidx.compose.foundation.layout.width
|
|
|
|
import androidx.compose.foundation.lazy.LazyListItemInfo
|
|
|
|
import androidx.compose.foundation.lazy.LazyListState
|
2022-07-27 09:13:43 -04:00
|
|
|
import androidx.compose.foundation.lazy.grid.GridCells
|
|
|
|
import androidx.compose.foundation.lazy.grid.LazyGridState
|
2022-06-19 10:33:25 -04:00
|
|
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
|
|
|
import androidx.compose.foundation.systemGestureExclusion
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
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
|
|
|
|
import androidx.compose.runtime.setValue
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
import androidx.compose.ui.draw.alpha
|
|
|
|
import androidx.compose.ui.graphics.Color
|
|
|
|
import androidx.compose.ui.layout.SubcomposeLayout
|
|
|
|
import androidx.compose.ui.platform.LocalDensity
|
2022-07-27 09:13:43 -04:00
|
|
|
import androidx.compose.ui.unit.Constraints
|
|
|
|
import androidx.compose.ui.unit.Density
|
2022-06-19 10:33:25 -04:00
|
|
|
import androidx.compose.ui.unit.Dp
|
|
|
|
import androidx.compose.ui.unit.IntOffset
|
2022-07-27 09:13:43 -04:00
|
|
|
import androidx.compose.ui.unit.LayoutDirection
|
2022-06-19 10:33:25 -04:00
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
import androidx.compose.ui.util.fastForEach
|
|
|
|
import androidx.compose.ui.util.fastMaxBy
|
2022-07-27 09:13:43 -04:00
|
|
|
import eu.kanade.presentation.util.plus
|
2022-06-19 10:33:25 -04:00
|
|
|
import kotlinx.coroutines.channels.BufferOverflow
|
|
|
|
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
|
|
import kotlinx.coroutines.flow.collectLatest
|
|
|
|
import kotlin.math.abs
|
|
|
|
import kotlin.math.max
|
|
|
|
import kotlin.math.min
|
|
|
|
import kotlin.math.roundToInt
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun VerticalFastScroller(
|
|
|
|
listState: LazyListState,
|
|
|
|
modifier: Modifier = Modifier,
|
2022-07-01 10:37:58 -04:00
|
|
|
thumbAllowed: () -> Boolean = { true },
|
2022-06-19 10:33:25 -04:00
|
|
|
thumbColor: Color = MaterialTheme.colorScheme.primary,
|
|
|
|
topContentPadding: Dp = Dp.Hairline,
|
2022-07-22 22:44:05 -04:00
|
|
|
bottomContentPadding: Dp = Dp.Hairline,
|
2022-06-19 10:33:25 -04:00
|
|
|
endContentPadding: Dp = Dp.Hairline,
|
|
|
|
content: @Composable () -> Unit,
|
|
|
|
) {
|
|
|
|
SubcomposeLayout(modifier = modifier) { constraints ->
|
|
|
|
val contentPlaceable = subcompose("content", content).map { it.measure(constraints) }
|
|
|
|
val contentHeight = contentPlaceable.fastMaxBy { it.height }?.height ?: 0
|
|
|
|
val contentWidth = contentPlaceable.fastMaxBy { it.width }?.width ?: 0
|
|
|
|
|
|
|
|
val scrollerConstraints = constraints.copy(minWidth = 0, minHeight = 0)
|
|
|
|
val scrollerPlaceable = subcompose("scroller") {
|
|
|
|
val layoutInfo = listState.layoutInfo
|
|
|
|
val showScroller = layoutInfo.visibleItemsInfo.size < layoutInfo.totalItemsCount
|
|
|
|
if (!showScroller) return@subcompose
|
|
|
|
|
|
|
|
val thumbTopPadding = with(LocalDensity.current) { topContentPadding.toPx() }
|
|
|
|
var thumbOffsetY by remember(thumbTopPadding) { mutableStateOf(thumbTopPadding) }
|
|
|
|
|
|
|
|
val dragInteractionSource = remember { MutableInteractionSource() }
|
|
|
|
val isThumbDragged by dragInteractionSource.collectIsDraggedAsState()
|
|
|
|
val scrolled = remember {
|
|
|
|
MutableSharedFlow<Unit>(
|
|
|
|
extraBufferCapacity = 1,
|
|
|
|
onBufferOverflow = BufferOverflow.DROP_OLDEST,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-07-22 22:44:05 -04:00
|
|
|
val thumbBottomPadding = with(LocalDensity.current) { bottomContentPadding.toPx() }
|
|
|
|
val heightPx = contentHeight.toFloat() - thumbTopPadding - thumbBottomPadding - listState.layoutInfo.afterContentPadding
|
2022-06-19 10:33:25 -04:00
|
|
|
val thumbHeightPx = with(LocalDensity.current) { ThumbLength.toPx() }
|
|
|
|
val trackHeightPx = heightPx - thumbHeightPx
|
|
|
|
|
|
|
|
// When thumb dragged
|
|
|
|
LaunchedEffect(thumbOffsetY) {
|
|
|
|
if (layoutInfo.totalItemsCount == 0 || !isThumbDragged) return@LaunchedEffect
|
|
|
|
val scrollRatio = (thumbOffsetY - thumbTopPadding) / trackHeightPx
|
|
|
|
val scrollItem = layoutInfo.totalItemsCount * scrollRatio
|
|
|
|
val scrollItemRounded = scrollItem.roundToInt()
|
|
|
|
val scrollItemSize = layoutInfo.visibleItemsInfo.find { it.index == scrollItemRounded }?.size ?: 0
|
|
|
|
val scrollItemOffset = scrollItemSize * (scrollItem - scrollItemRounded)
|
|
|
|
listState.scrollToItem(index = scrollItemRounded, scrollOffset = scrollItemOffset.roundToInt())
|
|
|
|
scrolled.tryEmit(Unit)
|
|
|
|
}
|
|
|
|
|
|
|
|
// When list scrolled
|
|
|
|
LaunchedEffect(listState.firstVisibleItemScrollOffset) {
|
|
|
|
if (listState.layoutInfo.totalItemsCount == 0 || isThumbDragged) return@LaunchedEffect
|
|
|
|
val scrollOffset = computeScrollOffset(state = listState)
|
|
|
|
val scrollRange = computeScrollRange(state = listState)
|
|
|
|
val proportion = scrollOffset.toFloat() / (scrollRange.toFloat() - heightPx)
|
|
|
|
thumbOffsetY = trackHeightPx * proportion + thumbTopPadding
|
|
|
|
scrolled.tryEmit(Unit)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thumb alpha
|
|
|
|
val alpha = remember { Animatable(0f) }
|
|
|
|
val isThumbVisible = alpha.value > 0f
|
|
|
|
LaunchedEffect(scrolled, alpha) {
|
|
|
|
scrolled.collectLatest {
|
2022-07-01 10:37:58 -04:00
|
|
|
if (thumbAllowed()) {
|
|
|
|
alpha.snapTo(1f)
|
|
|
|
alpha.animateTo(0f, animationSpec = FadeOutAnimationSpec)
|
|
|
|
} else {
|
|
|
|
alpha.animateTo(0f, animationSpec = ImmediateFadeOutAnimationSpec)
|
|
|
|
}
|
2022-06-19 10:33:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Box(
|
|
|
|
modifier = Modifier
|
|
|
|
.offset { IntOffset(0, thumbOffsetY.roundToInt()) }
|
|
|
|
.then(
|
|
|
|
// Recompose opts
|
2022-07-09 09:20:47 -04:00
|
|
|
if (isThumbVisible && !listState.isScrollInProgress) {
|
2022-06-19 10:33:25 -04:00
|
|
|
Modifier.draggable(
|
|
|
|
interactionSource = dragInteractionSource,
|
|
|
|
orientation = Orientation.Vertical,
|
|
|
|
state = rememberDraggableState { delta ->
|
|
|
|
val newOffsetY = thumbOffsetY + delta
|
2022-07-27 09:13:43 -04:00
|
|
|
thumbOffsetY = newOffsetY.coerceIn(
|
|
|
|
thumbTopPadding,
|
|
|
|
thumbTopPadding + trackHeightPx,
|
|
|
|
)
|
2022-06-19 10:33:25 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
} else Modifier,
|
2022-06-26 12:58:31 -04:00
|
|
|
)
|
|
|
|
.then(
|
|
|
|
// Exclude thumb from gesture area only when needed
|
|
|
|
if (isThumbVisible && !isThumbDragged && !listState.isScrollInProgress) {
|
|
|
|
Modifier.systemGestureExclusion()
|
|
|
|
} else Modifier,
|
|
|
|
)
|
|
|
|
.height(ThumbLength)
|
|
|
|
.padding(horizontal = 8.dp)
|
|
|
|
.padding(end = endContentPadding)
|
|
|
|
.width(ThumbThickness)
|
|
|
|
.alpha(alpha.value)
|
|
|
|
.background(color = thumbColor, shape = ThumbShape),
|
2022-06-19 10:33:25 -04:00
|
|
|
)
|
|
|
|
}.map { it.measure(scrollerConstraints) }
|
|
|
|
val scrollerWidth = scrollerPlaceable.fastMaxBy { it.width }?.width ?: 0
|
|
|
|
|
|
|
|
layout(contentWidth, contentHeight) {
|
|
|
|
contentPlaceable.fastForEach {
|
|
|
|
it.place(0, 0)
|
|
|
|
}
|
|
|
|
scrollerPlaceable.fastForEach {
|
|
|
|
it.placeRelative(contentWidth - scrollerWidth, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-27 09:13:43 -04:00
|
|
|
@Composable
|
|
|
|
private fun rememberColumnWidthSums(
|
|
|
|
columns: GridCells,
|
|
|
|
horizontalArrangement: Arrangement.Horizontal,
|
|
|
|
contentPadding: PaddingValues,
|
|
|
|
) = remember<Density.(Constraints) -> List<Int>>(
|
|
|
|
columns,
|
|
|
|
horizontalArrangement,
|
|
|
|
contentPadding,
|
|
|
|
) {
|
|
|
|
{ constraints ->
|
|
|
|
require(constraints.maxWidth != Constraints.Infinity) {
|
|
|
|
"LazyVerticalGrid's width should be bound by parent."
|
|
|
|
}
|
|
|
|
val horizontalPadding = contentPadding.calculateStartPadding(LayoutDirection.Ltr) +
|
|
|
|
contentPadding.calculateEndPadding(LayoutDirection.Ltr)
|
|
|
|
val gridWidth = constraints.maxWidth - horizontalPadding.roundToPx()
|
|
|
|
with(columns) {
|
|
|
|
calculateCrossAxisCellSizes(
|
|
|
|
gridWidth,
|
|
|
|
horizontalArrangement.spacing.roundToPx(),
|
|
|
|
).toMutableList().apply {
|
|
|
|
for (i in 1 until size) {
|
|
|
|
this[i] += this[i - 1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun VerticalGridFastScroller(
|
|
|
|
state: LazyGridState,
|
|
|
|
columns: GridCells,
|
|
|
|
arrangement: Arrangement.Horizontal,
|
|
|
|
contentPadding: PaddingValues,
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
thumbAllowed: () -> Boolean = { true },
|
|
|
|
thumbColor: Color = MaterialTheme.colorScheme.primary,
|
|
|
|
topContentPadding: Dp = Dp.Hairline,
|
|
|
|
bottomContentPadding: Dp = Dp.Hairline,
|
|
|
|
endContentPadding: Dp = Dp.Hairline,
|
|
|
|
content: @Composable () -> Unit,
|
|
|
|
) {
|
|
|
|
val slotSizesSums = rememberColumnWidthSums(
|
|
|
|
columns = columns,
|
|
|
|
horizontalArrangement = arrangement,
|
|
|
|
contentPadding = contentPadding,
|
|
|
|
)
|
|
|
|
|
|
|
|
SubcomposeLayout(modifier = modifier) { constraints ->
|
|
|
|
val contentPlaceable = subcompose("content", content).map { it.measure(constraints) }
|
|
|
|
val contentHeight = contentPlaceable.fastMaxBy { it.height }?.height ?: 0
|
|
|
|
val contentWidth = contentPlaceable.fastMaxBy { it.width }?.width ?: 0
|
|
|
|
|
|
|
|
val scrollerConstraints = constraints.copy(minWidth = 0, minHeight = 0)
|
|
|
|
val scrollerPlaceable = subcompose("scroller") {
|
|
|
|
val layoutInfo = state.layoutInfo
|
|
|
|
val showScroller = layoutInfo.visibleItemsInfo.size < layoutInfo.totalItemsCount
|
|
|
|
if (!showScroller) return@subcompose
|
|
|
|
val thumbTopPadding = with(LocalDensity.current) { topContentPadding.toPx() }
|
|
|
|
var thumbOffsetY by remember(thumbTopPadding) { mutableStateOf(thumbTopPadding) }
|
|
|
|
|
|
|
|
val dragInteractionSource = remember { MutableInteractionSource() }
|
|
|
|
val isThumbDragged by dragInteractionSource.collectIsDraggedAsState()
|
|
|
|
val scrolled = remember {
|
|
|
|
MutableSharedFlow<Unit>(
|
|
|
|
extraBufferCapacity = 1,
|
|
|
|
onBufferOverflow = BufferOverflow.DROP_OLDEST,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
val thumbBottomPadding = with(LocalDensity.current) { bottomContentPadding.toPx() }
|
|
|
|
val heightPx = contentHeight.toFloat() - thumbTopPadding - thumbBottomPadding - state.layoutInfo.afterContentPadding
|
|
|
|
val thumbHeightPx = with(LocalDensity.current) { ThumbLength.toPx() }
|
|
|
|
val trackHeightPx = heightPx - thumbHeightPx
|
|
|
|
|
|
|
|
val columnCount = remember { slotSizesSums(constraints).size }
|
|
|
|
|
|
|
|
// When thumb dragged
|
|
|
|
LaunchedEffect(thumbOffsetY) {
|
|
|
|
if (layoutInfo.totalItemsCount == 0 || !isThumbDragged) return@LaunchedEffect
|
|
|
|
val scrollRatio = (thumbOffsetY - thumbTopPadding) / trackHeightPx
|
|
|
|
val scrollItem = layoutInfo.totalItemsCount * scrollRatio
|
|
|
|
// I can't think of anything else rn but this'll do
|
|
|
|
val scrollItemWhole = scrollItem.toInt()
|
|
|
|
val columnNum = ((scrollItemWhole + 1) % columnCount).takeIf { it != 0 } ?: columnCount
|
|
|
|
val scrollItemFraction = if (scrollItemWhole == 0) scrollItem else scrollItem % scrollItemWhole
|
|
|
|
val offsetPerItem = 1f / columnCount
|
|
|
|
val offsetRatio = (offsetPerItem * scrollItemFraction) + (offsetPerItem * (columnNum - 1))
|
|
|
|
|
|
|
|
// TODO: Sometimes item height is not available when scrolling up
|
|
|
|
val scrollItemSize = (1..columnCount).maxOf { num ->
|
|
|
|
val actualIndex = if (num != columnNum) {
|
|
|
|
scrollItemWhole + num - columnCount
|
|
|
|
} else {
|
|
|
|
scrollItemWhole
|
|
|
|
}
|
|
|
|
layoutInfo.visibleItemsInfo.find { it.index == actualIndex }?.size?.height ?: 0
|
|
|
|
}
|
|
|
|
val scrollItemOffset = scrollItemSize * offsetRatio
|
|
|
|
|
|
|
|
state.scrollToItem(index = scrollItemWhole, scrollOffset = scrollItemOffset.roundToInt())
|
|
|
|
scrolled.tryEmit(Unit)
|
|
|
|
}
|
|
|
|
|
|
|
|
// When list scrolled
|
|
|
|
LaunchedEffect(state.firstVisibleItemScrollOffset) {
|
|
|
|
if (state.layoutInfo.totalItemsCount == 0 || isThumbDragged) return@LaunchedEffect
|
|
|
|
val scrollOffset = computeScrollOffset(state = state)
|
|
|
|
val scrollRange = computeScrollRange(state = state)
|
|
|
|
val proportion = scrollOffset.toFloat() / (scrollRange.toFloat() - heightPx)
|
|
|
|
thumbOffsetY = trackHeightPx * proportion + thumbTopPadding
|
|
|
|
scrolled.tryEmit(Unit)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thumb alpha
|
|
|
|
val alpha = remember { Animatable(0f) }
|
|
|
|
val isThumbVisible = alpha.value > 0f
|
|
|
|
LaunchedEffect(scrolled, alpha) {
|
|
|
|
scrolled.collectLatest {
|
|
|
|
if (thumbAllowed()) {
|
|
|
|
alpha.snapTo(1f)
|
|
|
|
alpha.animateTo(0f, animationSpec = FadeOutAnimationSpec)
|
|
|
|
} else {
|
|
|
|
alpha.animateTo(0f, animationSpec = ImmediateFadeOutAnimationSpec)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Box(
|
|
|
|
modifier = Modifier
|
|
|
|
.offset { IntOffset(0, thumbOffsetY.roundToInt()) }
|
|
|
|
.then(
|
|
|
|
// Recompose opts
|
|
|
|
if (isThumbVisible && !state.isScrollInProgress) {
|
|
|
|
Modifier.draggable(
|
|
|
|
interactionSource = dragInteractionSource,
|
|
|
|
orientation = Orientation.Vertical,
|
|
|
|
state = rememberDraggableState { delta ->
|
|
|
|
val newOffsetY = thumbOffsetY + delta
|
|
|
|
thumbOffsetY = newOffsetY.coerceIn(
|
|
|
|
thumbTopPadding,
|
|
|
|
thumbTopPadding + trackHeightPx,
|
|
|
|
)
|
|
|
|
},
|
|
|
|
)
|
|
|
|
} else Modifier,
|
|
|
|
)
|
|
|
|
.then(
|
|
|
|
// Exclude thumb from gesture area only when needed
|
|
|
|
if (isThumbVisible && !isThumbDragged && !state.isScrollInProgress) {
|
|
|
|
Modifier.systemGestureExclusion()
|
|
|
|
} else Modifier,
|
|
|
|
)
|
|
|
|
.height(ThumbLength)
|
|
|
|
.padding(horizontal = 8.dp)
|
|
|
|
.padding(end = endContentPadding)
|
|
|
|
.width(ThumbThickness)
|
|
|
|
.alpha(alpha.value)
|
|
|
|
.background(color = thumbColor, shape = ThumbShape),
|
|
|
|
)
|
|
|
|
}.map { it.measure(scrollerConstraints) }
|
|
|
|
val scrollerWidth = scrollerPlaceable.fastMaxBy { it.width }?.width ?: 0
|
|
|
|
|
|
|
|
layout(contentWidth, contentHeight) {
|
|
|
|
contentPlaceable.fastForEach {
|
|
|
|
it.place(0, 0)
|
|
|
|
}
|
|
|
|
scrollerPlaceable.fastForEach {
|
|
|
|
it.placeRelative(contentWidth - scrollerWidth, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun computeScrollOffset(state: LazyGridState): Int {
|
|
|
|
if (state.layoutInfo.totalItemsCount == 0) return 0
|
|
|
|
val visibleItems = state.layoutInfo.visibleItemsInfo
|
|
|
|
val startChild = visibleItems.first()
|
|
|
|
val endChild = visibleItems.last()
|
|
|
|
val minPosition = min(startChild.index, endChild.index)
|
|
|
|
val maxPosition = max(startChild.index, endChild.index)
|
|
|
|
val itemsBefore = minPosition.coerceAtLeast(0)
|
|
|
|
val startDecoratedTop = startChild.offset.y
|
|
|
|
val laidOutArea = abs((endChild.offset.y + endChild.size.height) - startDecoratedTop)
|
|
|
|
val itemRange = abs(minPosition - maxPosition) + 1
|
|
|
|
val avgSizePerRow = laidOutArea.toFloat() / itemRange
|
|
|
|
return (itemsBefore * avgSizePerRow + (0 - startDecoratedTop)).roundToInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun computeScrollRange(state: LazyGridState): Int {
|
|
|
|
if (state.layoutInfo.totalItemsCount == 0) return 0
|
|
|
|
val visibleItems = state.layoutInfo.visibleItemsInfo
|
|
|
|
val startChild = visibleItems.first()
|
|
|
|
val endChild = visibleItems.last()
|
|
|
|
val laidOutArea = (endChild.offset.y + endChild.size.height) - startChild.offset.y
|
|
|
|
val laidOutRange = abs(startChild.index - endChild.index) + 1
|
|
|
|
return (laidOutArea.toFloat() / laidOutRange * state.layoutInfo.totalItemsCount).roundToInt()
|
|
|
|
}
|
|
|
|
|
2022-06-19 10:33:25 -04:00
|
|
|
private fun computeScrollOffset(state: LazyListState): Int {
|
|
|
|
if (state.layoutInfo.totalItemsCount == 0) return 0
|
|
|
|
val visibleItems = state.layoutInfo.visibleItemsInfo
|
|
|
|
val startChild = visibleItems.first()
|
|
|
|
val endChild = visibleItems.last()
|
|
|
|
val minPosition = min(startChild.index, endChild.index)
|
|
|
|
val maxPosition = max(startChild.index, endChild.index)
|
|
|
|
val itemsBefore = minPosition.coerceAtLeast(0)
|
|
|
|
val startDecoratedTop = startChild.top
|
|
|
|
val laidOutArea = abs(endChild.bottom - startDecoratedTop)
|
|
|
|
val itemRange = abs(minPosition - maxPosition) + 1
|
|
|
|
val avgSizePerRow = laidOutArea.toFloat() / itemRange
|
|
|
|
return (itemsBefore * avgSizePerRow + (0 - startDecoratedTop)).roundToInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun computeScrollRange(state: LazyListState): Int {
|
|
|
|
if (state.layoutInfo.totalItemsCount == 0) return 0
|
|
|
|
val visibleItems = state.layoutInfo.visibleItemsInfo
|
|
|
|
val startChild = visibleItems.first()
|
|
|
|
val endChild = visibleItems.last()
|
|
|
|
val laidOutArea = endChild.bottom - startChild.top
|
|
|
|
val laidOutRange = abs(startChild.index - endChild.index) + 1
|
|
|
|
return (laidOutArea.toFloat() / laidOutRange * state.layoutInfo.totalItemsCount).roundToInt()
|
|
|
|
}
|
|
|
|
|
|
|
|
private val ThumbLength = 48.dp
|
|
|
|
private val ThumbThickness = 8.dp
|
|
|
|
private val ThumbShape = RoundedCornerShape(ThumbThickness / 2)
|
|
|
|
private val FadeOutAnimationSpec = tween<Float>(
|
|
|
|
durationMillis = ViewConfiguration.getScrollBarFadeDuration(),
|
|
|
|
delayMillis = 2000,
|
|
|
|
)
|
2022-07-01 10:37:58 -04:00
|
|
|
private val ImmediateFadeOutAnimationSpec = tween<Float>(
|
|
|
|
durationMillis = ViewConfiguration.getScrollBarFadeDuration(),
|
|
|
|
)
|
2022-06-19 10:33:25 -04:00
|
|
|
|
|
|
|
private val LazyListItemInfo.top: Int
|
|
|
|
get() = offset
|
|
|
|
|
|
|
|
private val LazyListItemInfo.bottom: Int
|
|
|
|
get() = offset + size
|