mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
102 lines
2.8 KiB
JavaScript
102 lines
2.8 KiB
JavaScript
import { useEffect, useState } from '@wordpress/element';
|
|
import { loadCustomScript } from '@paypal/paypal-js';
|
|
import {
|
|
registerExpressPaymentMethod,
|
|
registerPaymentMethod,
|
|
} from '@woocommerce/blocks-registry';
|
|
import { __ } from '@wordpress/i18n';
|
|
import { loadPayPalScript } from '../../../ppcp-button/resources/js/modules/Helper/PayPalScriptLoading';
|
|
import GooglepayManager from './GooglepayManager';
|
|
import GooglepayManagerBlockEditor from './GooglepayManagerBlockEditor';
|
|
|
|
const ppcpData = wc.wcSettings.getSetting( 'ppcp-gateway_data' );
|
|
const ppcpConfig = ppcpData.scriptData;
|
|
|
|
const buttonData = wc.wcSettings.getSetting( 'ppcp-googlepay_data' );
|
|
const buttonConfig = buttonData.scriptData;
|
|
const namespace = 'ppcpBlocksPaypalGooglepay';
|
|
|
|
if ( typeof window.PayPalCommerceGateway === 'undefined' ) {
|
|
window.PayPalCommerceGateway = ppcpConfig;
|
|
}
|
|
|
|
const GooglePayComponent = ( { isEditing, buttonAttributes } ) => {
|
|
const [ paypalLoaded, setPaypalLoaded ] = useState( false );
|
|
const [ googlePayLoaded, setGooglePayLoaded ] = useState( false );
|
|
const [ manager, setManager ] = useState( null );
|
|
|
|
useEffect( () => {
|
|
if ( ! isEditing ) {
|
|
loadCustomScript( { url: buttonConfig.sdk_url } ).then( () => {
|
|
setGooglePayLoaded( true );
|
|
} );
|
|
|
|
ppcpConfig.url_params.components += ',googlepay';
|
|
|
|
loadPayPalScript( namespace, ppcpConfig )
|
|
.then( () => {
|
|
setPaypalLoaded( true );
|
|
} )
|
|
.catch( ( error ) => {
|
|
console.error( 'Failed to load PayPal script: ', error );
|
|
} );
|
|
}
|
|
}, [ isEditing, buttonConfig, ppcpConfig ] );
|
|
|
|
useEffect( () => {
|
|
if ( ! isEditing && paypalLoaded && googlePayLoaded && ! manager ) {
|
|
const newManager = new GooglepayManager(
|
|
namespace,
|
|
buttonConfig,
|
|
ppcpConfig,
|
|
buttonAttributes
|
|
);
|
|
setManager( newManager );
|
|
}
|
|
}, [
|
|
paypalLoaded,
|
|
googlePayLoaded,
|
|
isEditing,
|
|
manager,
|
|
buttonAttributes,
|
|
] );
|
|
|
|
if ( isEditing ) {
|
|
return (
|
|
<GooglepayManagerBlockEditor
|
|
namespace={ namespace }
|
|
buttonConfig={ buttonConfig }
|
|
ppcpConfig={ ppcpConfig }
|
|
buttonAttributes={ buttonAttributes }
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
id={ buttonConfig.button.wrapper.replace( '#', '' ) }
|
|
className="ppcp-button-apm ppcp-button-googlepay"
|
|
/>
|
|
);
|
|
};
|
|
|
|
const features = [ 'products' ];
|
|
|
|
registerExpressPaymentMethod( {
|
|
name: buttonData.id,
|
|
title: `PayPal - ${ buttonData.title }`,
|
|
description: __(
|
|
'Eligible users will see the PayPal button.',
|
|
'woocommerce-paypal-payments'
|
|
),
|
|
gatewayId: 'ppcp-gateway',
|
|
label: <div dangerouslySetInnerHTML={ { __html: buttonData.title } } />,
|
|
content: <GooglePayComponent isEditing={ false } />,
|
|
edit: <GooglePayComponent isEditing={ true } />,
|
|
ariaLabel: buttonData.title,
|
|
canMakePayment: () => buttonData.enabled,
|
|
supports: {
|
|
features,
|
|
style: [ 'height', 'borderRadius' ],
|
|
},
|
|
} );
|