-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBalanceHeaderView.kt
More file actions
318 lines (301 loc) · 10.4 KB
/
BalanceHeaderView.kt
File metadata and controls
318 lines (301 loc) · 10.4 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
package to.bitkit.ui.components
import androidx.compose.animation.AnimatedContent
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.LocalInspectionMode
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import to.bitkit.R
import to.bitkit.models.BITCOIN_SYMBOL
import to.bitkit.models.ConvertedAmount
import to.bitkit.models.PrimaryDisplay
import to.bitkit.models.formatToModernDisplay
import to.bitkit.repositories.CurrencyState
import to.bitkit.ui.LocalCurrencies
import to.bitkit.ui.currencyViewModel
import to.bitkit.ui.settingsViewModel
import to.bitkit.ui.shared.UiConstants
import to.bitkit.ui.shared.animations.BalanceAnimations
import to.bitkit.ui.shared.modifiers.clickableAlpha
import to.bitkit.ui.shared.modifiers.swipeToHide
import to.bitkit.ui.theme.AppThemeSurface
import to.bitkit.ui.theme.Colors
@Composable
fun BalanceHeaderView(
sats: Long,
modifier: Modifier = Modifier,
onClick: (() -> Unit)? = null,
currencies: CurrencyState = LocalCurrencies.current,
prefix: String? = null,
showBitcoinSymbol: Boolean = true,
useSwipeToHide: Boolean = true,
showEyeIcon: Boolean = false,
testTag: String = "",
) {
val isPreview = LocalInspectionMode.current
if (isPreview) {
BalanceHeader(
modifier = modifier,
smallRowSymbol = "$",
smallRowText = "12.34",
largeRowPrefix = prefix,
largeRowText = sats.formatToModernDisplay(),
largeRowSymbol = BITCOIN_SYMBOL,
showSymbol = showBitcoinSymbol,
hideBalance = false,
isSwipeToHideEnabled = false,
showEyeIcon = showEyeIcon,
onClick = {},
onToggleHideBalance = {},
testTag = testTag,
)
return
}
val settings = settingsViewModel ?: return
val currency = currencyViewModel ?: return
val displayUnit = currencies.displayUnit
val primaryDisplay = currencies.primaryDisplay
val converted: ConvertedAmount? = currency.convert(sats = sats)
val isSwipeToHideEnabled by settings.enableSwipeToHideBalance.collectAsStateWithLifecycle()
val hideBalance by settings.hideBalance.collectAsStateWithLifecycle()
val shouldHideBalance = useSwipeToHide && hideBalance
val allowSwipeToHide = useSwipeToHide && isSwipeToHideEnabled
converted?.let { fiat ->
val btc = fiat.bitcoinDisplay(displayUnit)
val isBitcoinPrimary = primaryDisplay == PrimaryDisplay.BITCOIN
BalanceHeader(
modifier = modifier,
smallRowSymbol = if (isBitcoinPrimary) fiat.symbol else btc.symbol,
smallRowText = if (isBitcoinPrimary) fiat.formatted else btc.value,
smallRowIsSymbolSuffix = if (isBitcoinPrimary) fiat.isSymbolSuffix else false,
smallRowModifier = Modifier.testTag("$testTag-secondary"),
largeRowPrefix = prefix,
largeRowText = if (isBitcoinPrimary) btc.value else fiat.formatted,
largeRowSymbol = if (isBitcoinPrimary) btc.symbol else fiat.symbol,
largeRowIsSymbolSuffix = if (isBitcoinPrimary) false else fiat.isSymbolSuffix,
largeRowModifier = Modifier.testTag("$testTag-primary"),
showSymbol = if (isBitcoinPrimary) showBitcoinSymbol else true,
hideBalance = shouldHideBalance,
isSwipeToHideEnabled = allowSwipeToHide,
showEyeIcon = showEyeIcon,
onClick = onClick ?: { currency.switchUnit() },
onToggleHideBalance = { settings.setHideBalance(!hideBalance) },
testTag = testTag,
)
}
}
@Composable
fun BalanceHeader(
modifier: Modifier = Modifier,
smallRowSymbol: String? = null,
smallRowText: String,
smallRowIsSymbolSuffix: Boolean = false,
smallRowModifier: Modifier = Modifier,
largeRowPrefix: String? = null,
largeRowText: String,
largeRowSymbol: String,
largeRowIsSymbolSuffix: Boolean = false,
largeRowModifier: Modifier = Modifier,
showSymbol: Boolean,
hideBalance: Boolean = false,
isSwipeToHideEnabled: Boolean = false,
showEyeIcon: Boolean = false,
onClick: () -> Unit,
onToggleHideBalance: () -> Unit = {},
testTag: String? = null,
) {
Column(
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.Start,
modifier = modifier
.swipeToHide(
enabled = isSwipeToHideEnabled,
onSwipe = onToggleHideBalance,
)
.clickableAlpha { onClick() }
.then(testTag?.let { Modifier.testTag(it) } ?: Modifier)
) {
SmallRow(
symbol = smallRowSymbol,
text = smallRowText,
isSymbolSuffix = smallRowIsSymbolSuffix,
hideBalance = hideBalance,
modifier = smallRowModifier,
)
VerticalSpacer(12.dp)
Row(
verticalAlignment = Alignment.CenterVertically,
) {
LargeRow(
prefix = largeRowPrefix,
text = largeRowText,
symbol = largeRowSymbol,
showSymbol = showSymbol,
isSymbolSuffix = largeRowIsSymbolSuffix,
hideBalance = hideBalance,
modifier = largeRowModifier,
)
if (showEyeIcon) {
FillWidth()
AnimatedContent(
targetState = hideBalance,
transitionSpec = { BalanceAnimations.eyeIconTransition },
label = "eyeIconAnimation",
modifier = Modifier.size(24.dp)
) { isHidden ->
if (isHidden) {
Icon(
painter = painterResource(R.drawable.ic_eye),
contentDescription = null,
tint = Colors.White64,
modifier = Modifier
.size(24.dp)
.clickableAlpha { onToggleHideBalance() }
.testTag("ShowBalance")
)
}
}
}
}
}
}
@Composable
fun LargeRow(
prefix: String?,
text: String,
symbol: String,
showSymbol: Boolean,
modifier: Modifier = Modifier,
isSymbolSuffix: Boolean = false,
hideBalance: Boolean = false,
) {
Row(
verticalAlignment = Alignment.CenterVertically,
modifier = modifier,
) {
if (!hideBalance && prefix != null) {
Display(
text = prefix,
color = Colors.White64,
modifier = Modifier
.padding(end = 8.dp)
.testTag("MoneySign")
)
}
if (showSymbol && !isSymbolSuffix) {
Display(
text = symbol,
color = Colors.White64,
modifier = Modifier
.padding(end = 8.dp)
.testTag("MoneyFiatSymbol")
)
}
AnimatedContent(
targetState = hideBalance,
transitionSpec = { BalanceAnimations.mainBalanceTransition },
label = "largeRowTextAnimation",
) { isHidden ->
Display(
text = if (isHidden) UiConstants.HIDE_BALANCE_LONG else text,
modifier = Modifier.testTag("MoneyText")
)
}
if (showSymbol && isSymbolSuffix) {
Display(
text = symbol,
color = Colors.White64,
modifier = Modifier
.padding(start = 8.dp)
.testTag("MoneyFiatSymbol")
)
}
}
}
@Composable
private fun SmallRow(
symbol: String?,
text: String,
modifier: Modifier = Modifier,
isSymbolSuffix: Boolean = false,
hideBalance: Boolean = false,
) {
Row(
verticalAlignment = Alignment.Bottom,
horizontalArrangement = Arrangement.spacedBy(4.dp),
modifier = modifier,
) {
if (symbol != null && !isSymbolSuffix) {
Caption13Up(
text = symbol,
color = Colors.White64,
modifier = Modifier.testTag("MoneyFiatSymbol")
)
}
AnimatedContent(
targetState = hideBalance,
transitionSpec = { BalanceAnimations.secondaryBalanceTransition },
label = "smallRowTextAnimation",
) { isHidden ->
Caption13Up(
text = if (isHidden) UiConstants.HIDE_BALANCE_SHORT else text,
color = Colors.White64,
modifier = Modifier.testTag("MoneyText")
)
}
if (symbol != null && isSymbolSuffix) {
Caption13Up(
text = symbol,
color = Colors.White64,
modifier = Modifier.testTag("MoneyFiatSymbol")
)
}
}
}
@Preview(showBackground = true)
@Composable
private fun Preview() {
AppThemeSurface {
BalanceHeader(
smallRowSymbol = "$",
smallRowText = "27.36",
largeRowPrefix = "+",
largeRowText = "136 825",
largeRowSymbol = "₿",
showSymbol = true,
modifier = Modifier.fillMaxWidth(),
onClick = {}
)
}
}
@Preview(showBackground = true)
@Composable
private fun PreviewHidden() {
AppThemeSurface {
BalanceHeader(
smallRowSymbol = "$",
smallRowText = "27.36",
largeRowPrefix = "+",
largeRowText = "136 825",
largeRowSymbol = "₿",
showSymbol = true,
hideBalance = true,
isSwipeToHideEnabled = true,
modifier = Modifier.fillMaxWidth(),
onClick = {},
onToggleHideBalance = {}
)
}
}