woocommerce/plugins/woocommerce-blocks/packages/checkout/totals/taxes/index.tsx

70 lines
1.5 KiB
TypeScript

/**
* External dependencies
*/
import classnames from 'classnames';
import { __ } from '@wordpress/i18n';
import { getSetting } from '@woocommerce/settings';
import type { Currency } from '@woocommerce/price-format';
import type { CartTotalsTaxLineItem } from '@woocommerce/type-defs/cart';
import { ReactElement } from 'react';
/**
* Internal dependencies
*/
import TotalsItem from '../item';
interface Values {
// eslint-disable-next-line camelcase
tax_lines: CartTotalsTaxLineItem[];
// eslint-disable-next-line camelcase
total_tax: string;
}
interface TotalsTaxesProps {
className?: string;
currency: Currency;
values: Values | Record< string, never >;
}
const TotalsTaxes = ( {
currency,
values,
className,
}: TotalsTaxesProps ): ReactElement | null => {
const { total_tax: totalTax, tax_lines: taxLines } = values;
if ( ! getSetting( 'taxesEnabled', true ) ) {
return null;
}
if ( ! getSetting( 'displayItemizedTaxes', false ) ) {
return (
<TotalsItem
className={ classnames(
'wc-block-components-totals-taxes',
className
) }
currency={ currency }
label={ __( 'Taxes', 'woo-gutenberg-products-block' ) }
value={ parseInt( totalTax, 10 ) }
/>
);
}
return (
<>
{ taxLines.map( ( { name, price }, i ) => (
<TotalsItem
key={ `tax-line-${ i }` }
className="wc-block-components-totals-taxes"
currency={ currency }
label={ name }
value={ parseInt( price, 10 ) }
/>
) ) }{ ' ' }
</>
);
};
export default TotalsTaxes;