PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / src / Subscriptions / resources / hooks / useSubscriptionAmounts.ts

useSubscriptionAmounts.ts in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Subscriptions/resources/hooks/useSubscriptionAmounts.ts

25 lines 1003 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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