/** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { DISPLAY_CART_PRICES_INCLUDING_TAX } from '@woocommerce/block-settings'; import LoadingMask from '@woocommerce/base-components/loading-mask'; import Chip from '@woocommerce/base-components/chip'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import TotalsItem from '../totals-item'; const TotalsDiscountItem = ( { cartCoupons = [], currency, isRemovingCoupon, removeCoupon, values, } ) => { const { total_discount: totalDiscount, total_discount_tax: totalDiscountTax, } = values; const discountValue = parseInt( totalDiscount, 10 ); if ( ! discountValue && cartCoupons.length === 0 ) { return null; } const discountTaxValue = parseInt( totalDiscountTax, 10 ); return ( ) } label={ __( 'Discount', 'woo-gutenberg-products-block' ) } value={ ( DISPLAY_CART_PRICES_INCLUDING_TAX ? discountValue + discountTaxValue : discountValue ) * -1 } /> ); }; TotalsDiscountItem.propTypes = { cartCoupons: PropTypes.arrayOf( PropTypes.shape( { code: PropTypes.string.isRequired, } ) ), currency: PropTypes.object.isRequired, isRemovingCoupon: PropTypes.bool.isRequired, removeCoupon: PropTypes.func.isRequired, values: PropTypes.shape( { total_discount: PropTypes.string, total_discount_tax: PropTypes.string, } ).isRequired, }; export default TotalsDiscountItem;