mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
21 lines
618 B
JavaScript
21 lines
618 B
JavaScript
import {useEffect} from '@wordpress/element';
|
|
import {usePayPalCardFields} from "@paypal/react-paypal-js";
|
|
|
|
export const CheckoutHandler = ({getCardFieldsForm, getSavePayment, saveCardText, is_vaulting_enabled}) => {
|
|
const {cardFieldsForm} = usePayPalCardFields();
|
|
|
|
useEffect(() => {
|
|
getCardFieldsForm(cardFieldsForm)
|
|
}, []);
|
|
|
|
if (!is_vaulting_enabled) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<input type="checkbox" id="save" name="save" onChange={(e) => getSavePayment(e.target.checked)}/>
|
|
<label htmlFor="save">{saveCardText}</label>
|
|
</>
|
|
)
|
|
}
|