62 lines
1.3 KiB
TypeScript
62 lines
1.3 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 { CartFeeItem } from '@woocommerce/type-defs/cart';
|
|
import type { ReactElement } from 'react';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import TotalsItem from '../item';
|
|
|
|
interface TotalsFeesProps {
|
|
currency: Currency;
|
|
cartFees: CartFeeItem[];
|
|
className?: string;
|
|
}
|
|
|
|
const TotalsFees = ( {
|
|
currency,
|
|
cartFees,
|
|
className,
|
|
}: TotalsFeesProps ): ReactElement | null => {
|
|
return (
|
|
<>
|
|
{ cartFees.map( ( { id, name, totals } ) => {
|
|
const feesValue = parseInt( totals.total, 10 );
|
|
|
|
if ( ! feesValue ) {
|
|
return null;
|
|
}
|
|
|
|
const feesTaxValue = parseInt( totals.total_tax, 10 );
|
|
|
|
return (
|
|
<TotalsItem
|
|
key={ id }
|
|
className={ classnames(
|
|
'wc-block-components-totals-fees',
|
|
className
|
|
) }
|
|
currency={ currency }
|
|
label={
|
|
name || __( 'Fee', 'woo-gutenberg-products-block' )
|
|
}
|
|
value={
|
|
getSetting( 'displayCartPricesIncludingTax', false )
|
|
? feesValue + feesTaxValue
|
|
: feesValue
|
|
}
|
|
/>
|
|
);
|
|
} ) }
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TotalsFees;
|