2022-04-20 04:28:31 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2022-07-06 06:20:11 +00:00
|
|
|
import { Button } from '@wordpress/components';
|
2022-04-06 16:38:38 +00:00
|
|
|
import { __ } from '@wordpress/i18n';
|
2022-04-26 02:55:44 +00:00
|
|
|
import { getAdminLink } from '@woocommerce/settings';
|
2022-07-06 06:20:11 +00:00
|
|
|
import {
|
|
|
|
WCPayBanner,
|
|
|
|
WCPayBannerBody,
|
|
|
|
WCPayBannerFooter,
|
|
|
|
} from '@woocommerce/onboarding';
|
2022-04-20 04:28:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2022-04-06 16:38:38 +00:00
|
|
|
import './payment-recommendations.scss';
|
2022-05-16 22:07:42 +00:00
|
|
|
import { getAdminSetting } from '~/utils/admin-settings';
|
2022-06-22 08:45:31 +00:00
|
|
|
import { usePaymentExperiment } from './use-payments-experiment';
|
2022-04-06 16:38:38 +00:00
|
|
|
|
2022-07-06 06:20:11 +00:00
|
|
|
const WCPaySettingBanner = () => {
|
2022-04-26 02:55:44 +00:00
|
|
|
const WC_PAY_SETUP_URL = getAdminLink(
|
2022-05-16 22:07:42 +00:00
|
|
|
'admin.php?wcpay-connect=1&_wpnonce=' +
|
|
|
|
getAdminSetting( 'wcpay_welcome_page_connect_nonce' )
|
2022-04-26 02:55:44 +00:00
|
|
|
);
|
2022-05-16 22:07:42 +00:00
|
|
|
|
2022-04-06 16:38:38 +00:00
|
|
|
return (
|
2022-07-06 06:20:11 +00:00
|
|
|
<WCPayBanner>
|
|
|
|
<WCPayBannerBody
|
|
|
|
textPosition="right"
|
|
|
|
actionButton={
|
2022-04-19 08:07:07 +00:00
|
|
|
<Button href={ WC_PAY_SETUP_URL } isPrimary>
|
2022-04-06 16:38:38 +00:00
|
|
|
{ __( 'Get started', 'woocommerce' ) }
|
|
|
|
</Button>
|
2022-07-06 06:20:11 +00:00
|
|
|
}
|
|
|
|
/>
|
|
|
|
<WCPayBannerFooter />
|
|
|
|
</WCPayBanner>
|
2022-04-06 16:38:38 +00:00
|
|
|
);
|
|
|
|
};
|
2022-04-19 08:07:07 +00:00
|
|
|
|
2022-04-21 05:14:28 +00:00
|
|
|
const DefaultPaymentMethodsHeaderText = () => (
|
|
|
|
<>
|
2022-07-05 05:28:31 +00:00
|
|
|
<h2>{ __( 'Payment Methods', 'woocommerce' ) }</h2>
|
2022-04-21 05:14:28 +00:00
|
|
|
<div id="payment_gateways_options-description">
|
|
|
|
<p>
|
2022-07-05 05:28:31 +00:00
|
|
|
{ __(
|
|
|
|
'Installed payment methods are listed below and can be sorted to control their display order on the frontend.',
|
|
|
|
'woocommerce'
|
|
|
|
) }
|
2022-04-21 05:14:28 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
2022-04-20 07:29:29 +00:00
|
|
|
export const PaymentsBannerWrapper = () => {
|
2022-06-22 08:45:31 +00:00
|
|
|
const { isLoadingExperiment, experimentAssignment } =
|
|
|
|
usePaymentExperiment();
|
2022-04-19 08:07:07 +00:00
|
|
|
|
2022-06-22 08:45:31 +00:00
|
|
|
if (
|
|
|
|
! isLoadingExperiment &&
|
|
|
|
experimentAssignment?.variationName === 'treatment'
|
|
|
|
) {
|
2022-07-06 06:20:11 +00:00
|
|
|
return <WCPaySettingBanner />;
|
2022-04-19 08:07:07 +00:00
|
|
|
}
|
2022-04-21 05:14:28 +00:00
|
|
|
return <DefaultPaymentMethodsHeaderText />;
|
2022-04-19 08:07:07 +00:00
|
|
|
};
|