woocommerce-paypal-payments/modules/ppcp-button/resources/js/modules/Helper/CheckoutMethodState.js
2022-07-19 09:20:26 +03:00

21 lines
570 B
JavaScript

export const PaymentMethods = {
PAYPAL: 'ppcp-gateway',
CARDS: 'ppcp-credit-card-gateway',
CARD_BUTTON: 'ppcp-card-button-gateway',
};
export const ORDER_BUTTON_SELECTOR = '#place_order';
export const getCurrentPaymentMethod = () => {
const el = document.querySelector('input[name="payment_method"]:checked');
if (!el) {
return null;
}
return el.value;
};
export const isSavedCardSelected = () => {
const savedCardList = document.querySelector('#saved-credit-card');
return savedCardList && savedCardList.value !== '';
};