-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSwipeToConfirm.kt
More file actions
251 lines (237 loc) · 9.28 KB
/
SwipeToConfirm.kt
File metadata and controls
251 lines (237 loc) · 9.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package to.bitkit.ui.components
import androidx.annotation.DrawableRes
import androidx.compose.animation.core.Animatable
import androidx.compose.animation.core.spring
import androidx.compose.animation.core.tween
import androidx.compose.foundation.background
import androidx.compose.foundation.gestures.detectHorizontalDragGestures
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.requiredHeight
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowForward
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableFloatStateOf
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.runtime.setValue
import androidx.compose.runtime.snapshotFlow
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.alpha
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.input.pointer.pointerInput
import androidx.compose.ui.layout.onSizeChanged
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.IntOffset
import androidx.compose.ui.unit.dp
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import to.bitkit.R
import to.bitkit.ui.scaffold.ScreenColumn
import to.bitkit.ui.shared.util.primaryButtonStyle
import to.bitkit.ui.theme.AppThemeSurface
import to.bitkit.ui.theme.Colors
import kotlin.math.roundToInt
private val CircleSize = 60.dp
private val GrabSize = 120.dp
private val InvisibleBorder = (GrabSize - CircleSize) / 2
private val Padding = 8.dp
@Composable
fun SwipeToConfirm(
modifier: Modifier = Modifier,
text: String = stringResource(R.string.other__swipe),
color: Color = Colors.Brand,
icon: ImageVector = Icons.AutoMirrored.Default.ArrowForward,
@DrawableRes endIcon: Int = R.drawable.ic_check,
endIconTint: Color = Colors.Black,
loading: Boolean = false,
confirmed: Boolean = false,
onProgressChange: ((Float) -> Unit)? = null,
onConfirm: () -> Unit,
) {
val scope = rememberCoroutineScope()
val trailColor = remember(color) { color.copy(alpha = 0.24f) }
var swiperWidth by remember { mutableFloatStateOf(0f) }
val maxPanX = if (swiperWidth == 0f) 1f else swiperWidth - with(LocalDensity.current) { CircleSize.toPx() }
val panX = remember { Animatable(0f) }
val loadingOpacity = remember { Animatable(0f) }
LaunchedEffect(loading) {
loadingOpacity.animateTo(
targetValue = if (loading) 1f else 0f,
animationSpec = tween(500)
)
}
LaunchedEffect(confirmed, maxPanX) {
panX.animateTo(
targetValue = if (confirmed) maxPanX else 0f,
animationSpec = spring()
)
}
LaunchedEffect(onProgressChange) {
if (onProgressChange == null) return@LaunchedEffect
snapshotFlow { panX.value / maxPanX }
.collect { onProgressChange(it.coerceIn(0f, 1f)) }
}
Box(
modifier = modifier
.requiredHeight(CircleSize + Padding * 2)
.clip(CircleShape)
.primaryButtonStyle(
isEnabled = !loading,
shape = CircleShape,
)
.padding(Padding)
) {
Box(
modifier = Modifier
.fillMaxSize()
.onSizeChanged { size ->
swiperWidth = size.width.toFloat()
}
) {
// Trail
Box(
modifier = Modifier
.width(with(LocalDensity.current) { panX.value.toDp() + CircleSize })
.fillMaxHeight()
.clip(CircleShape)
.background(trailColor)
)
// Text
Text(
text = text,
fontWeight = FontWeight.SemiBold,
modifier = Modifier
.align(Alignment.Center)
.alpha(1f - (panX.value / maxPanX))
)
// Draggable Circle
Box(
modifier = Modifier
.offset { IntOffset(x = (panX.value.toDp() - InvisibleBorder).toPx().roundToInt(), y = 0) }
.size(GrabSize)
.pointerInput(loading, confirmed) {
if (!loading && !confirmed) {
detectHorizontalDragGestures(
onDragStart = { },
onHorizontalDrag = { _, dragAmount ->
scope.launch {
val newValue = (panX.value + dragAmount).coerceIn(0f, maxPanX)
panX.snapTo(newValue)
}
},
onDragEnd = {
scope.launch {
val swiped = panX.value > maxPanX * 0.8f
if (swiped) {
panX.animateTo(maxPanX, spring())
onConfirm()
} else {
panX.animateTo(0f, spring())
}
}
}
)
}
}
.testTag("GRAB")
) {
Box(
modifier = Modifier
.size(CircleSize)
.align(Alignment.Center)
.background(color, CircleShape)
) {
// Start Icon (Arrow)
Box(
contentAlignment = Alignment.Center,
modifier = Modifier
.fillMaxSize()
.alpha(1f - (panX.value / (maxPanX / 2)) - loadingOpacity.value)
) {
Icon(
imageVector = icon,
contentDescription = null,
tint = Color.Black,
)
}
// End Icon
Box(
contentAlignment = Alignment.Center,
modifier = Modifier
.fillMaxSize()
.alpha((panX.value - maxPanX / 2) / (maxPanX / 2) - loadingOpacity.value)
) {
Icon(
painter = painterResource(endIcon),
contentDescription = null,
tint = endIconTint,
modifier = Modifier.align(Alignment.Center)
)
}
// Loading Spinner
Box(
modifier = Modifier
.fillMaxSize()
.alpha(loadingOpacity.value)
) {
CircularProgressIndicator(
modifier = Modifier
.size(34.dp)
.align(Alignment.Center),
color = Color.Black,
strokeWidth = 2.dp,
)
}
}
}
}
}
}
@Suppress("MagicNumber")
@Preview(showSystemUi = true)
@Composable
private fun Preview() {
var isLoading by remember { mutableStateOf(false) }
val scope = rememberCoroutineScope()
AppThemeSurface {
ScreenColumn(
verticalArrangement = Arrangement.Bottom,
modifier = Modifier.padding(horizontal = 16.dp)
) {
SwipeToConfirm(
text = stringResource(R.string.wallet__send_swipe),
color = Colors.Brand,
loading = isLoading,
onConfirm = {
scope.launch {
isLoading = true
delay(1500)
isLoading = false
}
}
)
}
}
}