-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy pathExchangedFlipInput2.tsx
More file actions
390 lines (361 loc) · 11.3 KB
/
Copy pathExchangedFlipInput2.tsx
File metadata and controls
390 lines (361 loc) · 11.3 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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
import { div, log10, mul, round } from 'biggystring'
import type { EdgeCurrencyWallet, EdgeTokenId } from 'edge-core-js'
import React, { useMemo, useState } from 'react'
import { Platform, type ReturnKeyType, View } from 'react-native'
import { getSpecialCurrencyInfo } from '../../constants/WalletAndCurrencyConstants'
import { useDisplayDenom } from '../../hooks/useDisplayDenom'
import { useHandler } from '../../hooks/useHandler'
import { lstrings } from '../../locales/strings'
import { getExchangeDenom } from '../../selectors/DenominationSelectors'
import {
convertCurrency,
getExchangeRate
} from '../../selectors/WalletSelectors'
import { useSelector } from '../../types/reactRedux'
import { getCurrencyCode } from '../../util/CurrencyInfoHelpers'
import {
DECIMAL_PRECISION,
getDenomFromIsoCode,
maxPrimaryCurrencyConversionDecimals,
precisionAdjust,
removeIsoPrefix
} from '../../util/utils'
import { EdgeTouchableOpacity } from '../common/EdgeTouchableOpacity'
import { CryptoIcon } from '../icons/CryptoIcon'
import { EdgeRow } from '../rows/EdgeRow'
import { cacheStyles, type Theme, useTheme } from '../services/ThemeContext'
import { EdgeText } from './EdgeText'
import {
type FieldNum,
FlipInput2,
type FlipInputFieldInfos,
type FlipInputRef
} from './FlipInput2'
export type ExchangeFlipInputFields = 'fiat' | 'crypto'
export interface ExchangedFlipInputRef {
setAmount: (field: ExchangeFlipInputFields, value: string) => void
}
export interface ExchangedFlipInputAmounts {
exchangeAmount: string
nativeAmount: string
fiatAmount: string
fieldChanged: 'fiat' | 'crypto'
}
export interface Props {
wallet: EdgeCurrencyWallet
tokenId: EdgeTokenId
startNativeAmount?: string
keyboardVisible?: boolean
headerText: string
forceField?: 'fiat' | 'crypto'
returnKeyType?: ReturnKeyType
editable?: boolean
hideMaxButton?: boolean
onHeaderPress?: () => void | Promise<void>
onAmountChanged: (amounts: ExchangedFlipInputAmounts) => unknown
onBlur?: () => void
onFocus?: () => void
onNext?: () => void
onMaxPress?: () => void
}
const forceFieldMap: { crypto: FieldNum; fiat: FieldNum } = {
crypto: 0,
fiat: 1
}
// ExchangedFlipInput2 wraps FlipInput2
// 1. It accepts native crypto amounts from the parent for initial amount and setAmount
// 2. Has FlipInput2 only show "display" amounts (ie. sats, bits, mETH)
// 3. Returns values to parent in fiat exchange amt, crypto exchange amt, and crypto native amt
const ExchangedFlipInput2Component = React.forwardRef<
ExchangedFlipInputRef,
Props
>((props: Props, ref) => {
const {
editable,
forceField = 'crypto',
headerText,
hideMaxButton = false,
keyboardVisible = true,
onAmountChanged,
onBlur,
onFocus,
onHeaderPress,
onMaxPress,
onNext,
returnKeyType,
startNativeAmount,
tokenId,
wallet
} = props
const theme = useTheme()
const styles = getStyles(theme)
const exchangeRates = useSelector(state => state.exchangeRates)
const defaultIsoFiat = useSelector(state => state.ui.settings.defaultIsoFiat)
const flipInputRef = React.useRef<FlipInputRef>(null)
const pluginId = wallet.currencyInfo.pluginId
const cryptoCurrencyCode = getCurrencyCode(wallet, tokenId)
const cryptoExchangeDenom = getExchangeDenom(wallet.currencyConfig, tokenId)
const cryptoDisplayDenom = useDisplayDenom(wallet.currencyConfig, tokenId)
const fiatDenom = getDenomFromIsoCode(defaultIsoFiat)
const precisionAdjustVal = precisionAdjust({
primaryExchangeMultiplier: cryptoExchangeDenom.multiplier,
secondaryExchangeMultiplier: fiatDenom.multiplier,
exchangeSecondaryToPrimaryRatio: getExchangeRate(
exchangeRates,
pluginId,
tokenId,
defaultIsoFiat
)
})
const cryptoMaxPrecision = maxPrimaryCurrencyConversionDecimals(
log10(cryptoDisplayDenom.multiplier),
precisionAdjustVal
)
const fieldInfos: FlipInputFieldInfos = [
{
currencyName: cryptoDisplayDenom.name,
maxEntryDecimals: log10(cryptoDisplayDenom.multiplier)
},
{
currencyName: removeIsoPrefix(fiatDenom.name),
maxEntryDecimals: log10(fiatDenom.multiplier)
}
]
const convertCurrencyHandler = useHandler(
(
amount: string,
pluginId: string,
tokenId: EdgeTokenId,
isoFiatCode: string
): string => {
return convertCurrency(
exchangeRates,
pluginId,
tokenId,
isoFiatCode,
amount
)
}
)
const convertFromCryptoNative = useHandler((nativeAmount: string) => {
if (nativeAmount === '')
return { fiatAmount: '', exchangeAmount: '', displayAmount: '' }
const exchangeAmount = div(
nativeAmount,
cryptoExchangeDenom.multiplier,
DECIMAL_PRECISION
)
const displayAmount = div(
nativeAmount,
cryptoDisplayDenom.multiplier,
DECIMAL_PRECISION
)
const fiatAmountLong = convertCurrencyHandler(
exchangeAmount,
pluginId,
tokenId,
defaultIsoFiat
)
const fiatAmount = round(fiatAmountLong, -2)
return { fiatAmount, exchangeAmount, displayAmount }
})
const convertFromFiat = useHandler((fiatAmount: string) => {
if (fiatAmount === '')
return { nativeAmount: '', exchangeAmount: '', displayAmount: '' }
const exchangeRate = getExchangeRate(
exchangeRates,
pluginId,
tokenId,
defaultIsoFiat
)
if (exchangeRate === 0) {
return { nativeAmount: '0', exchangeAmount: '0', displayAmount: '0' }
}
const exchangeAmountLong = div(fiatAmount, exchangeRate, DECIMAL_PRECISION)
const nativeAmountLong = mul(
exchangeAmountLong,
cryptoExchangeDenom.multiplier
)
const displayAmountLong = div(
nativeAmountLong,
cryptoDisplayDenom.multiplier,
DECIMAL_PRECISION
)
// Apply cryptoMaxPrecision to remove extraneous sub-penny precision
const displayAmount = round(displayAmountLong, -cryptoMaxPrecision)
// Convert back to native and exchange amounts after cryptoMaxPrecision has been applied
const nativeAmount = mul(displayAmount, cryptoDisplayDenom.multiplier)
const exchangeAmount = div(
nativeAmount,
cryptoExchangeDenom.multiplier,
DECIMAL_PRECISION
)
return { displayAmount, nativeAmount, exchangeAmount }
})
const [renderDisplayAmount, setRenderDisplayAmount] = useState<string>(() => {
const { displayAmount } = convertFromCryptoNative(startNativeAmount ?? '')
return displayAmount
})
const [renderFiatAmount, setRenderFiatAmount] = useState<string>(() => {
const { fiatAmount } = convertFromCryptoNative(startNativeAmount ?? '')
return fiatAmount
})
const convertValue = useHandler(
async (fieldNum: number, amount: string): Promise<string | undefined> => {
if (amount === '') {
onAmountChanged({
exchangeAmount: '',
nativeAmount: '',
fiatAmount: '',
fieldChanged: fieldNum > 0 ? 'fiat' : 'crypto'
})
return ''
}
if (fieldNum === 0) {
const nativeAmount = mul(amount, cryptoDisplayDenom.multiplier)
const { fiatAmount, exchangeAmount } =
convertFromCryptoNative(nativeAmount)
onAmountChanged({
exchangeAmount,
nativeAmount,
fiatAmount,
fieldChanged: 'crypto'
})
return fiatAmount
} else {
const { nativeAmount, exchangeAmount, displayAmount } =
convertFromFiat(amount)
onAmountChanged({
exchangeAmount,
nativeAmount,
fiatAmount: amount,
fieldChanged: 'fiat'
})
return displayAmount
}
}
)
React.useEffect(() => {
const { exchangeAmount, displayAmount } = convertFromCryptoNative(
startNativeAmount ?? ''
)
const initFiat = convertCurrencyHandler(
exchangeAmount,
pluginId,
tokenId,
defaultIsoFiat
)
setRenderDisplayAmount(displayAmount)
setRenderFiatAmount(initFiat)
}, [
convertCurrencyHandler,
convertFromCryptoNative,
cryptoCurrencyCode,
defaultIsoFiat,
pluginId,
startNativeAmount,
tokenId
])
React.useImperativeHandle(ref, () => ({
setAmount: (field, value) => {
if (field === 'crypto') {
const { displayAmount, fiatAmount } = convertFromCryptoNative(value)
flipInputRef.current?.setAmounts([displayAmount, fiatAmount])
} else if (field === 'fiat') {
const { displayAmount } = convertFromFiat(value)
flipInputRef.current?.setAmounts([displayAmount, value])
}
}
}))
/**
* Override the 'forceField' prop in some cases.
* If we set 'forceField' to fiat and we don't yet have exchange rates, ensure
* that we force the user to input a crypto amount, even if the caller wanted
* to initialize the focused flip input field with fiat.
*/
const overrideForceField = useMemo(
() =>
convertCurrencyHandler('100', pluginId, tokenId, defaultIsoFiat) === '0'
? 'crypto'
: forceField,
[convertCurrencyHandler, defaultIsoFiat, forceField, pluginId, tokenId]
)
const pluginInfo = getSpecialCurrencyInfo(pluginId)
const showMaxButton =
pluginInfo.noMaxSpend !== true && !hideMaxButton && onMaxPress != null
return (
<>
<EdgeRow
onPress={onHeaderPress}
icon={
<CryptoIcon
marginRem={[0, 0.5, 0, 0]}
pluginId={pluginId}
sizeRem={1.5}
tokenId={tokenId}
/>
}
>
<EdgeText style={styles.headerText}>{headerText}</EdgeText>
</EdgeRow>
<View style={styles.flipInputContainer}>
<View style={styles.flipInputWrapper}>
<FlipInput2
onBlur={onBlur}
onFocus={onFocus}
onNext={onNext}
ref={flipInputRef}
convertValue={convertValue}
disabled={editable}
fieldInfos={fieldInfos}
returnKeyType={returnKeyType}
forceFieldNum={forceFieldMap[overrideForceField]}
keyboardVisible={keyboardVisible}
startAmounts={[renderDisplayAmount ?? '', renderFiatAmount]}
/>
</View>
{showMaxButton ? (
<EdgeTouchableOpacity
style={styles.maxButton}
onPress={onMaxPress}
testID="flipInputMaxButton"
>
<EdgeText style={styles.maxButtonText}>
{lstrings.string_max_cap}
</EdgeText>
</EdgeTouchableOpacity>
) : null}
</View>
</>
)
})
export const ExchangedFlipInput2 = React.memo(ExchangedFlipInput2Component)
const getStyles = cacheStyles((theme: Theme) => ({
// Header
headerContainer: {
marginRight: Platform.OS === 'ios' ? theme.rem(3.5) : theme.rem(1.5), // Different because adjustsFontSizeToFit behaves differently on android vs ios
flexDirection: 'row',
alignItems: 'center',
marginBottom: theme.rem(1)
},
headerText: {
fontWeight: '600',
fontSize: theme.rem(1.0)
},
flipInputContainer: {
flexDirection: 'row',
alignItems: 'center'
},
flipInputWrapper: {
flexGrow: 1
},
maxButton: {
marginHorizontal: theme.rem(0.5),
justifyContent: 'center'
},
maxButtonText: {
fontFamily: theme.escapeButtonFont,
fontSize: theme.rem(theme.escapeButtonFontSizeRem),
color: theme.escapeButtonText
}
}))