-
Notifications
You must be signed in to change notification settings - Fork 992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Token input refactoring #21136
Token input refactoring #21136
Conversation
Jenkins BuildsClick to see older builds (9)
|
:type :outline | ||
:accessibility-label :reorder} | ||
:i/reorder]])))) | ||
[{:keys [token-symbol on-token-press value error? on-swap currency-symbol]}] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No internal state anymore
[divider-line/view {:container-style (style/divider theme)}] | ||
[data-info (assoc props :theme theme)]])) | ||
[rn/view {:style style/data-container} | ||
hint-component |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Component in the left bottom corner moved out because new screens will use another one in similar token input
(money/crypto->fiat conversion-rate) | ||
(wallet-utils/cut-fiat-balance-to-two-decimals))) | ||
|
||
(defn ->crypto |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In components that use controlled input (like send screen) we don't need to maintain a separate value for limit, we can rely on :upper-limit of controlled input, because it is converted along with value.
(set-crypto-currency swap-to-crypto-currency?) | ||
(set-input-state | ||
(fn [input-state] | ||
#_(defn- edit-amount |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code is not used in production anyway because we decided to get rid of editing network values before release. Also since we are going to simplify send flow, most probably it wont't be used. It reuses token-input
but I decided to not bother fixing it. I believe we can fully remove it but better to do it after final decision of send
simplification.
@@ -55,8 +55,9 @@ | |||
(.lessThan ^js bn1 bn2)) | |||
|
|||
(defn equal-to | |||
[bn1 bn2] | |||
(.eq ^js bn1 bn2)) | |||
[n1 n2] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
App crash on incorrect usage of this function is too much I think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice contribution @vkjr ! 💯
Please make sure to test everything is still working
(if (money/bignumber? num-value) | ||
(money/greater-than (numeric-value state) (upper-limit state)) | ||
false)))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(if 'a 'b false)
-> (when 'a 'b)
32e192b
to
7cd3b4f
Compare
7cd3b4f
to
9b9b58d
Compare
Hi @vkjr ! Thanks for your PR! Dev max: $ 0.22 ![]() ![]() |
86% of end-end tests have passed
Failed tests (1)Click to expandClass TestWalletMultipleDevice:
Passed tests (6)Click to expandClass TestCommunityMultipleDeviceMerged:
Class TestWalletOneDevice:
Class TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestCommunityOneDeviceMerged:
Class TestWalletMultipleDevice:
|
@mariia-skrypnyk, not sure about the reason of this difference. Could be due to refactorings. And could be related to conversion rate at that moment. How much STT you had at that moment? |
Thanks @vkjr I have 11 STT. |
@mariia-skrypnyk, I rechecked and yes, it is probably due to refactoring and I trust the new result more. But if you feel that max value calculated incorrectly for current price - tell me. |
Thanks @vkjr ! All good as we checked this calculation in a real mode! |
9b9b58d
to
c07ea6a
Compare
c07ea6a
to
889b048
Compare
@mariia-skrypnyk, thanks! |
fixes #21017
Summary
Token input refactored:
Controlled input namespace improved:
Send
screen refactored, bunch of unnecessary properties removed.Functional
Steps to test
status: ready