mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
Merge remote-tracking branch 'origin/task/shared-apple-google' into feat/PCP-154-apple-pay-payment
This commit is contained in:
commit
4797d53ad5
8 changed files with 94 additions and 19 deletions
|
@ -2,6 +2,7 @@ import {useEffect, useState} from '@wordpress/element';
|
||||||
import {registerExpressPaymentMethod, registerPaymentMethod} from '@woocommerce/blocks-registry';
|
import {registerExpressPaymentMethod, registerPaymentMethod} from '@woocommerce/blocks-registry';
|
||||||
import {paypalAddressToWc, paypalOrderToWcAddresses} from "./Helper/Address";
|
import {paypalAddressToWc, paypalOrderToWcAddresses} from "./Helper/Address";
|
||||||
import {loadPaypalScript} from '../../../ppcp-button/resources/js/modules/Helper/ScriptLoading'
|
import {loadPaypalScript} from '../../../ppcp-button/resources/js/modules/Helper/ScriptLoading'
|
||||||
|
import buttonModuleWatcher from "../../../ppcp-button/resources/js/modules/ButtonModuleWatcher";
|
||||||
|
|
||||||
const config = wc.wcSettings.getSetting('ppcp-gateway_data');
|
const config = wc.wcSettings.getSetting('ppcp-gateway_data');
|
||||||
|
|
||||||
|
@ -28,6 +29,7 @@ const PayPalComponent = ({
|
||||||
if (!loaded) {
|
if (!loaded) {
|
||||||
loadPaypalScript(config.scriptData, () => {
|
loadPaypalScript(config.scriptData, () => {
|
||||||
setLoaded(true);
|
setLoaded(true);
|
||||||
|
buttonModuleWatcher.registerContextBootstrap(config.scriptData.context, this);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [loaded]);
|
}, [loaded]);
|
||||||
|
|
|
@ -19,6 +19,7 @@ import FreeTrialHandler from "./modules/ActionHandler/FreeTrialHandler";
|
||||||
import FormSaver from './modules/Helper/FormSaver';
|
import FormSaver from './modules/Helper/FormSaver';
|
||||||
import FormValidator from "./modules/Helper/FormValidator";
|
import FormValidator from "./modules/Helper/FormValidator";
|
||||||
import {loadPaypalScript} from "./modules/Helper/ScriptLoading";
|
import {loadPaypalScript} from "./modules/Helper/ScriptLoading";
|
||||||
|
import buttonModuleWatcher from "./modules/ButtonModuleWatcher";
|
||||||
|
|
||||||
// TODO: could be a good idea to have a separate spinner for each gateway,
|
// TODO: could be a good idea to have a separate spinner for each gateway,
|
||||||
// but I think we care mainly about the script loading, so one spinner should be enough.
|
// but I think we care mainly about the script loading, so one spinner should be enough.
|
||||||
|
@ -60,6 +61,11 @@ const bootstrap = () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const hasMessages = () => {
|
||||||
|
return PayPalCommerceGateway.messages.is_hidden === false
|
||||||
|
&& document.querySelector(PayPalCommerceGateway.messages.wrapper);
|
||||||
|
}
|
||||||
|
|
||||||
const onSmartButtonClick = async (data, actions) => {
|
const onSmartButtonClick = async (data, actions) => {
|
||||||
window.ppcpFundingSource = data.fundingSource;
|
window.ppcpFundingSource = data.fundingSource;
|
||||||
const requiredFields = jQuery('form.woocommerce-checkout .validate-required:visible :input');
|
const requiredFields = jQuery('form.woocommerce-checkout .validate-required:visible :input');
|
||||||
|
@ -146,6 +152,7 @@ const bootstrap = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
miniCartBootstrap.init();
|
miniCartBootstrap.init();
|
||||||
|
buttonModuleWatcher.registerContextBootstrap('mini-cart', miniCartBootstrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
@ -163,6 +170,7 @@ const bootstrap = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
singleProductBootstrap.init();
|
singleProductBootstrap.init();
|
||||||
|
buttonModuleWatcher.registerContextBootstrap('product', singleProductBootstrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (context === 'cart') {
|
if (context === 'cart') {
|
||||||
|
@ -174,6 +182,7 @@ const bootstrap = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
cartBootstrap.init();
|
cartBootstrap.init();
|
||||||
|
buttonModuleWatcher.registerContextBootstrap('cart', cartBootstrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (context === 'checkout') {
|
if (context === 'checkout') {
|
||||||
|
@ -186,6 +195,7 @@ const bootstrap = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
checkoutBootstap.init();
|
checkoutBootstap.init();
|
||||||
|
buttonModuleWatcher.registerContextBootstrap('checkout', checkoutBootstap);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (context === 'pay-now' ) {
|
if (context === 'pay-now' ) {
|
||||||
|
@ -197,15 +207,11 @@ const bootstrap = () => {
|
||||||
errorHandler,
|
errorHandler,
|
||||||
);
|
);
|
||||||
payNowBootstrap.init();
|
payNowBootstrap.init();
|
||||||
|
buttonModuleWatcher.registerContextBootstrap('pay-now', payNowBootstrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const hasMessages = () => {
|
|
||||||
return PayPalCommerceGateway.messages.is_hidden === false
|
|
||||||
&& document.querySelector(PayPalCommerceGateway.messages.wrapper);
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener(
|
document.addEventListener(
|
||||||
'DOMContentLoaded',
|
'DOMContentLoaded',
|
||||||
() => {
|
() => {
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
|
||||||
|
class ButtonModuleWatcher {
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.contextBootstrapRegistry = {};
|
||||||
|
this.contextBootstrapWatchers = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
watchContextBootstrap(callable) {
|
||||||
|
this.contextBootstrapWatchers.push(callable);
|
||||||
|
Object.values(this.contextBootstrapRegistry).forEach(callable);
|
||||||
|
}
|
||||||
|
|
||||||
|
registerContextBootstrap(context, handler) {
|
||||||
|
this.contextBootstrapRegistry[context] = {
|
||||||
|
context: context,
|
||||||
|
handler: handler
|
||||||
|
}
|
||||||
|
|
||||||
|
// Call registered watchers
|
||||||
|
for (const callable of this.contextBootstrapWatchers) {
|
||||||
|
callable(this.contextBootstrapRegistry[context]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
window.ppcpResources = window.ppcpResources || {};
|
||||||
|
const buttonModuleWatcher = window.ppcpResources['ButtonModuleWatcher'] = window.ppcpResources['ButtonModuleWatcher'] || new ButtonModuleWatcher();
|
||||||
|
|
||||||
|
export default buttonModuleWatcher;
|
|
@ -1,5 +1,4 @@
|
||||||
import {loadScript} from "@paypal/paypal-js";
|
import {loadScript} from "@paypal/paypal-js";
|
||||||
import widgetBuilder from "./Renderer/WidgetBuilder";
|
|
||||||
|
|
||||||
const storageKey = 'ppcp-data-client-id';
|
const storageKey = 'ppcp-data-client-id';
|
||||||
|
|
||||||
|
|
|
@ -480,11 +480,10 @@ class SmartButton implements SmartButtonInterface {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<p
|
echo '<p class="woocommerce-mini-cart__buttons buttons">';
|
||||||
id="ppc-button-minicart"
|
echo '<span id="ppc-button-minicart"></span>';
|
||||||
class="woocommerce-mini-cart__buttons buttons"
|
|
||||||
></p>';
|
|
||||||
do_action( 'woocommerce_paypal_payments_minicart_button_render' );
|
do_action( 'woocommerce_paypal_payments_minicart_button_render' );
|
||||||
|
echo '</div>';
|
||||||
},
|
},
|
||||||
30
|
30
|
||||||
);
|
);
|
||||||
|
|
|
@ -11,6 +11,7 @@ namespace WooCommerce\PayPalCommerce\Button\Endpoint;
|
||||||
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
use WooCommerce\PayPalCommerce\ApiClient\Entity\Money;
|
||||||
use WooCommerce\PayPalCommerce\Button\Assets\SmartButton;
|
use WooCommerce\PayPalCommerce\Button\Assets\SmartButton;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -71,12 +72,24 @@ class CartScriptParamsEndpoint implements EndpointInterface {
|
||||||
|
|
||||||
$script_data = $this->smart_button->script_data();
|
$script_data = $this->smart_button->script_data();
|
||||||
|
|
||||||
|
$total = (float) WC()->cart->get_total( 'numeric' );
|
||||||
|
|
||||||
|
// Shop settings.
|
||||||
|
$base_location = wc_get_base_location();
|
||||||
|
$shop_country_code = $base_location['country'];
|
||||||
|
$currency_code = get_woocommerce_currency();
|
||||||
|
|
||||||
wp_send_json_success(
|
wp_send_json_success(
|
||||||
array(
|
array(
|
||||||
'url_params' => $script_data['url_params'],
|
'url_params' => $script_data['url_params'],
|
||||||
'button' => $script_data['button'],
|
'button' => $script_data['button'],
|
||||||
'messages' => $script_data['messages'],
|
'messages' => $script_data['messages'],
|
||||||
'amount' => WC()->cart->get_total( 'raw' ),
|
'amount' => WC()->cart->get_total( 'raw' ),
|
||||||
|
|
||||||
|
'total' => $total,
|
||||||
|
'total_str' => ( new Money( $total, $currency_code ) )->value_str(),
|
||||||
|
'currency_code' => $currency_code,
|
||||||
|
'country_code' => $shop_country_code,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ namespace WooCommerce\PayPalCommerce\Button\Endpoint;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
use WooCommerce\PayPalCommerce\ApiClient\Entity\Money;
|
||||||
use WooCommerce\PayPalCommerce\Button\Assets\SmartButton;
|
use WooCommerce\PayPalCommerce\Button\Assets\SmartButton;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -100,9 +101,17 @@ class SimulateCartEndpoint extends AbstractCartEndpoint {
|
||||||
$button_enabled = $button_enabled && ! $this->smart_button->is_button_disabled( 'product', $context_data );
|
$button_enabled = $button_enabled && ! $this->smart_button->is_button_disabled( 'product', $context_data );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Shop settings.
|
||||||
|
$base_location = wc_get_base_location();
|
||||||
|
$shop_country_code = $base_location['country'];
|
||||||
|
$currency_code = get_woocommerce_currency();
|
||||||
|
|
||||||
wp_send_json_success(
|
wp_send_json_success(
|
||||||
array(
|
array(
|
||||||
'total' => $total,
|
'total' => $total,
|
||||||
|
'total_str' => ( new Money( $total, $currency_code ) )->value_str(),
|
||||||
|
'currency_code' => $currency_code,
|
||||||
|
'country_code' => $shop_country_code,
|
||||||
'funding' => array(
|
'funding' => array(
|
||||||
'paylater' => array(
|
'paylater' => array(
|
||||||
'enabled' => $pay_later_enabled,
|
'enabled' => $pay_later_enabled,
|
||||||
|
|
|
@ -619,8 +619,24 @@ return array(
|
||||||
'requirements' => array(),
|
'requirements' => array(),
|
||||||
'gateway' => 'paypal',
|
'gateway' => 'paypal',
|
||||||
),
|
),
|
||||||
|
'alternative_payment_methods' => array(
|
||||||
|
'heading' => __( 'Alternative Payment Methods', 'woocommerce-paypal-payments' ),
|
||||||
|
'description' => sprintf(
|
||||||
|
// translators: %1$s, %2$s, %3$s and %4$s are a link tags.
|
||||||
|
__( '%1$sAlternative Payment Methods%2$s allow you to accept payments from customers around the globe who use their credit cards, bank accounts, wallets, and local payment methods. When a buyer pays in a currency different than yours, PayPal handles currency conversion for you and presents conversion information to the buyer during checkout.', 'woocommerce-paypal-payments' ),
|
||||||
|
'<a href="https://woocommerce.com/document/woocommerce-paypal-payments/#alternative-payment-methods" target="_blank">',
|
||||||
|
'</a>'
|
||||||
|
),
|
||||||
|
'type' => 'ppcp-heading',
|
||||||
|
'screens' => array(
|
||||||
|
State::STATE_START,
|
||||||
|
State::STATE_ONBOARDED,
|
||||||
|
),
|
||||||
|
'requirements' => array(),
|
||||||
|
'gateway' => 'paypal',
|
||||||
|
),
|
||||||
'disable_funding' => array(
|
'disable_funding' => array(
|
||||||
'title' => __( 'Hide Funding Source(s)', 'woocommerce-paypal-payments' ),
|
'title' => __( 'Disable Alternative Payment Methods', 'woocommerce-paypal-payments' ),
|
||||||
'type' => 'ppcp-multiselect',
|
'type' => 'ppcp-multiselect',
|
||||||
'class' => array(),
|
'class' => array(),
|
||||||
'input_class' => array( 'wc-enhanced-select' ),
|
'input_class' => array( 'wc-enhanced-select' ),
|
||||||
|
@ -628,7 +644,7 @@ return array(
|
||||||
'desc_tip' => false,
|
'desc_tip' => false,
|
||||||
'description' => sprintf(
|
'description' => sprintf(
|
||||||
// translators: %1$s and %2$s are the opening and closing of HTML <a> tag.
|
// translators: %1$s and %2$s are the opening and closing of HTML <a> tag.
|
||||||
__( 'By default, all possible funding sources will be shown. This setting can disable funding sources such as Credit Cards, Pay Later, Venmo, or other %1$sAlternative Payment Methods%2$s.', 'woocommerce-paypal-payments' ),
|
__( 'Choose to hide specific %1$sAlternative Payment Methods%2$s such as Credit Cards, Venmo, or others.', 'woocommerce-paypal-payments' ),
|
||||||
'<a
|
'<a
|
||||||
href="https://developer.paypal.com/docs/checkout/apm/"
|
href="https://developer.paypal.com/docs/checkout/apm/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
@ -644,7 +660,7 @@ return array(
|
||||||
'gateway' => 'paypal',
|
'gateway' => 'paypal',
|
||||||
),
|
),
|
||||||
'card_billing_data_mode' => array(
|
'card_billing_data_mode' => array(
|
||||||
'title' => __( 'Card billing data handling', 'woocommerce-paypal-payments' ),
|
'title' => __( 'Send checkout billing data to card fields', 'woocommerce-paypal-payments' ),
|
||||||
'type' => 'select',
|
'type' => 'select',
|
||||||
'class' => array(),
|
'class' => array(),
|
||||||
'input_class' => array( 'wc-enhanced-select' ),
|
'input_class' => array( 'wc-enhanced-select' ),
|
||||||
|
@ -664,10 +680,10 @@ return array(
|
||||||
'gateway' => array( 'paypal', CardButtonGateway::ID ),
|
'gateway' => array( 'paypal', CardButtonGateway::ID ),
|
||||||
),
|
),
|
||||||
'allow_card_button_gateway' => array(
|
'allow_card_button_gateway' => array(
|
||||||
'title' => __( 'Separate Card Button from PayPal gateway', 'woocommerce-paypal-payments' ),
|
'title' => __( 'Create gateway for Standard Card Button', 'woocommerce-paypal-payments' ),
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'desc_tip' => true,
|
'desc_tip' => true,
|
||||||
'label' => __( 'Enable a separate payment gateway for the branded PayPal Debit or Credit Card button.', 'woocommerce-paypal-payments' ),
|
'label' => __( 'Moves the Standard Card Button from the PayPal gateway into its own dedicated gateway.', 'woocommerce-paypal-payments' ),
|
||||||
'description' => __( 'By default, the Debit or Credit Card button is displayed in the Standard Payments payment gateway. This setting creates a second gateway for the Card button.', 'woocommerce-paypal-payments' ),
|
'description' => __( 'By default, the Debit or Credit Card button is displayed in the Standard Payments payment gateway. This setting creates a second gateway for the Card button.', 'woocommerce-paypal-payments' ),
|
||||||
'default' => $container->get( 'wcgateway.settings.allow_card_button_gateway.default' ),
|
'default' => $container->get( 'wcgateway.settings.allow_card_button_gateway.default' ),
|
||||||
'screens' => array(
|
'screens' => array(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue