File size: 6,464 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | import { recordTracksEvent } from '@automattic/calypso-analytics';
import {
getPlan,
PLAN_ECOMMERCE_TRIAL_MONTHLY,
PLAN_BUSINESS,
PLAN_WOOEXPRESS_SMALL,
} from '@automattic/calypso-products';
import { CompactCard, ProductIcon, Gridicon, PlanPrice } from '@automattic/components';
import { Plans } from '@automattic/data-stores';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import CardHeading from 'calypso/components/card-heading';
import HeaderCake from 'calypso/components/header-cake';
import useCheckPlanAvailabilityForPurchase from 'calypso/my-sites/plans-features-main/hooks/use-check-plan-availability-for-purchase';
import MigrateButton from './migrate-button.jsx';
import './section-migrate.scss';
class StepUpgrade extends Component {
static propTypes = {
plugins: PropTypes.array.isRequired,
sourceSite: PropTypes.object.isRequired,
startMigration: PropTypes.func.isRequired,
targetSite: PropTypes.object.isRequired,
isEcommerceTrial: PropTypes.bool.isRequired,
};
componentDidMount() {
recordTracksEvent( 'calypso_site_migration_business_viewed' );
}
getHeadingText( isEcommerceTrial, upsellPlanName ) {
const { translate } = this.props;
if ( isEcommerceTrial ) {
// translators: %(essentialPlanName)s is the name of the Essential plan
return translate( 'An %(essentialPlanName)s Plan is required to import everything.', {
args: {
essentialPlanName: upsellPlanName,
},
} );
}
// translators: %(businessPlanName)s is the name of the Creator/Business plan
return translate( 'A %(businessPlanName)s Plan is required to import everything.', {
args: { businessPlanName: upsellPlanName },
} );
}
render() {
const {
billingTimeFrame,
currencyCode,
planPrice,
plugins,
sourceSite,
sourceSiteSlug,
targetSite,
targetSiteSlug,
themes,
translate,
isEcommerceTrial,
} = this.props;
const sourceSiteDomain = get( sourceSite, 'domain' );
const targetSiteDomain = get( targetSite, 'domain' );
const backHref = `/migrate/from/${ sourceSiteSlug }/to/${ targetSiteSlug }`;
const upsellPlanName = isEcommerceTrial
? getPlan( PLAN_WOOEXPRESS_SMALL )?.getTitle()
: getPlan( PLAN_BUSINESS )?.getTitle();
return (
<>
<HeaderCake backHref={ backHref }>{ translate( 'Import Everything' ) }</HeaderCake>
<CompactCard>
<CardHeading>{ this.getHeadingText( isEcommerceTrial, upsellPlanName ) }</CardHeading>
<div>
{ translate(
'To import your themes, plugins, users, and settings from %(sourceSiteDomain)s we need to upgrade your WordPress.com site.',
{
args: { sourceSiteDomain },
}
) }
</div>
<div className="migrate__plan-upsell">
{ /** The child elements here are in reverse order due to having flex-direction: row-reverse in CSS */ }
<div className="migrate__plan-upsell-plugins">
<h4 className="migrate__plan-feature-header">
{ translate( 'Your active plugins' ) }
</h4>
{ plugins.slice( 0, 2 ).map( ( plugin, index ) => (
<div className="migrate__plan-upsell-item" key={ index }>
<Gridicon size={ 18 } icon="checkmark" />
<div className="migrate__plan-upsell-item-label">{ plugin.name }</div>
</div>
) ) }
{ plugins.length > 2 && (
<div className="migrate__plan-upsell-item">
<Gridicon size={ 18 } icon="plus" />
<div className="migrate__plan-upsell-item-label">
{ translate( '%(number)d more', { args: { number: plugins.length - 2 } } ) }
</div>
</div>
) }
</div>
<div className="migrate__plan-upsell-themes">
<h4 className="migrate__plan-feature-header">
{ translate( 'Your custom themes' ) }
</h4>
{ themes.slice( 0, 2 ).map( ( theme, index ) => (
<div className="migrate__plan-upsell-item" key={ index }>
<Gridicon size={ 18 } icon="checkmark" />
<div className="migrate__plan-upsell-item-label">{ theme.name }</div>
</div>
) ) }
{ themes.length > 2 && (
<div className="migrate__plan-upsell-item">
<Gridicon size={ 18 } icon="plus" />
<div className="migrate__plan-upsell-item-label">
{ translate( '%(number)d more', { args: { number: themes.length - 2 } } ) }
</div>
</div>
) }
</div>
<div className="migrate__plan-upsell-container">
<div className="migrate__plan-upsell-icon">
<ProductIcon slug="business-bundle" />
</div>
<div className="migrate__plan-upsell-info">
<div className="migrate__plan-name">
{
// translators: %(planName)s is the name of the Creator/Business/Essential plan
translate( 'WordPress.com %(planName)s', {
args: { planName: upsellPlanName },
} )
}
</div>
<div className="migrate__plan-price">
<PlanPrice rawPrice={ planPrice } currencyCode={ currencyCode } isSmallestUnit />
</div>
<div className="migrate__plan-billing-time-frame">{ billingTimeFrame }</div>
</div>
</div>
</div>
{ /* TODO: is the following "import everything" behaviour up to date? */ }
<MigrateButton
onClick={ this.props.startMigration }
targetSiteDomain={ targetSiteDomain }
>
{ translate( 'Upgrade and import' ) }
</MigrateButton>
</CompactCard>
</>
);
}
}
const WrappedStepUpgrade = ( props ) => {
const { targetSite } = props;
const currentPlanSlug = get( targetSite, 'plan.product_slug' );
const isEcommerceTrial = currentPlanSlug === PLAN_ECOMMERCE_TRIAL_MONTHLY;
const plan = isEcommerceTrial ? getPlan( PLAN_WOOEXPRESS_SMALL ) : getPlan( PLAN_BUSINESS );
const planSlug = plan.getStoreSlug();
const pricingMeta = Plans.usePricingMetaForGridPlans( {
planSlugs: [ planSlug ],
coupon: undefined,
siteId: targetSite.ID,
useCheckPlanAvailabilityForPurchase,
} );
return (
<StepUpgrade
{ ...props }
isEcommerceTrial={ isEcommerceTrial }
billingTimeFrame={ plan.getBillingTimeFrame() }
currencyCode={ pricingMeta?.[ planSlug ]?.currencyCode }
planPrice={
pricingMeta?.[ planSlug ]?.discountedPrice?.monthly ??
pricingMeta?.[ planSlug ]?.originalPrice?.monthly
}
/>
);
};
export default localize( WrappedStepUpgrade );
|