File size: 4,687 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
import { getPlan, PlanSlug, PLAN_MONTHLY_PERIOD, is100Year } from '@automattic/calypso-products';
import { Button, PlanPrice, LoadingPlaceholder } from '@automattic/components';
import { usePricingMetaForGridPlans } from '@automattic/data-stores/src/plans';
import { usePlanBillingDescription } from '@automattic/plans-grid-next';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import { useSelector, useDispatch } from 'react-redux';
import { useLocalizedMoment } from 'calypso/components/localized-moment';
import useCheckPlanAvailabilityForPurchase from 'calypso/my-sites/plans-features-main/hooks/use-check-plan-availability-for-purchase';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { getCurrentPlan } from 'calypso/state/sites/plans/selectors';
import { getSelectedPurchase, getSelectedSite } from 'calypso/state/ui/selectors';
import './style.scss';
type PlanPricingProps = {
inline?: boolean;
};
export default function PlanPricing( { inline }: PlanPricingProps ) {
const translate = useTranslate();
const dispatch = useDispatch();
const moment = useLocalizedMoment();
const site = useSelector( getSelectedSite );
const planDetails = site?.plan;
const planSlug = ( planDetails?.product_slug || '' ) as PlanSlug;
const planData = useSelector( ( state ) => getCurrentPlan( state, site?.ID ) );
const isFreePlan = planDetails?.is_free;
const planPurchase = useSelector( getSelectedPurchase );
const pricing = usePricingMetaForGridPlans( {
coupon: undefined,
planSlugs: [ planSlug ],
siteId: site?.ID,
useCheckPlanAvailabilityForPurchase,
} )?.[ planSlug ];
const is100YearPlan = planPurchase && is100Year( planPurchase );
const planPurchaseLoading = ! isFreePlan && planPurchase === null;
const isLoading = ! pricing || ! planData || planPurchaseLoading;
const planBillingDescription = usePlanBillingDescription( {
siteId: site?.ID,
planSlug,
pricing: pricing ?? null,
isMonthlyPlan: pricing?.billingPeriod === PLAN_MONTHLY_PERIOD,
useCheckPlanAvailabilityForPurchase,
} );
const getBillingDetails = () => {
if ( isFreePlan ) {
return null;
}
return <>{ planBillingDescription || getPlan( planSlug )?.getBillingTimeFrame?.() }.</>;
};
const getExpireDetails = () => {
if ( isFreePlan ) {
return translate( 'No expiration date.' );
}
return site?.plan?.expired
? translate( 'Your plan has expired.' )
: translate( 'Expires on %s.', {
args: moment( planData?.expiryDate ).format( 'LL' ),
} );
};
const renderPrice = () => {
if ( is100YearPlan ) {
return null;
}
const price = (
<PlanPrice
currencyCode={ pricing?.currencyCode }
isSmallestUnit
rawPrice={ pricing?.originalPrice.monthly }
omitHeading={ inline }
className={ clsx( { 'plan-price--inline': inline } ) }
/>
);
if ( inline ) {
return isLoading ? (
<LoadingPlaceholder
className="plan-price-info-loading-placeholder"
width="200px"
height="16px"
/>
) : (
<p className="plan-price-info">
{ price } { getBillingDetails() }
</p>
);
}
return isLoading ? (
<LoadingPlaceholder className="plan-price-loading-placeholder" width="100px" height="48px" />
) : (
<>
<div className="plan-price-wrapper">
{ price }
<span className="plan-price-term">
{ translate( '/mo', {
comment: '/mo is short for per month, referring to the monthly price of a site plan',
} ) }
</span>
</div>
<p className="plan-price-info">{ getBillingDetails() }</p>
</>
);
};
return (
<>
{ renderPrice() }
{ isLoading ? (
<LoadingPlaceholder
className="plan-price-info-loading-placeholder"
width="200px"
height="16px"
/>
) : (
<div
className={ clsx( 'plan-price-info', {
'is-expired': site?.plan?.expired,
} ) }
>
{ getExpireDetails() }
<div className="plan-price-cta">
{ isFreePlan && (
<Button
href={ `/plans/${ site?.slug }` }
onClick={ () =>
dispatch( recordTracksEvent( 'calypso_hosting_overview_upgrade_plan_click' ) )
}
>
{ translate( 'Upgrade your plan' ) }
</Button>
) }
{ site?.plan?.expired && (
<>
<Button compact href={ `/plans/${ site?.slug }` }>
{ translate( 'See all plans' ) }
</Button>
<Button
style={ { marginLeft: '8px' } }
primary
compact
href={ `/checkout/${ site?.slug }/${ planData.productSlug }` }
>
{ translate( 'Renew plan' ) }
</Button>
</>
) }
</div>
</div>
) }
</>
);
}
|