Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2020-02-18 23:06:37 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2020-02-14 03:43:13 +00:00
|
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
import { useState, Fragment } from '@wordpress/element';
|
2020-01-10 14:37:27 +00:00
|
|
|
import {
|
|
|
|
TotalsCouponCodeInput,
|
|
|
|
TotalsItem,
|
|
|
|
} from '@woocommerce/base-components/totals';
|
2020-02-14 03:43:13 +00:00
|
|
|
import ShippingRatesControl from '@woocommerce/base-components/shipping-rates-control';
|
2020-02-17 11:12:15 +00:00
|
|
|
import ShippingCalculator from '@woocommerce/base-components/shipping-calculator';
|
2020-01-10 14:37:27 +00:00
|
|
|
import {
|
|
|
|
COUPONS_ENABLED,
|
|
|
|
DISPLAY_PRICES_INCLUDING_TAXES,
|
|
|
|
} from '@woocommerce/block-settings';
|
|
|
|
import { getCurrencyFromPriceResponse } from '@woocommerce/base-utils';
|
|
|
|
import { Card, CardBody } from 'wordpress-components';
|
2020-02-14 03:43:13 +00:00
|
|
|
import FormattedMonetaryAmount from '@woocommerce/base-components/formatted-monetary-amount';
|
2020-02-18 10:50:08 +00:00
|
|
|
import { decodeEntities } from '@wordpress/html-entities';
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
|
2019-12-05 21:08:48 +00:00
|
|
|
/**
|
2019-12-12 19:46:56 +00:00
|
|
|
* Internal dependencies
|
2019-12-05 21:08:48 +00:00
|
|
|
*/
|
2019-12-12 19:46:56 +00:00
|
|
|
import CheckoutButton from './checkout-button';
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
import CartLineItemsTitle from './cart-line-items-title';
|
|
|
|
import CartLineItemsTable from './cart-line-items-table';
|
|
|
|
|
2019-12-12 19:46:56 +00:00
|
|
|
import './style.scss';
|
Cart block: line-items front end initial work (https://github.com/woocommerce/woocommerce-blocks/pull/1333)
* render block on front end, add `Shopping cart` heading (baby steps)
* fake data for editing full cart + show line count in header
* add note about core/html using `is-active` class for toggle state
* reinstate work-in-progress full cart component (lost in rebase)
* reinstate full cart from master
* component for full cart title & item count + margin tweaks:
- add margin between main cart & sidebar
- add margin after cart block
* add cart items sample data + factor sample product image to module
* use sample cart data for item count
* basic table of cart line items (no styling)
* prettification
* show images for cart line items + initial table styling
* cart quantity selector component (work in progress)
* use state for cart product quantity, allow incr/decr from UI (WIP)
* replace WIP custom quantity control with number edit (temporary)
* correctly format cart line item total price
* align cart item columns with headings + indent image on desktop
* tweak css for cart line item padding on mobile so it's more explicit
* show cart line item full price if discounted
* add placeholder for cart remove item link
* switch cart table to flex layout (was table)…
This will allow us to move things around for mobile/responsive layout.
* only show cart items table header on desktop
* more cart items styling - row borders, appropriate padding +
+ move image width to variable
+ fix class name plurality for row (item not items)
* use standard $gap instead of 1em for padding/margins
* responsive (mobile) layout for cart line items:
- shift line $ total to bottom right
- stack quantity selector in product info column
* remove extraneous cart table padding on mobile
* comment about unused styles for quantity selector component
* add follow up issue for todo
* remove inappropriate href
* render srcset & sizes for cart line item product image
* remove todo comment
* switch back to table markup for cart items (in progress):
- table is more semantic, associates headers with columns
* cart line items column widths - product column is larger (60%)
* reinstate table row borders
* bottom-align line item price on mobile
* cart contents heading should be H2 + prettify
* remove unused QuantitySelector code/styles, rename main class in line with BEM
* defaults for QuantitySelector props
* variable/property name tidies - match conventions/API
* fix bug: line total price is only bottom-align on small screen
* move QuantitySelector to root of components, intended to be generally useful
* use lineItem directly for cart, specify shape in PropTypes
* rename cart components to align with "line item" rather than "product"
* rejig class names to better align with new component names & BEM style
* show cart item image correct size:
- use single column for product image and info, with flex container
- specify image width (rem instead of px)
* fix safari issue - cart product images displaying vertically stretched
* shift product name left margin from image, to account for no-image case
* experiment: bump bundlewatch size limit for cart temporarily:
- our fake data inline image is heavy
- when we switch to real API we will no longer need it
* fix issue introduced when moving margin from image to details div:
- product details needs margin on left (not right)
* fix react props issues:
- explicitly destructure image props for srcSet (vs srcset)
- use API key field for line item key instead of id, fix duplicate test id
- CartLineItemsTable takes an array of lineItems (incorrect PropTypes)
* remove redundant divs + use conventional `null` (when no full price)
* override editor styles to ensure cart product image is correct size
* move cart items editor style override to editor.css
* add an explicit readable heading for cart heading to match visual layout
2020-01-09 22:50:14 +00:00
|
|
|
import './editor.scss';
|
2019-12-05 21:08:48 +00:00
|
|
|
|
2020-01-10 14:37:27 +00:00
|
|
|
// @todo this are placeholders
|
|
|
|
const onActivateCoupon = ( couponCode ) => {
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log( 'coupon activated: ' + couponCode );
|
|
|
|
};
|
|
|
|
|
2019-12-05 21:08:48 +00:00
|
|
|
/**
|
2019-12-12 19:46:56 +00:00
|
|
|
* Component that renders the Cart block when user has something in cart aka "full".
|
2019-12-05 21:08:48 +00:00
|
|
|
*/
|
2020-02-18 23:06:37 +00:00
|
|
|
const Cart = ( { cartItems = [], cartTotals = {} } ) => {
|
2020-02-17 11:12:15 +00:00
|
|
|
const [ selectedShippingRate, setSelectedShippingRate ] = useState();
|
|
|
|
const [
|
|
|
|
shippingCalculatorAddress,
|
|
|
|
setShippingCalculatorAddress,
|
|
|
|
] = useState( {
|
|
|
|
city: '',
|
|
|
|
state: '',
|
|
|
|
postcode: '',
|
|
|
|
country: '',
|
|
|
|
} );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given an API response with cart totals, generates an array of rows to display in the Cart block.
|
|
|
|
*
|
|
|
|
* @return {Object[]} Values to display in the cart block.
|
|
|
|
*/
|
|
|
|
const getTotalRowsConfig = () => {
|
|
|
|
const totalItems = parseInt( cartTotals.total_items, 10 );
|
|
|
|
const totalItemsTax = parseInt( cartTotals.total_items_tax, 10 );
|
|
|
|
const totalRowsConfig = [
|
|
|
|
{
|
|
|
|
label: __( 'List items:', 'woo-gutenberg-products-block' ),
|
|
|
|
value: DISPLAY_PRICES_INCLUDING_TAXES
|
|
|
|
? totalItems + totalItemsTax
|
|
|
|
: totalItems,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
const totalFees = parseInt( cartTotals.total_fees, 10 );
|
|
|
|
if ( totalFees > 0 ) {
|
|
|
|
const totalFeesTax = parseInt( cartTotals.total_fees_tax, 10 );
|
|
|
|
totalRowsConfig.push( {
|
|
|
|
label: __( 'Fees:', 'woo-gutenberg-products-block' ),
|
|
|
|
value: DISPLAY_PRICES_INCLUDING_TAXES
|
|
|
|
? totalFees + totalFeesTax
|
|
|
|
: totalFees,
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
const totalDiscount = parseInt( cartTotals.total_discount, 10 );
|
|
|
|
if ( totalDiscount > 0 ) {
|
|
|
|
const totalDiscountTax = parseInt(
|
|
|
|
cartTotals.total_discount_tax,
|
|
|
|
10
|
|
|
|
);
|
|
|
|
totalRowsConfig.push( {
|
|
|
|
label: __( 'Discount:', 'woo-gutenberg-products-block' ),
|
|
|
|
value: DISPLAY_PRICES_INCLUDING_TAXES
|
|
|
|
? totalDiscount + totalDiscountTax
|
|
|
|
: totalDiscount,
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
if ( ! DISPLAY_PRICES_INCLUDING_TAXES ) {
|
|
|
|
const totalTax = parseInt( cartTotals.total_tax, 10 );
|
|
|
|
totalRowsConfig.push( {
|
|
|
|
label: __( 'Taxes:', 'woo-gutenberg-products-block' ),
|
|
|
|
value: totalTax,
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
const totalShipping = parseInt( cartTotals.total_shipping, 10 );
|
|
|
|
const totalShippingTax = parseInt( cartTotals.total_shipping_tax, 10 );
|
|
|
|
totalRowsConfig.push( {
|
|
|
|
label: __( 'Shipping:', 'woo-gutenberg-products-block' ),
|
|
|
|
value: DISPLAY_PRICES_INCLUDING_TAXES
|
|
|
|
? totalShipping + totalShippingTax
|
|
|
|
: totalShipping,
|
|
|
|
description: (
|
|
|
|
<Fragment>
|
|
|
|
{ __(
|
|
|
|
'Shipping to location',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) + ' ' }
|
|
|
|
<ShippingCalculator
|
|
|
|
address={ shippingCalculatorAddress }
|
|
|
|
setAddress={ setShippingCalculatorAddress }
|
|
|
|
/>
|
|
|
|
</Fragment>
|
|
|
|
),
|
|
|
|
} );
|
|
|
|
|
|
|
|
return totalRowsConfig;
|
|
|
|
};
|
|
|
|
|
2020-02-14 03:43:13 +00:00
|
|
|
const totalsCurrency = getCurrencyFromPriceResponse( cartTotals );
|
2020-01-10 14:37:27 +00:00
|
|
|
const totalRowsConfig = getTotalRowsConfig( cartTotals );
|
|
|
|
|
2019-12-05 21:08:48 +00:00
|
|
|
return (
|
2019-12-12 19:46:56 +00:00
|
|
|
<div className="wc-block-cart">
|
|
|
|
<div className="wc-block-cart__main">
|
2020-02-18 23:06:37 +00:00
|
|
|
<CartLineItemsTitle itemCount={ cartItems.length } />
|
|
|
|
<CartLineItemsTable lineItems={ cartItems } />
|
2019-12-12 19:46:56 +00:00
|
|
|
</div>
|
2020-01-20 16:43:22 +00:00
|
|
|
<div className="wc-block-cart__sidebar">
|
|
|
|
<Card isElevated={ true }>
|
|
|
|
<CardBody>
|
|
|
|
<h2 className="wc-block-cart__totals-title">
|
2020-01-10 14:37:27 +00:00
|
|
|
{ __(
|
2020-01-20 16:43:22 +00:00
|
|
|
'Cart totals',
|
2020-01-10 14:37:27 +00:00
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
2020-01-20 16:43:22 +00:00
|
|
|
</h2>
|
|
|
|
{ totalRowsConfig.map(
|
|
|
|
( { label, value, description } ) => (
|
|
|
|
<TotalsItem
|
|
|
|
key={ label }
|
2020-02-14 03:43:13 +00:00
|
|
|
currency={ totalsCurrency }
|
2020-01-20 16:43:22 +00:00
|
|
|
label={ label }
|
|
|
|
value={ value }
|
|
|
|
description={ description }
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
) }
|
|
|
|
<fieldset className="wc-block-cart__shipping-options-fieldset">
|
|
|
|
<legend className="screen-reader-text">
|
|
|
|
{ __(
|
|
|
|
'Choose the shipping method.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</legend>
|
2020-02-14 03:43:13 +00:00
|
|
|
<ShippingRatesControl
|
2020-01-20 16:43:22 +00:00
|
|
|
className="wc-block-cart__shipping-options"
|
2020-02-17 11:12:15 +00:00
|
|
|
address={
|
|
|
|
shippingCalculatorAddress.country
|
|
|
|
? {
|
|
|
|
city:
|
|
|
|
shippingCalculatorAddress.city,
|
|
|
|
state:
|
|
|
|
shippingCalculatorAddress.state,
|
|
|
|
postcode:
|
|
|
|
shippingCalculatorAddress.postcode,
|
|
|
|
country:
|
|
|
|
shippingCalculatorAddress.country,
|
|
|
|
}
|
|
|
|
: null
|
|
|
|
}
|
2020-02-14 03:43:13 +00:00
|
|
|
noResultsMessage={ sprintf(
|
|
|
|
// translators: %s shipping destination.
|
|
|
|
__(
|
|
|
|
'No shipping options were found for %s.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
),
|
|
|
|
// @todo Should display destination name,
|
|
|
|
// see: https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues/1606
|
|
|
|
'location'
|
2020-01-20 16:43:22 +00:00
|
|
|
) }
|
2020-02-14 03:43:13 +00:00
|
|
|
selected={ selectedShippingRate }
|
|
|
|
renderOption={ ( option ) => ( {
|
2020-02-18 10:50:08 +00:00
|
|
|
label: decodeEntities( option.name ),
|
2020-02-14 03:43:13 +00:00
|
|
|
value: option.rate_id,
|
|
|
|
description: (
|
|
|
|
<Fragment>
|
|
|
|
{ option.price && (
|
|
|
|
<FormattedMonetaryAmount
|
|
|
|
currency={ getCurrencyFromPriceResponse(
|
|
|
|
option
|
|
|
|
) }
|
|
|
|
value={ option.price }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
{ option.price &&
|
|
|
|
option.delivery_time
|
|
|
|
? ' — '
|
|
|
|
: null }
|
2020-02-18 10:50:08 +00:00
|
|
|
{ decodeEntities(
|
|
|
|
option.delivery_time
|
|
|
|
) }
|
2020-02-14 03:43:13 +00:00
|
|
|
</Fragment>
|
|
|
|
),
|
|
|
|
} ) }
|
2020-01-20 16:43:22 +00:00
|
|
|
onChange={ ( newSelectedShippingOption ) =>
|
2020-02-14 03:43:13 +00:00
|
|
|
setSelectedShippingRate(
|
2020-01-20 16:43:22 +00:00
|
|
|
newSelectedShippingOption
|
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</fieldset>
|
|
|
|
{ COUPONS_ENABLED && (
|
|
|
|
<TotalsCouponCodeInput
|
|
|
|
onSubmit={ onActivateCoupon }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
<TotalsItem
|
|
|
|
className="wc-block-cart__totals-footer"
|
2020-02-14 03:43:13 +00:00
|
|
|
currency={ totalsCurrency }
|
2020-01-20 16:43:22 +00:00
|
|
|
label={ __(
|
|
|
|
'Total',
|
|
|
|
'woo-gutenberg-products-block'
|
2020-01-10 14:37:27 +00:00
|
|
|
) }
|
2020-01-20 16:43:22 +00:00
|
|
|
value={ parseInt( cartTotals.total_price, 10 ) }
|
2020-01-10 14:37:27 +00:00
|
|
|
/>
|
2020-01-20 16:43:22 +00:00
|
|
|
<CheckoutButton />
|
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
</div>
|
2019-12-12 19:46:56 +00:00
|
|
|
</div>
|
2019-12-05 21:08:48 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-02-18 23:06:37 +00:00
|
|
|
Cart.propTypes = {
|
|
|
|
cartItems: PropTypes.array,
|
|
|
|
cartTotals: PropTypes.shape( {
|
|
|
|
total_items: PropTypes.string,
|
|
|
|
total_items_tax: PropTypes.string,
|
|
|
|
total_fees: PropTypes.string,
|
|
|
|
total_fees_tax: PropTypes.string,
|
|
|
|
total_discount: PropTypes.string,
|
|
|
|
total_discount_tax: PropTypes.string,
|
|
|
|
total_shipping: PropTypes.string,
|
|
|
|
total_shipping_tax: PropTypes.string,
|
|
|
|
total_tax: PropTypes.string,
|
|
|
|
total_price: PropTypes.string,
|
|
|
|
} ),
|
|
|
|
};
|
2019-12-05 21:08:48 +00:00
|
|
|
|
|
|
|
export default Cart;
|