File size: 3,463 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 |
import {
applyTestFiltersToPlansList,
getPlan,
FEATURE_CUSTOM_DOMAIN,
IncompleteWPcomPlan,
getPlanFeaturesObject,
} from '@automattic/calypso-products';
import {
NEWSLETTER_FLOW,
isAnyHostingFlow,
isNewsletterFlow,
isStartWritingFlow,
} from '@automattic/onboarding';
import { ResponseCartProduct } from '@automattic/shopping-cart';
const newsletterFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
return flowName === NEWSLETTER_FLOW && plan.getNewsletterSignupFeatures;
};
const hostingFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
return isAnyHostingFlow( flowName ) && plan.getHostingSignupFeatures?.( plan.term );
};
const blogOnboardingFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
return isStartWritingFlow( flowName ) && plan.getBlogOnboardingSignupFeatures;
};
const senseiFeatures = ( plan: IncompleteWPcomPlan ) => plan.getSenseiFeatures?.( plan.term );
const signupFlowDefaultFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
if ( ! flowName || isNewsletterFlow( flowName ) ) {
return;
}
return plan.getSignupCompareAvailableFeatures;
};
const getPlanFeatureAccessor = ( {
flowName = '',
plan,
}: {
flowName?: string;
plan: IncompleteWPcomPlan;
} ) => {
return [
newsletterFeatures( flowName, plan ),
hostingFeatures( flowName, plan ),
blogOnboardingFeatures( flowName, plan ),
senseiFeatures( plan ),
signupFlowDefaultFeatures( flowName, plan ),
].find( ( accessor ) => {
return accessor instanceof Function;
} );
};
const newsletterHighlightedFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
return flowName === NEWSLETTER_FLOW && plan.getNewsletterHighlightedFeatures;
};
const blogOnboardingHighlightedFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
return isStartWritingFlow( flowName ) && plan.getBlogOnboardingHighlightedFeatures;
};
const senseiHighlightedFeatures = ( plan: IncompleteWPcomPlan ) =>
plan.getSenseiHighlightedFeatures;
const getHighlightedFeatures = ( flowName: string, plan: IncompleteWPcomPlan ) => {
const accessor = [
newsletterHighlightedFeatures( flowName, plan ),
blogOnboardingHighlightedFeatures( flowName, plan ),
senseiHighlightedFeatures( plan ),
].find( ( accessor ) => {
return accessor instanceof Function;
} );
return ( accessor && accessor() ) || [];
};
export default function getFlowPlanFeatures(
flowName: string,
product: ResponseCartProduct | undefined,
hasDomainsInCart: boolean,
hasRenewalInCart: boolean,
nextDomainIsFree: boolean
) {
const productSlug = product?.product_slug;
if ( ! productSlug ) {
return [];
}
const plan = getPlan( productSlug );
if ( ! plan ) {
return [];
}
const planConstantObj = applyTestFiltersToPlansList( plan, undefined );
if ( ! planConstantObj ) {
return [];
}
const featureAccessor = getPlanFeatureAccessor( {
flowName,
plan: planConstantObj,
} );
if ( ! featureAccessor ) {
return [];
}
const highlightedFeatures = getHighlightedFeatures( flowName, planConstantObj );
const showFreeDomainFeature = ! hasDomainsInCart && ! hasRenewalInCart && nextDomainIsFree;
return getPlanFeaturesObject( featureAccessor() )
.filter( ( feature ) => {
return showFreeDomainFeature || feature.getSlug() !== FEATURE_CUSTOM_DOMAIN;
} )
.map( ( feature ) => {
return {
...feature,
isHighlightedFeature: highlightedFeatures.includes( feature.getSlug() ),
};
} );
}
|