-
Notifications
You must be signed in to change notification settings - Fork 49
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
ref: free renewal adaptation #876
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WalkthroughThe pull request introduces significant refactoring in the Changes
Possibly related PRs
Suggested labels
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (1)
Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 2
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (4)
- components/discount/freeRenewalCheckout.tsx (6 hunks)
- hooks/checkout/useFreeRenewalTxPrep.tsx (1 hunks)
- utils/apiWrappers/identity.ts (1 hunks)
- utils/discounts/freeRenewal.ts (1 hunks)
Files skipped from review due to trivial changes (1)
- utils/apiWrappers/identity.ts
Additional comments not posted (13)
utils/discounts/freeRenewal.ts (1)
13-13
: LGTM!The update to the
expiry
timestamp is straightforward and does not introduce any issues. The change is consistent with the AI-generated summary and alters the validity period of the discount to expire on September 25, 2024, at 23:59:59.hooks/checkout/useFreeRenewalTxPrep.tsx (1)
1-21
: LGTM!The imports are well-organized and only the necessary modules are being imported.
components/discount/freeRenewalCheckout.tsx (11)
5-5
: LGTM!The import statement is correct and necessary for the component.
31-31
: LGTM!The import statement is correct and necessary for the component.
33-33
: LGTM!The import statement is correct and necessary for the component.
61-66
: LGTM!The state variable declaration for
potentialPrices
is correct and necessary for managing potential prices in the component.
73-82
: LGTM!The usage of the
useFreeRenewalTxPrep
custom hook is correct and helps streamline the transaction preparation logic. The parameters passed to the hook are relevant and necessary for preparing the transaction calls.
232-234
: LGTM!The logic for setting the
salesTaxAmount
based on thepotentialPrices
andswissVatRate
is correct and uses the appropriate utility function.
239-239
: LGTM!Including
potentialPrices
as a dependency in theuseEffect
hook is correct and ensures that the effect is triggered when the potential prices change.
248-263
: LGTM!The logic for calculating new potential prices based on the
displayedCurrencies
,selectedDomains
, andquoteData
is correct and uses the appropriate utility function. Updating thepotentialPrices
state variable by merging the previous prices with the new potential prices ensures that the state is updated correctly.
269-269
: LGTM!The logic for setting the
customCheckoutMessage
using thenewPotentialPrices
object is correct and handles the case when the price for the potential currency is not available.
320-320
: LGTM!Passing the
potentialPrices[CurrencyType.ETH]
as thepriceInEth
prop to theRegisterSummary
component is correct and provides the price in ETH to the component.
Line range hint
1-375
: Excellent refactoring work!The changes in this file significantly improve the handling of pricing and transaction calls for free renewals. The introduction of the
useFreeRenewalTxPrep
custom hook is a great way to streamline the transaction preparation logic and consolidate related functionality.The transition from a single
potentialPrice
variable to a structuredpotentialPrices
object enhances the state management for potential prices and allows for better handling of multiple currencies.The code cleanup efforts, such as removing unused imports, state variables, and commented-out sections, contribute to improved code clarity and maintainability.
Overall, the refactoring aligns well with the PR objectives and the AI-generated summary. Great job!
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.
There are some conflicts.
Also I can't test the free renewal on sepolia, I get this error when I try : Tx not executed:Ar not whitelisted
Summary by CodeRabbit
New Features
Bug Fixes
Refactor
Chores