118 lines
3.2 KiB
JavaScript
118 lines
3.2 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { useState, useEffect, useRef } from '@wordpress/element';
|
|
import { Button, Modal, CheckboxControl } from '@wordpress/components';
|
|
import { withDispatch } from '@wordpress/data';
|
|
import { compose } from '@wordpress/compose';
|
|
import { OPTIONS_STORE_NAME } from '@woocommerce/data';
|
|
import { recordEvent } from '@woocommerce/tracks';
|
|
import { initializeExPlat } from '@woocommerce/explat';
|
|
|
|
const BetaFeaturesTrackingModal = ( { updateOptions } ) => {
|
|
const [ isModalOpen, setIsModalOpen ] = useState( false );
|
|
const [ isChecked, setIsChecked ] = useState( false );
|
|
const enableNavigationCheckbox = useRef(
|
|
document.querySelector( '#woocommerce_navigation_enabled' )
|
|
);
|
|
|
|
const setTracking = async ( allow ) => {
|
|
if ( typeof window.wcTracks.enable === 'function' ) {
|
|
if ( allow ) {
|
|
window.wcTracks.enable( () => {
|
|
initializeExPlat();
|
|
} );
|
|
} else {
|
|
window.wcTracks.isEnabled = false;
|
|
}
|
|
}
|
|
|
|
if ( allow ) {
|
|
recordEvent( 'settings_features_tracking_enabled' );
|
|
}
|
|
|
|
return updateOptions( {
|
|
woocommerce_allow_tracking: allow ? 'yes' : 'no',
|
|
} );
|
|
};
|
|
|
|
useEffect( () => {
|
|
if ( ! enableNavigationCheckbox.current ) {
|
|
return;
|
|
}
|
|
const listener = ( e ) => {
|
|
if ( e.target.checked ) {
|
|
e.target.checked = false;
|
|
setIsModalOpen( true );
|
|
}
|
|
};
|
|
|
|
const checkbox = enableNavigationCheckbox.current;
|
|
|
|
checkbox.addEventListener( 'change', listener, false );
|
|
|
|
return () => checkbox.removeEventListener( 'change', listener );
|
|
}, [] );
|
|
|
|
if ( ! enableNavigationCheckbox.current ) {
|
|
return null;
|
|
}
|
|
|
|
if ( ! isModalOpen ) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Modal
|
|
title={ __( 'Build a Better WooCommerce', 'woocommerce' ) }
|
|
onRequestClose={ () => setIsModalOpen( false ) }
|
|
className="woocommerce-beta-features-tracking-modal"
|
|
>
|
|
<p>
|
|
{ __(
|
|
'Testing new features requires sharing non-sensitive data via ',
|
|
'woocommerce'
|
|
) }
|
|
<a href="https://woocommerce.com/usage-tracking?utm_medium=product">
|
|
{ __( 'usage tracking', 'woocommerce' ) }
|
|
</a>
|
|
{ __(
|
|
'. Gathering usage data allows us to make WooCommerce better — your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. No personal data is tracked or stored and you can opt-out at any time.',
|
|
'woocommerce'
|
|
) }
|
|
</p>
|
|
<div className="woocommerce-beta-features-tracking-modal__checkbox">
|
|
<CheckboxControl
|
|
label="Enable usage tracking"
|
|
onChange={ setIsChecked }
|
|
checked={ isChecked }
|
|
/>
|
|
</div>
|
|
<div className="woocommerce-beta-features-tracking-modal__actions">
|
|
<Button
|
|
isPrimary
|
|
onClick={ async () => {
|
|
if ( isChecked ) {
|
|
await setTracking( true );
|
|
enableNavigationCheckbox.current.checked = true;
|
|
} else {
|
|
await setTracking( false );
|
|
}
|
|
setIsModalOpen( false );
|
|
} }
|
|
>
|
|
{ __( 'Save', 'woocommerce' ) }
|
|
</Button>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export const BetaFeaturesTrackingContainer = compose(
|
|
withDispatch( ( dispatch ) => {
|
|
const { updateOptions } = dispatch( OPTIONS_STORE_NAME );
|
|
return { updateOptions };
|
|
} )
|
|
)( BetaFeaturesTrackingModal );
|