-
Notifications
You must be signed in to change notification settings - Fork 191
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
Feature: update donation summary hook with helpful form state values #7600
base: develop
Are you sure you want to change the base?
Conversation
* | ||
* @unreleased | ||
*/ | ||
const dollarsToCents = (amount: string, currency: string) => { |
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.
Nit: I suggest amountToMinorUnit
— as "dollars" and "cents" are distinct terms for certain currencies. 🤓
const zeroDecimalCurrencies = [ | ||
'BIF', | ||
'CLP', | ||
'DJF', | ||
'GNF', | ||
'JPY', | ||
'KMF', | ||
'KRW', | ||
'MGA', | ||
'PYG', | ||
'RWF', | ||
'UGX', | ||
'VND', | ||
'VUV', | ||
'XAF', | ||
'XOF', | ||
'XPF', | ||
]; |
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.
@jonwaldstein I recommend using the following array to also identify 3-decimal currencies:
const nonTwoDecimalCurrencies = {
'BIF': 0,
'CLP': 0,
'DJF': 0,
'GNF': 0,
'ISK': 0,
'JPY': 0,
'KMF': 0,
'KRW': 0,
'PYG': 0,
'RWF': 0,
'UGX': 0,
'VND': 0,
'VUV': 0,
'XAF': 0,
'XOF': 0,
'XPF': 0,
'BHD': 3,
'IQD': 3,
'JOD': 3,
'KWD': 3,
'LYD': 3,
'OMR': 3,
'TND': 3
};
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.
You could then adjust your math:
decimals = nonTwoDecimalCurrencies[currency] ?? 2;
return Math.round(parseFloat(amount) * (10 ** decimals));
I like the direction, @jonwaldstein! Thinking about the |
Resolves #
Description
Context: Gateways need access to the following values:
We're currently putting a lot of responsibility on our gateways to understand our donation form values...
As our form has grown in complexity with new amount fields like event tickets, fee recovery, subscription details, and many different gateway implementations - it's been increasingly difficult to keep track of certain values across all fields.
Gateways are the most obvious place where this has been a challenge to maintain as they all are having to manually look up the total values for the donation amount, fees recovered, event tickets, subscription details etc.
While we do have our
useWatch()
hook from react-hook-form that allows us to find the raw values, it has become very redundant to manually look up the same values across all gateways while also accounting for the nuances of different variations.This PR is intended to simplify and unify accessing our core donation form values.
This has been achieved by updating our
useDonationSummary()
hook with helpful form state values for more unification of common values.The reason I chose to use the
useDonationSummary()
hook is because it's already being used across our fields / add-ons to sum total values making it a seamless update.Here's what we are adding:
Scenario
Scenario
Example of how this could be used in gateways to clean up redundancy:
Stripe: before
Stripe: after
PayPal before
PayPal after
Affects
This currently affects the Donation Summary field rendering.
WIP questions:
Visuals
Testing Instructions
WIP...
Pre-review Checklist
@unreleased
tags included in DocBlocks