/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useEmitResponse, useExpressPaymentMethods, } from '@woocommerce/base-hooks'; import { StoreNoticesProvider, useEditorContext, } from '@woocommerce/base-context'; import Title from '@woocommerce/base-components/title'; /** * Internal dependencies */ import ExpressPaymentMethods from '../express-payment-methods'; import './style.scss'; import { CURRENT_USER_IS_ADMIN } from '@woocommerce/block-settings'; const CheckoutExpressPayment = () => { const { paymentMethods, isInitialized } = useExpressPaymentMethods(); const { isEditor } = useEditorContext(); const { noticeContexts } = useEmitResponse(); if ( ! isInitialized || ( isInitialized && Object.keys( paymentMethods ).length === 0 ) ) { // Make sure errors are shown in the editor and for admins. For example, // when a payment method fails to register. if ( isEditor || CURRENT_USER_IS_ADMIN ) { return ( ); } return null; } return ( <>
{ __( 'Express checkout', 'woo-gutenberg-products-block' ) }

{ __( 'In a hurry? Use one of our express checkout options below:', 'woo-gutenberg-products-block' ) }

{ __( 'Or continue below', 'woo-gutenberg-products-block' ) }
); }; export default CheckoutExpressPayment;