/** * External dependencies */ import { __ } from '@wordpress/i18n'; import interpolateComponents from '@automattic/interpolate-components'; import { Link, Pill } from '@woocommerce/components'; import { recordEvent } from '@woocommerce/tracks'; import { Text } from '@woocommerce/experimental'; import { WCPayCard, WCPayCardHeader, WCPayCardFooter, WCPayCardBody, SetupRequired, } from '@woocommerce/onboarding'; import { useDispatch } from '@wordpress/data'; /** * Internal dependencies */ import { Action } from '../Action'; import { connectWcpay } from './utils'; const TosPrompt = () => interpolateComponents( { mixedString: __( 'Upon clicking "Get started", you agree to the {{link}}Terms of service{{/link}}. Next we’ll ask you to share a few details about your business to create your account.', 'woocommerce-admin' ), components: { link: ( ), }, } ); export const Suggestion = ( { paymentGateway, onSetupCallback = null } ) => { const { description, id, needsSetup, installed, enabled: isEnabled, installed: isInstalled, } = paymentGateway; const { createNotice } = useDispatch( 'core/notices' ); // When the WC Pay is installed and onSetupCallback is null // Overwrite onSetupCallback to redirect to the setup page // when the user clicks on the "Finish setup" button. // WC Pay doesn't need to be configured in WCA. // It should be configured in its onboarding flow. if ( installed && onSetupCallback === null ) { onSetupCallback = () => { connectWcpay( createNotice ); }; } return ( { installed && needsSetup ? ( ) : ( { __( 'Recommended', 'woocommerce-admin' ) } ) } { recordEvent( 'tasklist_payment_learn_more' ); } } /> <> ); };