| 1 |
import {amountFormatter} from '@givewp/admin/utils'; |
| 2 |
import { Subscription } from '../admin/components/types'; |
| 3 |
import { getSubscriptionOptionsWindowData } from '../utils'; |
| 4 |
|
| 5 |
/** |
| 6 |
* This hook is used to get the subscription amounts and the formatter for the subscription amounts. |
| 7 |
* |
| 8 |
* @since 4.8.0 |
| 9 |
*/ |
| 10 |
export default function useSubscriptionAmounts(subscription: Subscription) { |
| 11 |
const {currency: baseCurrency} = getSubscriptionOptionsWindowData(); |
| 12 |
const subscriptionAmountValue = Number(subscription?.amount?.value ?? 0); |
| 13 |
const feeAmountRecoveredValue = Number(subscription?.feeAmountRecovered?.value ?? 0); |
| 14 |
const intendedAmountValue = (subscriptionAmountValue - feeAmountRecoveredValue); |
| 15 |
const currency = subscription?.amount?.currency ?? baseCurrency; |
| 16 |
|
| 17 |
return { |
| 18 |
baseCurrency, |
| 19 |
formatter: amountFormatter(currency), |
| 20 |
amount: subscriptionAmountValue, |
| 21 |
intendedAmount: intendedAmountValue, |
| 22 |
feeAmountRecovered: feeAmountRecoveredValue, |
| 23 |
}; |
| 24 |
} |
| 25 |
|