/** * External dependencies */ import classNames from 'classnames'; import { _n, sprintf } from '@wordpress/i18n'; import { decodeEntities } from '@wordpress/html-entities'; import Label from '@woocommerce/base-components/label'; import Title from '@woocommerce/base-components/title'; import type { ReactElement } from 'react'; import type { PackageRateOption } from '@woocommerce/type-defs/shipping'; import { Panel } from '@woocommerce/blocks-checkout'; import { useSelectShippingRate } from '@woocommerce/base-context/hooks'; import type { CartShippingPackageShippingRate } from '@woocommerce/type-defs/cart'; /** * Internal dependencies */ import PackageRates from './package-rates'; import './style.scss'; interface PackageItem { name: string; key: string; quantity: number; } interface Destination { // eslint-disable-next-line camelcase address_1: string; // eslint-disable-next-line camelcase address_2: string; city: string; state: string; postcode: string; country: string; } export interface PackageData { destination: Destination; name: string; // eslint-disable-next-line camelcase shipping_rates: CartShippingPackageShippingRate[]; items: PackageItem[]; } export type PackageRateRenderOption = ( option: CartShippingPackageShippingRate ) => PackageRateOption; interface PackageProps { /* PackageId can be a string, WooCommerce Subscriptions uses strings for example, but WooCommerce core uses numbers */ packageId: string | number; renderOption: PackageRateRenderOption; collapse?: boolean; packageData: PackageData; className?: string; collapsible?: boolean; noResultsMessage: ReactElement; showItems?: boolean; } export const ShippingRatesControlPackage = ( { packageId, className, noResultsMessage, renderOption, packageData, collapsible = false, collapse = false, showItems = false, }: PackageProps ): ReactElement => { const { selectShippingRate, selectedShippingRate } = useSelectShippingRate( packageId, packageData.shipping_rates ); const header = ( <> { ( showItems || collapsible ) && ( { packageData.name } ) } { showItems && ( ) } ); const body = ( ); if ( collapsible ) { return ( { body } ); } return (
{ header } { body }
); }; export default ShippingRatesControlPackage;