2019-08-26 05:49:04 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Button } from 'newspack-components';
|
2019-11-06 03:18:02 +00:00
|
|
|
import { Component, Fragment } from '@wordpress/element';
|
2019-08-26 05:49:04 +00:00
|
|
|
import { compose } from '@wordpress/compose';
|
2019-10-16 22:01:56 +00:00
|
|
|
import { difference, filter, get } from 'lodash';
|
2019-08-26 05:49:04 +00:00
|
|
|
import interpolateComponents from 'interpolate-components';
|
|
|
|
import { withDispatch } from '@wordpress/data';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WooCommerce dependencies
|
|
|
|
*/
|
2019-11-06 03:18:02 +00:00
|
|
|
import { Card, H, Link, Stepper } from '@woocommerce/components';
|
2019-08-26 05:49:04 +00:00
|
|
|
import { getAdminLink, getHistory, getNewPath } from '@woocommerce/navigation';
|
2019-10-16 22:01:56 +00:00
|
|
|
import { getSetting, setSetting } from '@woocommerce/wc-admin-settings';
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import Connect from './steps/connect';
|
|
|
|
import { getCountryCode } from 'dashboard/utils';
|
|
|
|
import Plugins from './steps/plugins';
|
|
|
|
import StoreLocation from './steps/location';
|
|
|
|
import withSelect from 'wc-api/with-select';
|
2019-10-07 20:27:34 +00:00
|
|
|
import { recordEvent } from 'lib/tracks';
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
class Tax extends Component {
|
|
|
|
constructor() {
|
|
|
|
super( ...arguments );
|
|
|
|
|
|
|
|
this.initialState = {
|
|
|
|
isPending: false,
|
|
|
|
stepIndex: 0,
|
|
|
|
automatedTaxEnabled: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.state = this.initialState;
|
|
|
|
|
|
|
|
this.completeStep = this.completeStep.bind( this );
|
2019-11-06 03:18:02 +00:00
|
|
|
this.configureTaxRates = this.configureTaxRates.bind( this );
|
2019-08-26 05:49:04 +00:00
|
|
|
this.updateAutomatedTax = this.updateAutomatedTax.bind( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
reset() {
|
|
|
|
this.setState( this.initialState );
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate( prevProps ) {
|
|
|
|
const { generalSettings, isJetpackConnected, pluginsToActivate, taxSettings } = this.props;
|
|
|
|
const {
|
2019-11-06 03:18:02 +00:00
|
|
|
woocommerce_calc_taxes,
|
2019-08-26 05:49:04 +00:00
|
|
|
woocommerce_store_address,
|
|
|
|
woocommerce_default_country,
|
|
|
|
woocommerce_store_postcode,
|
|
|
|
} = generalSettings;
|
2019-11-06 03:18:02 +00:00
|
|
|
const { isPending, stepIndex } = this.state;
|
2019-08-26 05:49:04 +00:00
|
|
|
const currentStep = this.getSteps()[ stepIndex ];
|
|
|
|
const currentStepKey = currentStep && currentStep.key;
|
2019-10-07 20:27:34 +00:00
|
|
|
const isCompleteAddress = Boolean(
|
|
|
|
woocommerce_store_address && woocommerce_default_country && woocommerce_store_postcode
|
|
|
|
);
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
// Show the success screen if all requirements are satisfied from the beginning.
|
|
|
|
if (
|
2019-10-16 22:01:56 +00:00
|
|
|
null !== stepIndex &&
|
2019-08-26 05:49:04 +00:00
|
|
|
( ! pluginsToActivate.length &&
|
|
|
|
isCompleteAddress &&
|
|
|
|
isJetpackConnected &&
|
2019-10-16 22:01:56 +00:00
|
|
|
this.isTaxJarSupported() )
|
2019-08-26 05:49:04 +00:00
|
|
|
) {
|
|
|
|
/* eslint-disable react/no-did-update-set-state */
|
|
|
|
this.setState( { stepIndex: null } );
|
|
|
|
/* eslint-enable react/no-did-update-set-state */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'store_location' === currentStepKey && isCompleteAddress ) {
|
|
|
|
this.completeStep();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
taxSettings.wc_connect_taxes_enabled &&
|
|
|
|
taxSettings.wc_connect_taxes_enabled !== prevProps.taxSettings.wc_connect_taxes_enabled
|
|
|
|
) {
|
|
|
|
/* eslint-disable react/no-did-update-set-state */
|
|
|
|
this.setState( {
|
|
|
|
automatedTaxEnabled: 'yes' === taxSettings.wc_connect_taxes_enabled ? true : false,
|
|
|
|
} );
|
|
|
|
/* eslint-enable react/no-did-update-set-state */
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'connect' === currentStepKey && isJetpackConnected ) {
|
|
|
|
this.completeStep();
|
|
|
|
}
|
2019-11-06 03:18:02 +00:00
|
|
|
|
|
|
|
if ( isPending && 'yes' === woocommerce_calc_taxes ) {
|
|
|
|
window.location = getAdminLink( 'admin.php?page=wc-settings&tab=tax§ion=standard' );
|
|
|
|
}
|
2019-08-26 05:49:04 +00:00
|
|
|
}
|
|
|
|
|
2019-10-16 22:01:56 +00:00
|
|
|
isTaxJarSupported() {
|
|
|
|
const { countryCode, wc_connect_options } = this.props;
|
2019-11-07 07:37:17 +00:00
|
|
|
const { automatedTaxSupportedCountries = [], taxJarActivated } = getSetting( 'onboarding', {} );
|
2019-10-16 22:01:56 +00:00
|
|
|
|
|
|
|
return (
|
2019-11-07 07:37:17 +00:00
|
|
|
! taxJarActivated && // WCS integration doesn't work with the official TaxJar plugin.
|
|
|
|
wc_connect_options.tos_accepted &&
|
|
|
|
automatedTaxSupportedCountries.includes( countryCode )
|
2019-10-16 22:01:56 +00:00
|
|
|
);
|
2019-08-26 05:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
completeStep() {
|
|
|
|
const { stepIndex } = this.state;
|
|
|
|
const steps = this.getSteps();
|
|
|
|
const nextStep = steps[ stepIndex + 1 ];
|
|
|
|
|
|
|
|
if ( nextStep ) {
|
|
|
|
this.setState( { stepIndex: stepIndex + 1 } );
|
|
|
|
} else {
|
|
|
|
getHistory().push( getNewPath( {}, '/', {} ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 03:18:02 +00:00
|
|
|
configureTaxRates() {
|
|
|
|
const { generalSettings, updateSettings } = this.props;
|
|
|
|
|
|
|
|
if ( 'yes' !== generalSettings.woocommerce_calc_taxes ) {
|
|
|
|
this.setState( { isPending: true } );
|
|
|
|
updateSettings( {
|
|
|
|
general: {
|
|
|
|
woocommerce_calc_taxes: 'yes',
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
} else {
|
2019-11-07 00:17:46 +00:00
|
|
|
window.location = getAdminLink(
|
|
|
|
'admin.php?page=wc-settings&tab=tax§ion=standard&wc_onboarding_active_task=tax'
|
|
|
|
);
|
2019-11-06 03:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 05:49:04 +00:00
|
|
|
async updateAutomatedTax() {
|
|
|
|
const { createNotice, isTaxSettingsError, updateSettings } = this.props;
|
|
|
|
const { automatedTaxEnabled } = this.state;
|
|
|
|
|
|
|
|
await updateSettings( {
|
|
|
|
tax: {
|
|
|
|
wc_connect_taxes_enabled: automatedTaxEnabled ? 'yes' : 'no',
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
|
|
|
|
if ( ! isTaxSettingsError ) {
|
2019-10-16 22:01:56 +00:00
|
|
|
// @todo This is a workaround to force the task to mark as complete.
|
|
|
|
// This should probably be updated to use wc-api so we can fetch tax rates.
|
|
|
|
setSetting( 'onboarding', {
|
|
|
|
...getSetting( 'onboarding', {} ),
|
|
|
|
isTaxComplete: true,
|
|
|
|
} );
|
2019-08-26 05:49:04 +00:00
|
|
|
createNotice( 'success', __( 'Your tax settings have been updated.', 'woocommerce-admin' ) );
|
|
|
|
if ( automatedTaxEnabled ) {
|
|
|
|
getHistory().push( getNewPath( {}, '/', {} ) );
|
|
|
|
} else {
|
2019-11-07 00:17:46 +00:00
|
|
|
this.configureTaxRates();
|
2019-08-26 05:49:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
createNotice(
|
|
|
|
'error',
|
|
|
|
__( 'There was a problem updating your tax settings.', 'woocommerce-admin' )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getSteps() {
|
2019-10-16 22:01:56 +00:00
|
|
|
const {
|
|
|
|
generalSettings,
|
|
|
|
isGeneralSettingsRequesting,
|
|
|
|
isJetpackConnected,
|
|
|
|
pluginsToActivate,
|
|
|
|
} = this.props;
|
2019-11-06 03:18:02 +00:00
|
|
|
const { isPending } = this.state;
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
const steps = [
|
|
|
|
{
|
|
|
|
key: 'store_location',
|
|
|
|
label: __( 'Set store location', 'woocommerce-admin' ),
|
|
|
|
description: __( 'The address from which your business operates', 'woocommerce-admin' ),
|
|
|
|
content: (
|
|
|
|
<StoreLocation
|
|
|
|
{ ...this.props }
|
2019-10-07 20:27:34 +00:00
|
|
|
onComplete={ values => {
|
|
|
|
const country = getCountryCode( values.countryState );
|
|
|
|
recordEvent( 'tasklist_tax_set_location', { country } );
|
|
|
|
this.completeStep();
|
|
|
|
} }
|
2019-08-26 05:49:04 +00:00
|
|
|
isSettingsRequesting={ isGeneralSettingsRequesting }
|
|
|
|
settings={ generalSettings }
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
visible: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'plugins',
|
|
|
|
label: __( 'Install Jetpack and WooCommerce Services', 'woocommerce-admin' ),
|
|
|
|
description: __(
|
2019-11-14 14:35:28 +00:00
|
|
|
'Jetpack and WooCommerce Services allow you to automate sales tax calculations',
|
2019-08-26 05:49:04 +00:00
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
|
|
|
content: (
|
|
|
|
<Plugins
|
2019-10-07 20:27:34 +00:00
|
|
|
onComplete={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_install_extensions', { install_extensions: true } );
|
|
|
|
this.completeStep();
|
|
|
|
} }
|
|
|
|
onSkip={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_install_extensions', { install_extensions: false } );
|
|
|
|
window.location.href = getAdminLink(
|
2019-08-26 05:49:04 +00:00
|
|
|
'admin.php?page=wc-settings&tab=tax§ion=standard'
|
2019-10-07 20:27:34 +00:00
|
|
|
);
|
|
|
|
} }
|
2019-08-26 05:49:04 +00:00
|
|
|
skipText={ __( 'Set up tax rates manually', 'woocommerce-admin' ) }
|
|
|
|
/>
|
|
|
|
),
|
2019-10-16 22:01:56 +00:00
|
|
|
visible: pluginsToActivate.length && this.isTaxJarSupported(),
|
2019-08-26 05:49:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'connect',
|
|
|
|
label: __( 'Connect your store', 'woocommerce-admin' ),
|
|
|
|
description: __(
|
|
|
|
'Connect your store to WordPress.com to enable automated sales tax calculations',
|
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
2019-10-07 20:27:34 +00:00
|
|
|
content: (
|
|
|
|
<Connect
|
|
|
|
{ ...this.props }
|
|
|
|
onConnect={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_connect_store' );
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
),
|
2019-10-16 22:01:56 +00:00
|
|
|
visible: ! isJetpackConnected && this.isTaxJarSupported(),
|
2019-08-26 05:49:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'manual_configuration',
|
2019-10-20 21:14:52 +00:00
|
|
|
label: __( 'Configure tax rates', 'woocommerce-admin' ),
|
2019-08-26 05:49:04 +00:00
|
|
|
description: __(
|
|
|
|
'Head over to the tax rate settings screen to configure your tax rates',
|
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
|
|
|
content: (
|
2019-11-06 03:18:02 +00:00
|
|
|
<Fragment>
|
2019-11-07 00:17:46 +00:00
|
|
|
<Button
|
|
|
|
isPrimary
|
|
|
|
isBusy={ isPending }
|
|
|
|
onClick={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_config_rates' );
|
|
|
|
this.configureTaxRates();
|
|
|
|
} }
|
|
|
|
>
|
2019-11-06 03:18:02 +00:00
|
|
|
{ __( 'Configure', 'woocommerce-admin' ) }
|
|
|
|
</Button>
|
|
|
|
<p>
|
|
|
|
{ 'yes' !== generalSettings.woocommerce_calc_taxes &&
|
|
|
|
interpolateComponents( {
|
|
|
|
mixedString: __(
|
|
|
|
'By clicking "Configure" you\'re enabling tax rates and calculations.' +
|
|
|
|
'More info {{link}}here{{/link}}.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
|
|
|
components: {
|
|
|
|
link: (
|
|
|
|
<Link
|
|
|
|
href="https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-1"
|
|
|
|
target="_blank"
|
|
|
|
type="external"
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
} ) }
|
|
|
|
</p>
|
|
|
|
</Fragment>
|
2019-08-26 05:49:04 +00:00
|
|
|
),
|
2019-10-16 22:01:56 +00:00
|
|
|
visible: ! this.isTaxJarSupported(),
|
2019-08-26 05:49:04 +00:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
return filter( steps, step => step.visible );
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { isPending, stepIndex } = this.state;
|
|
|
|
const { isGeneralSettingsRequesting, isTaxSettingsRequesting } = this.props;
|
2019-10-16 22:01:56 +00:00
|
|
|
const step = this.getSteps()[ stepIndex ];
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="woocommerce-task-tax">
|
|
|
|
<Card className="is-narrow">
|
2019-10-16 22:01:56 +00:00
|
|
|
{ step ? (
|
2019-08-26 05:49:04 +00:00
|
|
|
<Stepper
|
|
|
|
isPending={ isPending || isGeneralSettingsRequesting || isTaxSettingsRequesting }
|
|
|
|
isVertical={ true }
|
2019-10-16 22:01:56 +00:00
|
|
|
currentStep={ step.key }
|
2019-08-26 05:49:04 +00:00
|
|
|
steps={ this.getSteps() }
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<div className="woocommerce-task-tax__success">
|
|
|
|
<span
|
|
|
|
className="woocommerce-task-tax__success-icon"
|
|
|
|
role="img"
|
|
|
|
aria-labelledby="woocommerce-task-tax__success-message"
|
|
|
|
>
|
|
|
|
🎊
|
|
|
|
</span>
|
|
|
|
<H id="woocommerce-task-tax__success-message">
|
|
|
|
{ __( 'Good news!', 'woocommerce-admin' ) }
|
|
|
|
</H>
|
|
|
|
<p>
|
|
|
|
{ interpolateComponents( {
|
|
|
|
mixedString: __(
|
|
|
|
'{{strong}}Jetpack{{/strong}} and {{strong}}WooCommerce Services{{/strong}} ' +
|
|
|
|
'can automate your sales tax calculations for you.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
|
|
|
components: {
|
|
|
|
strong: <strong />,
|
|
|
|
},
|
|
|
|
} ) }
|
|
|
|
</p>
|
|
|
|
<Button
|
|
|
|
isPrimary
|
2019-10-07 20:27:34 +00:00
|
|
|
onClick={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_setup_automated_simple', {
|
|
|
|
setup_automatically: true,
|
|
|
|
} );
|
|
|
|
this.setState( { automatedTaxEnabled: true }, this.updateAutomatedTax );
|
|
|
|
} }
|
2019-08-26 05:49:04 +00:00
|
|
|
>
|
|
|
|
{ __( 'Yes please', 'woocommerce-admin' ) }
|
|
|
|
</Button>
|
|
|
|
<Button
|
2019-10-07 20:27:34 +00:00
|
|
|
onClick={ () => {
|
|
|
|
recordEvent( 'tasklist_tax_setup_automated_simple', {
|
|
|
|
setup_automatically: false,
|
|
|
|
} );
|
|
|
|
this.setState( { automatedTaxEnabled: false }, this.updateAutomatedTax );
|
|
|
|
} }
|
2019-08-26 05:49:04 +00:00
|
|
|
>
|
|
|
|
{ __( "No thanks, I'll configure taxes manually", 'woocommerce-admin' ) }
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
) }
|
|
|
|
</Card>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default compose(
|
|
|
|
withSelect( select => {
|
2019-10-16 22:01:56 +00:00
|
|
|
const {
|
|
|
|
getActivePlugins,
|
|
|
|
getOptions,
|
|
|
|
getSettings,
|
|
|
|
getSettingsError,
|
|
|
|
isGetSettingsRequesting,
|
|
|
|
isJetpackConnected,
|
|
|
|
} = select( 'wc-api' );
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
const generalSettings = getSettings( 'general' );
|
|
|
|
const isGeneralSettingsError = Boolean( getSettingsError( 'general' ) );
|
|
|
|
const isGeneralSettingsRequesting = isGetSettingsRequesting( 'general' );
|
|
|
|
const taxSettings = getSettings( 'tax' );
|
|
|
|
const isTaxSettingsError = Boolean( getSettingsError( 'tax' ) );
|
|
|
|
const isTaxSettingsRequesting = isGetSettingsRequesting( 'tax' );
|
|
|
|
const countryCode = getCountryCode( generalSettings.woocommerce_default_country );
|
2019-10-16 22:01:56 +00:00
|
|
|
const activePlugins = getActivePlugins();
|
|
|
|
const pluginsToActivate = difference( [ 'jetpack', 'woocommerce-services' ], activePlugins );
|
|
|
|
const wc_connect_options = get(
|
|
|
|
getOptions( [ 'wc_connect_options' ] ),
|
|
|
|
'wc_connect_options',
|
|
|
|
{}
|
|
|
|
);
|
2019-08-26 05:49:04 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
countryCode,
|
|
|
|
isGeneralSettingsError,
|
|
|
|
isGeneralSettingsRequesting,
|
|
|
|
generalSettings,
|
|
|
|
isTaxSettingsError,
|
|
|
|
isTaxSettingsRequesting,
|
|
|
|
taxSettings,
|
2019-10-16 22:01:56 +00:00
|
|
|
isJetpackConnected: isJetpackConnected(),
|
2019-08-26 05:49:04 +00:00
|
|
|
pluginsToActivate,
|
2019-10-16 22:01:56 +00:00
|
|
|
wc_connect_options,
|
2019-08-26 05:49:04 +00:00
|
|
|
};
|
|
|
|
} ),
|
|
|
|
withDispatch( dispatch => {
|
|
|
|
const { createNotice } = dispatch( 'core/notices' );
|
|
|
|
const { updateSettings } = dispatch( 'wc-api' );
|
|
|
|
|
|
|
|
return {
|
|
|
|
createNotice,
|
|
|
|
updateSettings,
|
|
|
|
};
|
|
|
|
} )
|
|
|
|
)( Tax );
|