/** * External dependencies */ import { __ } from '@wordpress/i18n'; import classnames from 'classnames'; import { createInterpolateElement, useEffect } from '@wordpress/element'; import { useStoreCart } from '@woocommerce/base-context/hooks'; import { CheckoutProvider, SnackbarNoticesContainer, } from '@woocommerce/base-context'; import { StoreNoticesContainer } from '@woocommerce/base-context/providers'; import BlockErrorBoundary from '@woocommerce/base-components/block-error-boundary'; import { SidebarLayout } from '@woocommerce/base-components/sidebar-layout'; import { CURRENT_USER_IS_ADMIN, getSetting } from '@woocommerce/settings'; import { SlotFillProvider } from '@woocommerce/blocks-checkout'; import withScrollToTop from '@woocommerce/base-hocs/with-scroll-to-top'; import { useDispatch, useSelect } from '@wordpress/data'; import { CHECKOUT_STORE_KEY, VALIDATION_STORE_KEY, } from '@woocommerce/block-data'; /** * Internal dependencies */ import './styles/style.scss'; import EmptyCart from './empty-cart'; import CheckoutOrderError from './checkout-order-error'; import { LOGIN_TO_CHECKOUT_URL, isLoginRequired, reloadPage } from './utils'; import type { Attributes } from './types'; import { CheckoutBlockContext } from './context'; import { hasNoticesOfType } from '../../utils/notices'; const LoginPrompt = () => { return ( <> { __( 'You must be logged in to checkout. ', 'woo-gutenberg-products-block' ) } { __( 'Click here to log in.', 'woo-gutenberg-products-block' ) } ); }; const Checkout = ( { attributes, children, }: { attributes: Attributes; children: React.ReactChildren; } ): JSX.Element => { const { hasOrder, customerId } = useSelect( ( select ) => { const store = select( CHECKOUT_STORE_KEY ); return { hasOrder: store.hasOrder(), customerId: store.getCustomerId(), }; } ); const { cartItems, cartIsLoading } = useStoreCart(); const { allowCreateAccount, showCompanyField, requireCompanyField, showApartmentField, showPhoneField, requirePhoneField, } = attributes; if ( ! cartIsLoading && cartItems.length === 0 ) { return ; } if ( ! hasOrder ) { return ; } if ( isLoginRequired( customerId ) && allowCreateAccount && getSetting( 'checkoutAllowsSignup', false ) ) { ; } return ( { children } ); }; const ScrollOnError = ( { scrollToTop, }: { scrollToTop: ( props: Record< string, unknown > ) => void; } ): null => { const { hasError: checkoutHasError, isIdle: checkoutIsIdle } = useSelect( ( select ) => { const store = select( CHECKOUT_STORE_KEY ); return { isIdle: store.isIdle(), hasError: store.hasError(), }; } ); const { hasValidationErrors } = useSelect( ( select ) => { const store = select( VALIDATION_STORE_KEY ); return { hasValidationErrors: store.hasValidationErrors(), }; } ); const { showAllValidationErrors } = useDispatch( VALIDATION_STORE_KEY ); const hasErrorsToDisplay = checkoutIsIdle && checkoutHasError && ( hasValidationErrors || hasNoticesOfType( 'wc/checkout', 'default' ) ); useEffect( () => { let scrollToTopTimeout: number; if ( hasErrorsToDisplay ) { showAllValidationErrors(); // Scroll after a short timeout to allow a re-render. This will allow focusableSelector to match updated components. scrollToTopTimeout = window.setTimeout( () => { scrollToTop( { focusableSelector: 'input:invalid, .has-error input', } ); }, 50 ); } return () => { clearTimeout( scrollToTopTimeout ); }; }, [ hasErrorsToDisplay, scrollToTop, showAllValidationErrors ] ); return null; }; const Block = ( { attributes, children, scrollToTop, }: { attributes: Attributes; children: React.ReactChildren; scrollToTop: ( props: Record< string, unknown > ) => void; } ): JSX.Element => { return ( Try reloading the page. If the error persists, please get in touch with us so we can assist.', 'woo-gutenberg-products-block' ), { button: (