-
Notifications
You must be signed in to change notification settings - Fork 55
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
Refactor/show utxos #805
Closed
Closed
Refactor/show utxos #805
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
ddada6d
Implemented UTXO Selection Modal
amitx13 4c5be8f
Done with the suggested changes in ShowUtxos
amitx13 162d89e
minor bug fixing
amitx13 08e1355
added spend file
barrytra e1a7858
Merge branch 'master' of https://github.com/barrytra/jam into epic/re…
barrytra a5e21fb
Fixed Undefined tag issue , Refactor Jar Selection logic & some minor…
amitx13 c3c2aa1
Updated deposit tag , Refactor ShowUtxos & added few comments
amitx13 16786f6
ui: FB modal body ui changed
barrytra 2851b7a
ui(FB): improved design of new FB modal
barrytra cf5263a
ui:(FB) added timeLock address component
barrytra df3345b
ui:(FB) back button instead of cancel button
barrytra 2430b95
ui: added subtitles for steps except 3
barrytra 3d1533f
Fixed recommended changes
amitx13 6e2dff5
fix(ui): subtitle fix
barrytra fca9d31
ui(fb): improved select Date UI
barrytra 9464524
select utxos UI done
barrytra 7fff743
Made UTXO list scrollable after 5 entries for better usability
amitx13 a9988ba
Fixed ShowUtxos and reused it in PaymentConfirmModal for UTXOs review
amitx13 eead604
Implemented suggested changes and made it reusable
amitx13 01ca815
bug fixing
amitx13 027f0d9
empty utxos bug fixed
amitx13 54c18fa
select Utxos UI initiated
barrytra 7407e9d
Merge branch '765-ui-implement-utxo-selection-modal' of https://githu…
barrytra 0d1a32c
separted frozen and unfrozen utxos
barrytra 54df16f
FB: checkbox enabled for third step
barrytra b58db8a
Merge pull request #1 from joinmarket-webui/master
barrytra f22a5a8
Merge branch 'master' of https://github.com/barrytra/jam into epic/re…
barrytra 5df6c02
Merge branch 'epic/redesign' of https://github.com/barrytra/jam into …
barrytra bf25a49
removed warnings
barrytra ccf1e9a
Merge branch 'joinmarket-webui:master' into epic/redesign
barrytra f55c748
Merge branch 'devel' of https://github.com/joinmarket-webui/jam
barrytra 06947d6
refactor: showUtxos
barrytra 8820a8f
removed warnings
barrytra 7bd9b19
fixes
barrytra 7312dd1
fixes
barrytra 7b00d69
added index as parameter
barrytra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
what will happen to
isFrozen
that we're not getting from above, how would you handle frozen utxo and non-frozen utxo?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.
utxo
will contain all the properties of the particularly selected utxo. So to accessisFrozen
property we can useutxo.isFrozen
. Basically we are trying to access whole utxo instead of just one of its propertyisFrozen
.