File size: 5,133 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 |
import { isEnabled } from '@automattic/calypso-config';
import {
isMonthly,
isWooExpressPlan,
isWpComProPlan,
isWpComBusinessPlan,
isWpComEcommercePlan,
isWpComPersonalPlan,
isWpComPremiumPlan,
isStarterPlan,
is100YearPlan,
Feature,
applyTestFiltersToPlansList,
FEATURE_CUSTOM_DOMAIN,
getFeatureByKey,
getPlan,
} from '@automattic/calypso-products';
import { isValueTruthy } from '@automattic/wpcom-checkout';
import { useTranslate } from 'i18n-calypso';
import type { ResponseCartProduct } from '@automattic/shopping-cart';
export default function getPlanFeatures(
plan: ResponseCartProduct | undefined,
translate: ReturnType< typeof useTranslate >,
hasDomainsInCart: boolean,
hasRenewalInCart: boolean,
nextDomainIsFree: boolean,
showPricingGridFeatures?: boolean
): string[] {
const showFreeDomainFeature = ! hasDomainsInCart && ! hasRenewalInCart && nextDomainIsFree;
const productSlug = plan?.product_slug;
if ( ! productSlug ) {
return [];
}
const isMonthlyPlan = isMonthly( productSlug );
if ( showPricingGridFeatures ) {
const plan = getPlan( productSlug );
if ( ! plan ) {
return [];
}
const planObject = applyTestFiltersToPlansList( productSlug, undefined );
if ( ! planObject ) {
return [];
}
const features: Feature[] = planObject?.getCheckoutFeatures?.() || [];
const annualPlanOnlyFeatures = planObject?.getAnnualPlansOnlyFeatures?.() || [];
const featureList = features
// Exclude annual plan only features if the current plan is a monthly plan
.filter( ( feature ) => ! isMonthlyPlan || ! annualPlanOnlyFeatures.includes( feature ) )
// Show the free domain feature if `showFreeDomainFeature` is true
.filter( ( feature ) => feature !== FEATURE_CUSTOM_DOMAIN || showFreeDomainFeature )
.map( ( feature ) => String( getFeatureByKey( feature )?.getTitle() ) );
// If the new feature list is available, return it.
// Else fallback to the previous list of features.
if ( featureList.length ) {
return featureList;
}
}
/**
* For WPCOM plans, the feature list for new purchases is returned by the above function.
* The following is used to return the feature list for manual renewals.
*/
const fastSupport = String( translate( 'Fast support' ) );
const prioritySupport = String( translate( 'Priority support 24/7' ) );
const freeOneYearDomain = showFreeDomainFeature
? String( translate( 'Free domain for one year' ) )
: undefined;
const googleAnalytics = String( translate( 'Track your stats with Google Analytics' ) );
if ( isWpComPersonalPlan( productSlug ) ) {
return [
! isMonthlyPlan && freeOneYearDomain,
fastSupport,
String( translate( 'Best-in-class hosting' ) ),
String( translate( 'Dozens of Free Themes' ) ),
String( translate( 'Ad-free experience' ) ),
].filter( isValueTruthy );
}
if ( isStarterPlan( productSlug ) ) {
return [
freeOneYearDomain,
fastSupport,
String( translate( 'Best-in-class hosting' ) ),
String( translate( 'Dozens of Free Themes' ) ),
String( translate( 'Track your stats with Google Analytics' ) ),
].filter( isValueTruthy );
}
if ( isWpComPremiumPlan( productSlug ) ) {
return [
! isMonthlyPlan && freeOneYearDomain,
isMonthlyPlan && fastSupport,
! isMonthlyPlan && prioritySupport,
isEnabled( 'themes/premium' )
? String( translate( 'Unlimited access to our library of Premium Themes' ) )
: null,
isEnabled( 'earn/pay-with-paypal' )
? String( translate( 'Subscriber-only content and Pay with PayPal buttons' ) )
: String( translate( 'Subscriber-only content and payment buttons' ) ),
googleAnalytics,
].filter( isValueTruthy );
}
if ( isWpComBusinessPlan( productSlug ) || isWpComProPlan( productSlug ) ) {
return [
! isMonthlyPlan && freeOneYearDomain,
isMonthlyPlan && fastSupport,
! isMonthlyPlan && prioritySupport,
String( translate( 'Install custom plugins and themes' ) ),
String( translate( 'Drive traffic to your site with our advanced SEO tools' ) ),
String( translate( 'Track your stats with Google Analytics' ) ),
String( translate( 'Real-time backups and activity logs' ) ),
].filter( isValueTruthy );
}
if ( isWpComEcommercePlan( productSlug ) || isWooExpressPlan( productSlug ) ) {
return [
! isMonthlyPlan && freeOneYearDomain,
isMonthlyPlan && fastSupport,
! isMonthlyPlan && prioritySupport,
String( translate( 'Install custom plugins and themes' ) ),
String( translate( 'Accept payments in 60+ countries' ) ),
String( translate( 'Integrations with top shipping carriers' ) ),
String( translate( 'Unlimited products or services for your online store' ) ),
String( translate( 'eCommerce marketing tools for emails and social networks' ) ),
].filter( isValueTruthy );
}
if ( is100YearPlan( productSlug ) ) {
return [
String( translate( 'Century-long domain registration' ) ),
String( translate( 'Enhanced ownership protocols' ) ),
String( translate( 'Top-tier managed WordPress hosting' ) ),
String( translate( '24/7 Premier Support' ) ),
String( translate( 'Peace of mind' ) ),
];
}
return [];
}
|