/** * External dependencies */ import { __ } from '@wordpress/i18n'; import apiFetch from '@wordpress/api-fetch'; import { Button, CheckboxControl } from '@wordpress/components'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import interpolateComponents from 'interpolate-components'; import { withDispatch, withSelect } from '@wordpress/data'; import { isEmail } from '@wordpress/url'; import { Form, Link, Stepper, TextControl } from '@woocommerce/components'; import { getQuery } from '@woocommerce/navigation'; import { PLUGINS_STORE_NAME, OPTIONS_STORE_NAME } from '@woocommerce/data'; /** * Internal dependencies */ import { WC_ADMIN_NAMESPACE } from '../../../wc-api/constants'; export class PayPal extends Component { constructor( props ) { super( props ); this.state = { autoConnectFailed: false, connectURL: '', isPending: false, }; this.updateSettings = this.updateSettings.bind( this ); this.validate = this.validate.bind( this ); } componentDidMount() { const { createNotice, markConfigured } = this.props; const query = getQuery(); // Handle redirect back from PayPal if ( query[ 'paypal-connect' ] ) { if ( query[ 'paypal-connect' ] === '1' ) { createNotice( 'success', __( 'PayPal connected successfully.', 'woocommerce-admin' ) ); markConfigured( 'paypal' ); return; } /* eslint-disable react/no-did-mount-set-state */ this.setState( { autoConnectFailed: true, } ); /* eslint-enable react/no-did-mount-set-state */ return; } this.fetchOAuthConnectURL(); } componentDidUpdate( prevProps ) { const { activePlugins } = this.props; if ( ! prevProps.activePlugins.includes( 'woocommerce-gateway-paypal-express-checkout' ) && activePlugins.includes( 'woocommerce-gateway-paypal-express-checkout' ) ) { this.fetchOAuthConnectURL(); } } isWooCommerceServicesConnected() { const { activePlugins, isJetpackConnected, wcsTosAccepted, } = this.props; return ( isJetpackConnected && wcsTosAccepted && activePlugins.includes( 'woocommerce-services' ) ); } async fetchOAuthConnectURL() { const { activePlugins } = this.props; if ( ! activePlugins.includes( 'woocommerce-gateway-paypal-express-checkout' ) ) { return; } this.setState( { isPending: true } ); try { const result = await apiFetch( { path: WC_ADMIN_NAMESPACE + '/plugins/connect-paypal', method: 'POST', } ); if ( ! result || ! result.connectUrl ) { this.setState( { autoConnectFailed: true, isPending: false, } ); return; } this.setState( { connectURL: result.connectUrl, isPending: false, } ); } catch ( error ) { this.setState( { autoConnectFailed: true, isPending: false, } ); } } async updateSettings( values ) { const { createNotice, options, updateOptions, markConfigured, } = this.props; const optionValues = { ...options.woocommerce_ppec_paypal_settings, enabled: 'yes', }; if ( values.create_account ) { // Tell WCS to proxy payment requests. // See: https://github.com/Automattic/woocommerce-services/blob/29dfe0ba6fd3075afe08f917a6ff33c321502d9c/classes/class-wc-connect-paypal-ec.php#L53. optionValues.reroute_requests = 'yes'; optionValues.email = values.account_email; } else { optionValues.api_username = values.api_username; optionValues.api_password = values.api_password; } const update = await updateOptions( { woocommerce_ppec_paypal_settings: optionValues, } ); if ( update.success ) { createNotice( 'success', __( 'PayPal connected successfully.', 'woocommerce-admin' ) ); markConfigured( 'paypal' ); } else { createNotice( 'error', __( 'There was a problem saving your payment settings.', 'woocommerce-admin' ) ); } } getInitialConfigValues() { return { api_username: '', api_password: '', create_account: this.isWooCommerceServicesConnected(), account_email: '', }; } validate( values ) { const errors = {}; if ( ! values.create_account && ! values.api_username ) { errors.api_username = __( 'Please enter your API username', 'woocommerce-admin' ); } if ( ! values.create_account && ! values.api_password ) { errors.api_password = __( 'Please enter your API password', 'woocommerce-admin' ); } if ( this.isWooCommerceServicesConnected() && values.create_account && ! isEmail( values.account_email ) ) { errors.account_email = __( 'Please enter a valid email address', 'woocommerce-admin' ); } return errors; } renderAutomaticConfig() { const { isOptionsUpdating } = this.props; const { autoConnectFailed, connectURL, isPending } = this.state; const canAutoCreate = this.isWooCommerceServicesConnected(); const initialValues = this.getInitialConfigValues(); return (
); } getConnectStep() { return { key: 'connect', label: __( 'Connect your PayPal account', 'woocommerce-admin' ), description: __( 'A Paypal account is required to process payments. Connect your store to your PayPal account.', 'woocommerce-admin' ), content: this.renderAutomaticConfig(), }; } render() { const { installStep } = this.props; const { isPending } = this.state; return (