273 lines
6.7 KiB
JavaScript
273 lines
6.7 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __, _n, sprintf } from '@wordpress/i18n';
|
|
import { Button } from '@wordpress/components';
|
|
import { Component } from '@wordpress/element';
|
|
import { compose } from '@wordpress/compose';
|
|
import { withDispatch } from '@wordpress/data';
|
|
import { filter } from 'lodash';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { Card, H } from '@woocommerce/components';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import Logo from './logo';
|
|
import ManagementIcon from './images/management';
|
|
import SalesTaxIcon from './images/sales_tax';
|
|
import ShippingLabels from './images/shipping_labels';
|
|
import SpeedIcon from './images/speed';
|
|
import withSelect from 'wc-api/with-select';
|
|
import { recordEvent } from 'lib/tracks';
|
|
import { pluginNames } from 'wc-api/onboarding/constants';
|
|
|
|
class Benefits extends Component {
|
|
constructor( props ) {
|
|
super( props );
|
|
this.state = {
|
|
isPending: false,
|
|
};
|
|
this.startPluginInstall = this.startPluginInstall.bind( this );
|
|
this.skipPluginInstall = this.skipPluginInstall.bind( this );
|
|
}
|
|
|
|
componentDidUpdate( prevProps ) {
|
|
const { goToNextStep, isRequesting } = this.props;
|
|
const { isPending } = this.state;
|
|
|
|
if ( ! isRequesting && prevProps.isRequesting && isPending ) {
|
|
goToNextStep();
|
|
this.setState( { isPending: false } );
|
|
}
|
|
}
|
|
|
|
async skipPluginInstall() {
|
|
const {
|
|
createNotice,
|
|
isJetpackActive,
|
|
isProfileItemsError,
|
|
updateProfileItems,
|
|
} = this.props;
|
|
|
|
this.setState( { isPending: true } );
|
|
|
|
const plugins = isJetpackActive ? 'skipped-wcs' : 'skipped';
|
|
await updateProfileItems( { plugins } );
|
|
|
|
if ( isProfileItemsError ) {
|
|
createNotice(
|
|
'error',
|
|
__(
|
|
'There was a problem updating your preferences.',
|
|
'woocommerce-admin'
|
|
)
|
|
);
|
|
} else {
|
|
recordEvent( 'storeprofiler_install_plugins', {
|
|
install: false,
|
|
plugins,
|
|
} );
|
|
}
|
|
}
|
|
|
|
async startPluginInstall() {
|
|
const {
|
|
isJetpackActive,
|
|
updateProfileItems,
|
|
updateOptions,
|
|
} = this.props;
|
|
|
|
this.setState( { isPending: true } );
|
|
|
|
await updateOptions( {
|
|
woocommerce_setup_jetpack_opted_in: true,
|
|
} );
|
|
|
|
const plugins = isJetpackActive ? 'installed-wcs' : 'installed';
|
|
recordEvent( 'storeprofiler_install_plugins', {
|
|
install: true,
|
|
plugins,
|
|
} );
|
|
updateProfileItems( { plugins } );
|
|
}
|
|
|
|
renderBenefit( benefit ) {
|
|
const { description, icon, title } = benefit;
|
|
|
|
return (
|
|
<div
|
|
className="woocommerce-profile-wizard__benefit-card"
|
|
key={ title }
|
|
>
|
|
{ icon }
|
|
<div className="woocommerce-profile-wizard__benefit-card-content">
|
|
<H className="woocommerce-profile-wizard__benefit-card-title">
|
|
{ title }
|
|
</H>
|
|
<p>{ description }</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
getBenefits() {
|
|
const { isJetpackActive, isWcsActive } = this.props;
|
|
return [
|
|
{
|
|
title: __( 'Store management on the go', 'woocommerce-admin' ),
|
|
icon: <ManagementIcon />,
|
|
description: __(
|
|
'Your store in your pocket. Manage orders, receive sales notifications, and more. Only with a Jetpack connection.',
|
|
'woocommerce-admin'
|
|
),
|
|
visible: ! isJetpackActive,
|
|
},
|
|
{
|
|
title: __( 'Automated sales taxes', 'woocommerce-admin' ),
|
|
icon: <SalesTaxIcon />,
|
|
description: __(
|
|
'Ensure that the correct rate of tax is charged on all of your orders automatically, and print shipping labels at home.',
|
|
'woocommerce-admin'
|
|
),
|
|
visible: ! isWcsActive || ! isJetpackActive,
|
|
},
|
|
{
|
|
title: __( 'Improved speed & security', 'woocommerce-admin' ),
|
|
icon: <SpeedIcon />,
|
|
description: __(
|
|
'Automatically block brute force attacks and speed up your store using our powerful, global server network to cache images.',
|
|
'woocommerce-admin'
|
|
),
|
|
visible: ! isJetpackActive,
|
|
},
|
|
{
|
|
title: __(
|
|
'Print shipping labels at home',
|
|
'woocommerce-admin'
|
|
),
|
|
icon: <ShippingLabels />,
|
|
description: __(
|
|
'Save time at the post office by printing shipping labels for your orders at home.',
|
|
'woocommerce-admin'
|
|
),
|
|
visible: isJetpackActive && ! isWcsActive,
|
|
},
|
|
];
|
|
}
|
|
|
|
renderBenefits() {
|
|
return (
|
|
<div className="woocommerce-profile-wizard__benefits">
|
|
{ filter(
|
|
this.getBenefits(),
|
|
( benefit ) => benefit.visible
|
|
).map( ( benefit ) => this.renderBenefit( benefit ) ) }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { isJetpackActive, isWcsActive } = this.props;
|
|
const { isPending } = this.state;
|
|
|
|
const pluginsToInstall = [];
|
|
if ( ! isJetpackActive ) {
|
|
pluginsToInstall.push( 'jetpack' );
|
|
}
|
|
if ( ! isWcsActive ) {
|
|
pluginsToInstall.push( 'woocommerce-services' );
|
|
}
|
|
const pluginNamesString = pluginsToInstall
|
|
.map( ( pluginSlug ) => pluginNames[ pluginSlug ] )
|
|
.join( ' ' + __( 'and', 'woocommerce-admin' ) + ' ' );
|
|
|
|
return (
|
|
<Card className="woocommerce-profile-wizard__benefits-card">
|
|
<Logo />
|
|
<H className="woocommerce-profile-wizard__header-title">
|
|
{ sprintf(
|
|
__( 'Enhance your store with %s', 'woocommerce-admin' ),
|
|
pluginNamesString
|
|
) }
|
|
</H>
|
|
|
|
{ this.renderBenefits() }
|
|
|
|
<div className="woocommerce-profile-wizard__card-actions">
|
|
<Button
|
|
isPrimary
|
|
isBusy={ isPending }
|
|
onClick={ this.startPluginInstall }
|
|
className="woocommerce-profile-wizard__continue"
|
|
>
|
|
{ __( 'Yes please!', 'woocommerce-admin' ) }
|
|
</Button>
|
|
<Button
|
|
isDefault
|
|
isBusy={ isPending }
|
|
className="woocommerce-profile-wizard__skip"
|
|
onClick={ this.skipPluginInstall }
|
|
>
|
|
{ __( 'No thanks', 'woocommerce-admin' ) }
|
|
</Button>
|
|
</div>
|
|
|
|
<p className="woocommerce-profile-wizard__benefits-install-notice">
|
|
{ sprintf(
|
|
__(
|
|
'%s %s will be installed & activated for free.',
|
|
'woocommerce-admin'
|
|
),
|
|
pluginNamesString,
|
|
_n(
|
|
'plugin',
|
|
'plugins',
|
|
pluginsToInstall.length,
|
|
'woocommerce-admin'
|
|
)
|
|
) }
|
|
</p>
|
|
</Card>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withSelect( ( select ) => {
|
|
const {
|
|
getProfileItemsError,
|
|
getActivePlugins,
|
|
getProfileItems,
|
|
isGetProfileItemsRequesting,
|
|
} = select( 'wc-api' );
|
|
|
|
const isProfileItemsError = Boolean( getProfileItemsError() );
|
|
const activePlugins = getActivePlugins();
|
|
const profileItems = getProfileItems();
|
|
const isJetpackActive = activePlugins.includes( 'jetpack' );
|
|
const isWcsActive = activePlugins.includes( 'woocommerce-services' );
|
|
|
|
return {
|
|
isJetpackActive,
|
|
isProfileItemsError,
|
|
isWcsActive,
|
|
profileItems,
|
|
isRequesting: isGetProfileItemsRequesting(),
|
|
};
|
|
} ),
|
|
withDispatch( ( dispatch ) => {
|
|
const { updateProfileItems, updateOptions } = dispatch( 'wc-api' );
|
|
const { createNotice } = dispatch( 'core/notices' );
|
|
|
|
return {
|
|
createNotice,
|
|
updateProfileItems,
|
|
updateOptions,
|
|
};
|
|
} )
|
|
)( Benefits );
|