Skip to content

Fix transaction type text in TransactionDetailBox #11344

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

Merged
merged 1 commit into from
Dec 1, 2021
Merged

Conversation

yrliou
Copy link
Member

@yrliou yrliou commented Nov 30, 2021

Resolves brave/brave-browser#19841

Submitter Checklist:

  • I confirm that no security/privacy review is needed, or that I have requested one
  • There is a ticket for my issue
  • Used Github auto-closing keywords in the PR description above
  • Wrote a good PR/commit description
  • Added appropriate labels (QA/Yes or QA/No; release-notes/include or release-notes/exclude; OS/...) to the associated issue
  • Checked the PR locally: npm run test -- brave_browser_tests, npm run test -- brave_unit_tests, npm run lint, npm run gn_check, npm run tslint
  • Ran git rebase master (if needed)

Reviewer Checklist:

  • A security review is not needed, or a link to one is included in the PR description
  • New files have MPL-2.0 license header
  • Adequate test coverage exists to prevent regressions
  • Major classes, functions and non-trivial code blocks are well-commented
  • Changes in component dependencies are properly reflected in gn
  • Code follows the style guide
  • Test plan is specified in PR before merging

After-merge Checklist:

Test Plan:

  1. Try to transfer a NFT via brave://wallet
  2. Check the function type is showing in the tx confirmation screen. (No need to confirm.)

Screen Shot 2021-11-30 at 12 24 50 PM

A side note here, the type could be ERC721TransferFrom too depends on the NFT contract you are using.

@yrliou yrliou self-assigned this Nov 30, 2021
@yrliou yrliou added this to the 1.34.x - Nightly milestone Nov 30, 2021
[TransactionType.ERC20Approve]: 'ERC20Approve',
[TransactionType.ERC721TransferFrom]: 'ERC721TransferFrom',
[TransactionType.ERC721SafeTransferFrom]: 'ERC721SafeTransferFrom',
[TransactionType.Other]: 'Other'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would something like this work so we don't need to maintain a list over time?
https://stackoverflow.com/a/42172322

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bbondy I think that was what we original using? Seems no longer working with the generated type.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An easy way we could achieve this would be to use Object.keys()

So you could do const txKeys = Object.keys(TransactionType)

and then <DetailText>{txKeys[txType]}</DetailText>

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated, thanks a lot @Douglashdaniel !

Copy link
Contributor

@Douglashdaniel Douglashdaniel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@yrliou
Copy link
Member Author

yrliou commented Dec 1, 2021

windows and linux failed at s3-upload which is irrelevant.

mac failed with RewardsContributionBrowserTest.SplitProcessOneTimeTip and RewardsContributionBrowserTest.SplitProcessorAutoContribution.

@srirambv
Copy link
Contributor

srirambv commented Dec 3, 2021

Verification passed on

Brave 1.35.4 Chromium: 96.0.4664.55 (Official Build) nightly (arm64)
Revision 38cededc5d09b785d12203f1d3209aa6eb293e79-refs/branch-heads/4664@{#1090}
OS macOS Version 12.0.1 (Build 21A559)
  • Verified steps from PR description
  • Verified transaction type is shown in details tab

Screen Shot 2021-12-03 at 2 10 55 AM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Function type text missing in transaction detail box UI
4 participants