Oops, This Page Could Not Be Found!
Here are some useful links:
Search Our Website
Can't find what you need? Take a moment and do a search below!
/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useCheckoutContext, usePaymentMethodDataContext, } from '@woocommerce/base-context'; import { usePaymentMethods } from '@woocommerce/base-hooks'; /** * Returns the submitButtonText, onSubmit interface from the checkout context, * and an indication of submission status. */ export const useCheckoutSubmit = () => { const { onSubmit, isCalculating, isBeforeProcessing, isProcessing, isAfterProcessing, isComplete, hasError, } = useCheckoutContext(); const { paymentMethods } = usePaymentMethods(); const { activePaymentMethod } = usePaymentMethodDataContext(); const paymentMethod = paymentMethods[ activePaymentMethod ] || {}; return { submitButtonText: paymentMethod?.placeOrderButtonLabel || __( 'Place Order', 'woocommerce' ), onSubmit, isCalculating, waitingForProcessing: isProcessing || isAfterProcessing || isBeforeProcessing, waitingForRedirect: isComplete && ! hasError, }; };
Can't find what you need? Take a moment and do a search below!