-
Notifications
You must be signed in to change notification settings - Fork 1
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
Integrate Gift Card Provider API with Tremendous #127
Merged
Merged
Conversation
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
…live-timeless into 69-integrate-with-gift-card-provider-api
…es and simplify logic
…ess message display
…aying token and dollar values
…into 69-integrate-with-gift-card-provider-api
michaeleii
approved these changes
Dec 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request includes significant changes to the rewards system, including renaming variables, adding new components, and enhancing the functionality for redeeming rewards. The most important changes are detailed below:
Rewards System Enhancements:
app/(tabs)/rewards.tsx
: Renamed variables related to rewards to products, added a newTokenAndDollarBalance
component, and updated the filtering and rendering logic accordingly. [1] [2]app/rewards/[id].tsx
: Renamed variables related to rewards to products, added new states for product SKUs, and implemented a newRedeemDialog
component to handle the redemption process. (app/rewards/[id].tsxR8-R69, app/rewards/[id].tsxL50-R80, app/rewards/[id].tsxL63-R132, app/rewards/[id].tsxR143-R272)New Components:
components/ui/dialog.tsx
: Added a newDialog
component along with its subcomponents to handle modal dialogs in the application.lib/icons/Circle.tsx
andlib/icons/CircleCheckBig.tsx
: Added new icon components for use in the dialog and redemption process. [1] [2]API and Utility Updates:
convex/tremendous.ts
: Updated the API actions to list products and handle product redemption, added a newOrdersApi
client, and implemented theredeemRewardAction
function. [1] [2]lib/tremendous.ts
: Added utility functions to convert tokens to dollars, dollars to tokens, and to get product SKUs.convex/users.ts
: Added a new mutation to update user tokens after redemption.Dependency Additions:
package.json
: Added new dependencies for@rn-primitives/dialog
andbig.js
to support the new dialog component and token conversion functionality. [1] [2]- Rename rewards to products for clarity and update related actions