mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
131 lines
3.6 KiB
JavaScript
131 lines
3.6 KiB
JavaScript
import OnboardingHeader from '../../ReusableComponents/OnboardingHeader.js';
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
import { Button, TextControl } from '@wordpress/components';
|
|
import PaymentMethodIcons from '../../ReusableComponents/PaymentMethodIcons';
|
|
import SettingsToggleBlock from '../../ReusableComponents/SettingsToggleBlock';
|
|
import Separator from '../../ReusableComponents/Separator';
|
|
|
|
const StepWelcome = ( { setStep, currentStep } ) => {
|
|
return (
|
|
<div className="ppcp-r-page-welcome">
|
|
<OnboardingHeader
|
|
title={ __(
|
|
'Welcome to PayPal Payments',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
description={ __(
|
|
'Your all-in-one checkout solution with PayPal, Venmo, Pay Later, all major credit/debit cards, Apple Pay, Google Pay, and more.',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
/>
|
|
<div className="ppcp-r-inner-container">
|
|
<PaymentMethodIcons icons="all" />
|
|
<WelcomeFeatures />
|
|
<Button
|
|
className="ppcp-r-button-activate-paypal"
|
|
variant="primary"
|
|
onClick={ () => setStep( currentStep + 1 ) }
|
|
>
|
|
{ __(
|
|
'Activate PayPal Payments',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
</Button>
|
|
<Separator
|
|
className="ppcp-r-page-welcome-or-separator"
|
|
text={ __( 'or', 'woocommerce-paypal-payments' ) }
|
|
/>
|
|
<WelcomeForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const WelcomeFeatures = () => {
|
|
return (
|
|
<div className="ppcp-r-welcome-features">
|
|
<div className="ppcp-r-welcome-features__col">
|
|
<span>{ __( 'Deposits', 'woocommerce-paypal-payments' ) }</span>
|
|
<p>{ __( 'Instant', 'woocommerce-paypal-payments' ) }</p>
|
|
</div>
|
|
<div className="ppcp-r-welcome-features__col">
|
|
<span>
|
|
{ __( 'Payment Capture', 'woocommerce-paypal-payments' ) }
|
|
</span>
|
|
<p>
|
|
{ __(
|
|
'Authorize only or Capture',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
</p>
|
|
</div>
|
|
<div className="ppcp-r-welcome-features__col">
|
|
<span>
|
|
{ __(
|
|
'Recurring payments',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
</span>
|
|
<p>{ __( 'Supported', 'woocommerce-paypal-payments' ) }</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const WelcomeForm = () => {
|
|
const advancedUsersDescription = sprintf(
|
|
// translators: %s: Link to PayPal REST application guide
|
|
__(
|
|
'For advanced users: Connect a custom PayPal REST app for full control over your integration. For more information on creating a PayPal REST application, <a href="%s">click here</a>.',
|
|
'woocommerce-paypal-payments'
|
|
),
|
|
'#'
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<SettingsToggleBlock
|
|
label={ __(
|
|
'Enable Sandbox Mode',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
description={ __(
|
|
'Activate Sandbox mode to safely test PayPal with sample data. Once your store is ready to go live, you can easily switch to your production account.',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
>
|
|
<Button variant="secondary">
|
|
{ __( 'Connect Account', 'woocommerce-paypal-payments' ) }
|
|
</Button>
|
|
</SettingsToggleBlock>
|
|
<Separator className="ppcp-r-page-welcome-mode-separator" />
|
|
<SettingsToggleBlock
|
|
label={ __(
|
|
'Manually Connect - TODO missing link',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
description={ advancedUsersDescription }
|
|
>
|
|
<TextControl
|
|
label={ __(
|
|
'Sandbox Client ID',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
></TextControl>
|
|
|
|
<TextControl
|
|
label={ __(
|
|
'Sandbox Secret Key',
|
|
'woocommerce-paypal-payments'
|
|
) }
|
|
type="password"
|
|
></TextControl>
|
|
<Button variant="secondary">
|
|
{ __( 'Connect Account', 'woocommerce-paypal-payments' ) }
|
|
</Button>
|
|
</SettingsToggleBlock>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default StepWelcome;
|