/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useExpressPaymentMethods } from '@woocommerce/base-context/hooks'; import { StoreNoticesContainer, noticeContexts, } from '@woocommerce/base-context'; import LoadingMask from '@woocommerce/base-components/loading-mask'; import { useSelect } from '@wordpress/data'; import { CHECKOUT_STORE_KEY, PAYMENT_METHOD_DATA_STORE_KEY, } from '@woocommerce/block-data'; /** * Internal dependencies */ import ExpressPaymentMethods from '../express-payment-methods'; import './style.scss'; const CartExpressPayment = () => { const { paymentMethods, isInitialized } = useExpressPaymentMethods(); const { isCalculating, isProcessing, isAfterProcessing, isBeforeProcessing, isComplete, hasError, } = useSelect( ( select ) => { const store = select( CHECKOUT_STORE_KEY ); return { isCalculating: store.isCalculating(), isProcessing: store.isProcessing(), isAfterProcessing: store.isAfterProcessing(), isBeforeProcessing: store.isBeforeProcessing(), isComplete: store.isComplete(), hasError: store.hasError(), }; } ); const { paymentStatus } = useSelect( ( select ) => { const store = select( PAYMENT_METHOD_DATA_STORE_KEY ); return { paymentStatus: store.getCurrentStatus(), }; } ); if ( ! isInitialized || ( isInitialized && Object.keys( paymentMethods ).length === 0 ) ) { return null; } // Set loading state for express payment methods when payment or checkout is in progress. const checkoutProcessing = isProcessing || isAfterProcessing || isBeforeProcessing || ( isComplete && ! hasError ); return ( <>
{ /* translators: Shown in the Cart block between the express payment methods and the Proceed to Checkout button */ } { __( 'Any', 'woo-gutenberg-products-block' ) }
); }; export default CartExpressPayment;