-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
070f90c
commit 486edb0
Showing
10 changed files
with
123 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
feature/search-impl/src/androidMain/kotlin/org/michaelbel/movies/search/ui/SwipeToDismiss.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
package org.michaelbel.movies.search.ui | ||
|
||
import androidx.compose.animation.AnimatedVisibility | ||
import androidx.compose.animation.core.tween | ||
import androidx.compose.animation.fadeOut | ||
import androidx.compose.animation.shrinkVertically | ||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.Box | ||
import androidx.compose.foundation.layout.fillMaxSize | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.material3.Icon | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.SwipeToDismissBox | ||
import androidx.compose.material3.SwipeToDismissBoxValue.EndToStart | ||
import androidx.compose.material3.rememberSwipeToDismissBoxState | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.LaunchedEffect | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.saveable.rememberSaveable | ||
import androidx.compose.runtime.setValue | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.hapticfeedback.HapticFeedbackType | ||
import androidx.compose.ui.platform.LocalHapticFeedback | ||
import androidx.compose.ui.unit.dp | ||
import kotlinx.coroutines.delay | ||
import org.michaelbel.movies.ui.accessibility.MoviesContentDescription | ||
import org.michaelbel.movies.ui.icons.MoviesIcons | ||
|
||
@Composable | ||
internal fun <T> SwipeToDismiss( | ||
item: T, | ||
onDelete: (T) -> Unit, | ||
modifier: Modifier = Modifier, | ||
duration: Long = 500L, | ||
content: @Composable (T, (T) -> Unit) -> Unit | ||
) { | ||
val hapticFeedback = LocalHapticFeedback.current | ||
var removed by rememberSaveable { mutableStateOf(false) } | ||
val state = rememberSwipeToDismissBoxState( | ||
confirmValueChange = { value -> | ||
if (value == EndToStart) { | ||
removed = true | ||
true | ||
} else { | ||
false | ||
} | ||
} | ||
) | ||
|
||
LaunchedEffect(removed) { | ||
if (removed) { | ||
hapticFeedback.performHapticFeedback(HapticFeedbackType.LongPress) | ||
delay(duration) | ||
onDelete(item) | ||
} | ||
} | ||
|
||
AnimatedVisibility( | ||
visible = !removed, | ||
modifier = modifier, | ||
exit = shrinkVertically(animationSpec = tween(durationMillis = duration.toInt()), shrinkTowards = Alignment.Top) + fadeOut() | ||
) { | ||
SwipeToDismissBox( | ||
state = state, | ||
enableDismissFromStartToEnd = false, | ||
enableDismissFromEndToStart = true, | ||
backgroundContent = { | ||
val color = if (state.dismissDirection == EndToStart) MaterialTheme.colorScheme.errorContainer else Color.Transparent | ||
|
||
Box( | ||
modifier = Modifier | ||
.fillMaxSize() | ||
.background(color) | ||
.padding(16.dp), | ||
contentAlignment = Alignment.CenterEnd | ||
) { | ||
Icon( | ||
imageVector = MoviesIcons.Delete, | ||
contentDescription = MoviesContentDescription.None, | ||
tint = MaterialTheme.colorScheme.onErrorContainer | ||
) | ||
} | ||
}, | ||
content = { | ||
content(item, onDelete) | ||
} | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters