2020-05-27 02:38:57 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Button } from '@wordpress/components';
|
2020-08-20 04:02:01 +00:00
|
|
|
import { useSelect, useDispatch } from '@wordpress/data';
|
|
|
|
import { PLUGINS_STORE_NAME, useUserPreferences } from '@woocommerce/data';
|
2020-06-12 06:38:33 +00:00
|
|
|
import { H } from '@woocommerce/components';
|
2020-08-20 04:59:52 +00:00
|
|
|
import { recordEvent } from '@woocommerce/tracks';
|
2020-05-27 02:38:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2020-08-20 04:02:01 +00:00
|
|
|
import { createErrorNotice } from '../../../packages/data/src/plugins/actions';
|
2020-05-27 02:38:57 +00:00
|
|
|
|
2020-08-20 04:02:01 +00:00
|
|
|
const getJetpackInstallText = ( jetpackInstallState ) => {
|
|
|
|
return (
|
|
|
|
{
|
|
|
|
unavailable: __( 'Get Jetpack', 'woocommerce-admin' ),
|
|
|
|
installed: __( 'Activate Jetpack', 'woocommerce-admin' ),
|
|
|
|
activated: __( 'Connect Jetpack', 'woocommerce-admin' ),
|
|
|
|
}[ jetpackInstallState ] || ''
|
2020-05-27 02:38:57 +00:00
|
|
|
);
|
2020-08-20 04:02:01 +00:00
|
|
|
};
|
2020-05-27 02:38:57 +00:00
|
|
|
|
2020-08-20 04:02:01 +00:00
|
|
|
export const JetpackCTA = ( {
|
|
|
|
onClickInstall,
|
|
|
|
onClickDismiss,
|
|
|
|
isBusy,
|
|
|
|
jetpackInstallState,
|
|
|
|
} ) => {
|
2020-05-27 02:38:57 +00:00
|
|
|
return (
|
|
|
|
<article className="woocommerce-stats-overview__install-jetpack-promo">
|
2020-06-18 23:44:00 +00:00
|
|
|
<div className="woocommerce-stats-overview__install-jetpack-promo__content">
|
|
|
|
<H>
|
|
|
|
{ __(
|
|
|
|
'Get traffic stats with Jetpack',
|
|
|
|
'woocommerce-admin'
|
|
|
|
) }
|
|
|
|
</H>
|
|
|
|
<p>
|
|
|
|
{ __(
|
|
|
|
'Keep an eye on your views and visitors metrics with ' +
|
|
|
|
'Jetpack. Requires Jetpack plugin and a WordPress.com ' +
|
|
|
|
'account.',
|
|
|
|
'woocommerce-admin'
|
|
|
|
) }
|
|
|
|
</p>
|
|
|
|
</div>
|
2020-05-27 02:38:57 +00:00
|
|
|
<footer>
|
2020-08-20 04:02:01 +00:00
|
|
|
<Button
|
|
|
|
isSecondary
|
|
|
|
onClick={ () => {
|
|
|
|
recordEvent( 'statsoverview_install_jetpack' );
|
|
|
|
onClickInstall();
|
|
|
|
} }
|
|
|
|
disabled={ isBusy }
|
|
|
|
isBusy={ isBusy }
|
|
|
|
>
|
|
|
|
{ getJetpackInstallText( jetpackInstallState ) }
|
2020-05-27 02:38:57 +00:00
|
|
|
</Button>
|
2020-08-20 04:02:01 +00:00
|
|
|
<Button
|
|
|
|
isTertiary
|
|
|
|
onClick={ () => {
|
|
|
|
recordEvent( 'statsoverview_dismiss_install_jetpack' );
|
|
|
|
onClickDismiss();
|
|
|
|
} }
|
|
|
|
disabled={ isBusy }
|
|
|
|
isBusy={ isBusy }
|
|
|
|
>
|
2020-05-27 02:38:57 +00:00
|
|
|
{ __( 'No thanks', 'woocommerce-admin' ) }
|
|
|
|
</Button>
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-08-20 04:02:01 +00:00
|
|
|
export const InstallJetpackCTA = () => {
|
|
|
|
const { updateUserPreferences, ...userPrefs } = useUserPreferences();
|
|
|
|
const { jetpackInstallState, isBusy } = useSelect( ( select ) => {
|
|
|
|
const { getPluginInstallState, isPluginsRequesting } = select(
|
|
|
|
PLUGINS_STORE_NAME
|
|
|
|
);
|
|
|
|
const installState = getPluginInstallState( 'jetpack' );
|
|
|
|
const busyState =
|
|
|
|
isPluginsRequesting( 'getJetpackConnectUrl' ) ||
|
|
|
|
isPluginsRequesting( 'installPlugins' ) ||
|
|
|
|
isPluginsRequesting( 'activatePlugins' );
|
2020-05-27 02:38:57 +00:00
|
|
|
|
|
|
|
return {
|
2020-08-20 04:02:01 +00:00
|
|
|
isBusy: busyState,
|
|
|
|
jetpackInstallState: installState,
|
2020-05-27 02:38:57 +00:00
|
|
|
};
|
2020-08-20 04:02:01 +00:00
|
|
|
} );
|
2020-06-12 06:38:33 +00:00
|
|
|
|
2020-08-20 04:02:01 +00:00
|
|
|
const { installJetpackAndConnect } = useDispatch( PLUGINS_STORE_NAME );
|
|
|
|
|
|
|
|
const onClickInstall = () => {
|
|
|
|
installJetpackAndConnect( createErrorNotice );
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<JetpackCTA
|
|
|
|
jetpackInstallState={ jetpackInstallState }
|
|
|
|
isBusy={ isBusy }
|
|
|
|
onClickInstall={ onClickInstall }
|
|
|
|
onClickDismiss={ () => {
|
|
|
|
const homepageStats = userPrefs.homepage_stats || {};
|
|
|
|
homepageStats.installJetpackDismissed = true;
|
|
|
|
updateUserPreferences( {
|
|
|
|
homepage_stats: homepageStats,
|
|
|
|
} );
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|