118 lines
3.0 KiB
TypeScript
118 lines
3.0 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import interpolateComponents from '@automattic/interpolate-components';
|
|
import { Link, Plugins as PluginInstaller } from '@woocommerce/components';
|
|
import { OPTIONS_STORE_NAME, PLUGINS_STORE_NAME } from '@woocommerce/data';
|
|
import { recordEvent, queueRecordEvent } from '@woocommerce/tracks';
|
|
import { Text } from '@woocommerce/experimental';
|
|
import { useDispatch, useSelect } from '@wordpress/data';
|
|
import { useEffect } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { createNoticesFromResponse } from '~/lib/notices';
|
|
import { SetupStepProps } from './setup';
|
|
import { SettingsSelector } from '../utils';
|
|
|
|
export const Plugins: React.FC< SetupStepProps > = ( {
|
|
nextStep,
|
|
onDisable,
|
|
onManual,
|
|
pluginsToActivate,
|
|
} ) => {
|
|
const { updateOptions } = useDispatch( OPTIONS_STORE_NAME );
|
|
const { isResolving, tosAccepted } = useSelect( ( select ) => {
|
|
const { getOption, hasFinishedResolution } = select(
|
|
OPTIONS_STORE_NAME
|
|
) as SettingsSelector;
|
|
|
|
return {
|
|
isResolving:
|
|
! hasFinishedResolution( 'getOption', [
|
|
'woocommerce_setup_jetpack_opted_in',
|
|
] ) ||
|
|
! hasFinishedResolution( 'getOption', [
|
|
'wc_connect_options',
|
|
] ),
|
|
tosAccepted:
|
|
getOption( 'wc_connect_options' )?.tos_accepted ||
|
|
getOption( 'woocommerce_setup_jetpack_opted_in' ) === '1',
|
|
};
|
|
} );
|
|
|
|
useEffect( () => {
|
|
if ( ! tosAccepted || pluginsToActivate.length ) {
|
|
return;
|
|
}
|
|
|
|
nextStep();
|
|
}, [ isResolving ] );
|
|
|
|
const agreementText = pluginsToActivate.includes( 'woocommerce-services' )
|
|
? __(
|
|
'By installing Jetpack and WooCommerce Tax you agree to the {{link}}Terms of Service{{/link}}.',
|
|
'woocommerce'
|
|
)
|
|
: __(
|
|
'By installing Jetpack you agree to the {{link}}Terms of Service{{/link}}.',
|
|
'woocommerce'
|
|
);
|
|
|
|
if ( isResolving ) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PluginInstaller
|
|
onComplete={ ( activatedPlugins, response ) => {
|
|
createNoticesFromResponse( response );
|
|
recordEvent( 'tasklist_tax_install_extensions', {
|
|
install_extensions: true,
|
|
} );
|
|
updateOptions( {
|
|
woocommerce_setup_jetpack_opted_in: true,
|
|
} );
|
|
nextStep();
|
|
} }
|
|
onError={ ( errors, response ) =>
|
|
createNoticesFromResponse( response )
|
|
}
|
|
onSkip={ () => {
|
|
queueRecordEvent( 'tasklist_tax_install_extensions', {
|
|
install_extensions: false,
|
|
} );
|
|
onManual();
|
|
} }
|
|
skipText={ __( 'Set up manually', 'woocommerce' ) }
|
|
onAbort={ () => onDisable() }
|
|
abortText={ __( "I don't charge sales tax", 'woocommerce' ) }
|
|
/>
|
|
{ ! tosAccepted && (
|
|
<Text
|
|
variant="caption"
|
|
className="woocommerce-task__caption"
|
|
size="12"
|
|
lineHeight="16px"
|
|
>
|
|
{ interpolateComponents( {
|
|
mixedString: agreementText,
|
|
components: {
|
|
link: (
|
|
<Link
|
|
href={ 'https://wordpress.com/tos/' }
|
|
target="_blank"
|
|
type="external"
|
|
/>
|
|
),
|
|
},
|
|
} ) }
|
|
</Text>
|
|
) }
|
|
</>
|
|
);
|
|
};
|