95 lines
2.7 KiB
TypeScript
95 lines
2.7 KiB
TypeScript
/**
|
||
* External dependencies
|
||
*/
|
||
import { __ } from '@wordpress/i18n';
|
||
import { Button, CheckboxControl } from '@wordpress/components';
|
||
import { useState } from '@wordpress/element';
|
||
import interpolateComponents from '@automattic/interpolate-components';
|
||
import { Link } from '@woocommerce/components';
|
||
|
||
/**
|
||
* Internal dependencies
|
||
*/
|
||
import { IntroOptInEvent } from '../index';
|
||
import { Heading } from '../components/heading/heading';
|
||
import { Navigation } from '../components/navigation/navigation';
|
||
|
||
export const IntroOptIn = ( {
|
||
sendEvent,
|
||
navigationProgress,
|
||
}: {
|
||
sendEvent: ( event: IntroOptInEvent ) => void;
|
||
navigationProgress: number;
|
||
} ) => {
|
||
const [ iOptInDataSharing, setIsOptInDataSharing ] =
|
||
useState< boolean >( true );
|
||
|
||
return (
|
||
<div
|
||
className="woocommerce-profiler-intro-opt-in"
|
||
data-testid="core-profiler-intro-opt-in-screen"
|
||
>
|
||
<Navigation
|
||
percentage={ navigationProgress }
|
||
skipText={ __( 'Skip guided setup', 'woocommerce' ) }
|
||
onSkip={ () =>
|
||
sendEvent( {
|
||
type: 'INTRO_SKIPPED',
|
||
payload: { optInDataSharing: false },
|
||
} )
|
||
}
|
||
/>
|
||
<div className="woocommerce-profiler-page__content woocommerce-profiler-intro-opt-in__content">
|
||
<div className="woocommerce-profiler-welcome-image" />
|
||
<Heading
|
||
title={ __( 'Welcome to Woo!', 'woocommerce' ) }
|
||
subTitle={ interpolateComponents( {
|
||
mixedString: __(
|
||
"It's great to have you here with us! We'll be guiding you through the setup process – first, answer a few questions to tailor your experience.",
|
||
'woocommerce'
|
||
),
|
||
components: {
|
||
br: <br />,
|
||
},
|
||
} ) }
|
||
/>
|
||
<Button
|
||
className="woocommerce-profiler-setup-store__button"
|
||
variant="primary"
|
||
onClick={ () =>
|
||
sendEvent( {
|
||
type: 'INTRO_COMPLETED',
|
||
payload: { optInDataSharing: iOptInDataSharing },
|
||
} )
|
||
}
|
||
>
|
||
{ __( 'Set up my store', 'woocommerce' ) }
|
||
</Button>
|
||
|
||
<div className="woocommerce-profiler-intro-opt-in__footer">
|
||
<CheckboxControl
|
||
className="core-profiler__checkbox"
|
||
label={ interpolateComponents( {
|
||
mixedString: __(
|
||
'I agree to share my data to tailor my store setup experience, get more relevant content, and help make WooCommerce better for everyone. You can opt out at any time in WooCommerce settings. {{link}}Learn more about usage tracking.{{/link}}',
|
||
'woocommerce'
|
||
),
|
||
components: {
|
||
link: (
|
||
<Link
|
||
href="https://woo.com/usage-tracking?utm_medium=product"
|
||
target="_blank"
|
||
type="external"
|
||
/>
|
||
),
|
||
},
|
||
} ) }
|
||
checked={ iOptInDataSharing }
|
||
onChange={ setIsOptInDataSharing }
|
||
/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|