/** * External dependencies */ import classnames from 'classnames'; import { useBlockProps } from '@wordpress/block-editor'; import { useCheckoutAddress } from '@woocommerce/base-context/hooks'; import { innerBlockAreas } from '@woocommerce/blocks-checkout'; import type { BlockAttributes } from '@wordpress/blocks'; /** * Internal dependencies */ import { FormStepBlock, AdditionalFields, AdditionalFieldsContent, } from '../../form-step'; import { useCheckoutBlockContext, useCheckoutBlockControlsContext, } from '../../context'; import Block from './block'; import { getBillingAddresssBlockTitle, getBillingAddresssBlockDescription, } from './utils'; export const Edit = ( { attributes, setAttributes, }: { attributes: { title: string; description: string; showStepNumber: boolean; className: string; }; setAttributes: ( attributes: BlockAttributes ) => void; } ): JSX.Element | null => { const { showCompanyField, showApartmentField, requireCompanyField, showPhoneField, requirePhoneField, } = useCheckoutBlockContext(); const { addressFieldControls: Controls } = useCheckoutBlockControlsContext(); const { showBillingFields, forcedBillingAddress, useBillingAsShipping } = useCheckoutAddress(); if ( ! showBillingFields && ! useBillingAsShipping ) { return null; } attributes.title = getBillingAddresssBlockTitle( attributes.title, forcedBillingAddress ); attributes.description = getBillingAddresssBlockDescription( attributes.description, forcedBillingAddress ); return ( ); }; export const Save = (): JSX.Element => { return (
); };