/** * External dependencies */ import classnames from 'classnames'; import { __ } from '@wordpress/i18n'; import { InspectorControls, useBlockProps } from '@wordpress/block-editor'; import { PanelBody, ExternalLink } from '@wordpress/components'; import { ADMIN_URL, getSetting } from '@woocommerce/settings'; import ExternalLinkCard from '@woocommerce/editor-components/external-link-card'; import { innerBlockAreas } from '@woocommerce/blocks-checkout'; import Noninteractive from '@woocommerce/base-components/noninteractive'; /** * Internal dependencies */ import { FormStepBlock, AdditionalFields, AdditionalFieldsContent, } from '../../form-step'; import Block from './block'; type shippingAdminLink = { id: number; title: string; description: string; }; export const Edit = ( { attributes, setAttributes, }: { attributes: { title: string; description: string; showStepNumber: boolean; allowCreateAccount: boolean; className: string; }; setAttributes: ( attributes: Record< string, unknown > ) => void; } ): JSX.Element => { const globalShippingMethods = getSetting( 'globalShippingMethods' ) as shippingAdminLink[]; const activeShippingZones = getSetting( 'activeShippingZones' ) as shippingAdminLink[]; return ( { globalShippingMethods.length > 0 && (

{ __( 'The following shipping integrations are active on your store.', 'woo-gutenberg-products-block' ) }

{ globalShippingMethods.map( ( method ) => { return ( ); } ) } { __( 'Manage shipping methods', 'woo-gutenberg-products-block' ) }
) } { activeShippingZones.length && (

{ __( 'You currently have the following shipping zones active.', 'woo-gutenberg-products-block' ) }

{ activeShippingZones.map( ( zone ) => { return ( ); } ) } { __( 'Manage shipping zones', 'woo-gutenberg-products-block' ) }
) }
); }; export const Save = (): JSX.Element => { return (
); };