2020-03-05 19:54:05 +00:00
|
|
|
// @ts-nocheck
|
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-03-06 12:27:54 +00:00
|
|
|
import { __ } from '@wordpress/i18n';
|
2020-01-10 14:37:27 +00:00
|
|
|
import {
|
2020-03-06 12:27:54 +00:00
|
|
|
SubtotalsItem,
|
|
|
|
TotalsFeesItem,
|
2020-01-10 14:37:27 +00:00
|
|
|
TotalsCouponCodeInput,
|
2020-03-06 12:27:54 +00:00
|
|
|
TotalsDiscountItem,
|
|
|
|
TotalsFooterItem,
|
|
|
|
TotalsShippingItem,
|
|
|
|
TotalsTaxesItem,
|
2020-01-10 14:37:27 +00:00
|
|
|
} from '@woocommerce/base-components/totals';
|
2020-03-05 19:54:05 +00:00
|
|
|
import ShippingRatesControl from '@woocommerce/base-components/shipping-rates-control';
|
2020-01-10 14:37:27 +00:00
|
|
|
import {
|
|
|
|
COUPONS_ENABLED,
|
2020-02-19 16:33:10 +00:00
|
|
|
SHIPPING_ENABLED,
|
2020-03-03 10:12:18 +00:00
|
|
|
DISPLAY_CART_PRICES_INCLUDING_TAX,
|
2020-01-10 14:37:27 +00:00
|
|
|
} 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';
|
2020-03-05 19:54:05 +00:00
|
|
|
import { useStoreCartCoupons, useShippingRates } from '@woocommerce/base-hooks';
|
2020-02-26 15:49:07 +00:00
|
|
|
import classnames from 'classnames';
|
2020-03-12 09:41:35 +00:00
|
|
|
import {
|
|
|
|
Sidebar,
|
|
|
|
SidebarLayout,
|
|
|
|
Main,
|
|
|
|
} from '@woocommerce/base-components/sidebar-layout';
|
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-02-25 09:32:59 +00:00
|
|
|
const renderShippingRatesControlOption = ( option ) => ( {
|
|
|
|
label: decodeEntities( option.name ),
|
|
|
|
value: option.rate_id,
|
|
|
|
description: (
|
|
|
|
<>
|
|
|
|
{ option.price && (
|
|
|
|
<FormattedMonetaryAmount
|
|
|
|
currency={ getCurrencyFromPriceResponse( option ) }
|
|
|
|
value={ option.price }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
{ option.price && option.delivery_time ? ' — ' : null }
|
|
|
|
{ decodeEntities( option.delivery_time ) }
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
} );
|
|
|
|
|
2020-03-05 19:54:05 +00:00
|
|
|
const ShippingCalculatorOptions = ( {
|
|
|
|
shippingRates,
|
|
|
|
shippingRatesLoading,
|
|
|
|
} ) => {
|
|
|
|
return (
|
|
|
|
<fieldset className="wc-block-cart__shipping-options-fieldset">
|
|
|
|
<legend className="screen-reader-text">
|
|
|
|
{ __(
|
|
|
|
'Choose the shipping method.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</legend>
|
|
|
|
<ShippingRatesControl
|
|
|
|
className="wc-block-cart__shipping-options"
|
2020-03-09 11:28:26 +00:00
|
|
|
collapsibleWhenMultiple={ true }
|
2020-03-05 19:54:05 +00:00
|
|
|
noResultsMessage={ __(
|
|
|
|
'No shipping options were found.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
renderOption={ renderShippingRatesControlOption }
|
|
|
|
shippingRates={ shippingRates }
|
|
|
|
shippingRatesLoading={ shippingRatesLoading }
|
|
|
|
/>
|
|
|
|
</fieldset>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
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-19 16:33:10 +00:00
|
|
|
const Cart = ( {
|
|
|
|
cartItems = [],
|
|
|
|
cartTotals = {},
|
2020-02-25 11:36:53 +00:00
|
|
|
cartCoupons = [],
|
2020-02-19 16:33:10 +00:00
|
|
|
isShippingCalculatorEnabled,
|
|
|
|
isShippingCostHidden,
|
2020-02-25 09:32:59 +00:00
|
|
|
shippingRates,
|
2020-02-26 15:49:07 +00:00
|
|
|
isLoading = false,
|
2020-02-19 16:33:10 +00:00
|
|
|
} ) => {
|
2020-03-10 10:55:19 +00:00
|
|
|
const defaultAddressFields = [ 'country', 'state', 'city', 'postcode' ];
|
|
|
|
const {
|
|
|
|
shippingAddress,
|
|
|
|
setShippingAddress,
|
|
|
|
shippingRatesLoading,
|
|
|
|
} = useShippingRates( defaultAddressFields );
|
2020-02-25 11:36:53 +00:00
|
|
|
const {
|
|
|
|
applyCoupon,
|
|
|
|
removeCoupon,
|
|
|
|
isApplyingCoupon,
|
|
|
|
isRemovingCoupon,
|
|
|
|
} = useStoreCartCoupons();
|
|
|
|
|
2020-03-10 09:09:34 +00:00
|
|
|
const showShippingCosts = Boolean(
|
|
|
|
SHIPPING_ENABLED &&
|
|
|
|
isShippingCalculatorEnabled &&
|
|
|
|
( ! isShippingCostHidden || shippingAddress?.country )
|
|
|
|
);
|
2020-02-25 11:36:53 +00:00
|
|
|
|
2020-02-14 03:43:13 +00:00
|
|
|
const totalsCurrency = getCurrencyFromPriceResponse( cartTotals );
|
2020-01-10 14:37:27 +00:00
|
|
|
|
2020-02-26 15:49:07 +00:00
|
|
|
const cartClassName = classnames( 'wc-block-cart', {
|
|
|
|
'wc-block-cart--is-loading': isLoading,
|
|
|
|
} );
|
|
|
|
|
2019-12-05 21:08:48 +00:00
|
|
|
return (
|
2020-03-12 09:41:35 +00:00
|
|
|
<SidebarLayout className={ cartClassName }>
|
|
|
|
<Main className="wc-block-cart__main">
|
2020-02-18 23:06:37 +00:00
|
|
|
<CartLineItemsTitle itemCount={ cartItems.length } />
|
2020-02-26 15:49:07 +00:00
|
|
|
<CartLineItemsTable
|
|
|
|
lineItems={ cartItems }
|
|
|
|
isLoading={ isLoading }
|
|
|
|
/>
|
2020-03-12 09:41:35 +00:00
|
|
|
</Main>
|
|
|
|
<Sidebar className="wc-block-cart__sidebar">
|
2020-01-20 16:43:22 +00:00
|
|
|
<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>
|
2020-03-06 12:27:54 +00:00
|
|
|
<SubtotalsItem
|
|
|
|
currency={ totalsCurrency }
|
|
|
|
values={ cartTotals }
|
|
|
|
/>
|
|
|
|
<TotalsFeesItem
|
|
|
|
currency={ totalsCurrency }
|
|
|
|
values={ cartTotals }
|
|
|
|
/>
|
|
|
|
<TotalsDiscountItem
|
|
|
|
cartCoupons={ cartCoupons }
|
|
|
|
currency={ totalsCurrency }
|
|
|
|
isRemovingCoupon={ isRemovingCoupon }
|
|
|
|
removeCoupon={ removeCoupon }
|
|
|
|
values={ cartTotals }
|
|
|
|
/>
|
|
|
|
{ isShippingCalculatorEnabled && (
|
|
|
|
<TotalsShippingItem
|
|
|
|
currency={ totalsCurrency }
|
|
|
|
shippingAddress={ shippingAddress }
|
2020-03-10 10:55:19 +00:00
|
|
|
updateShippingAddress={ setShippingAddress }
|
2020-03-06 12:27:54 +00:00
|
|
|
values={ cartTotals }
|
|
|
|
/>
|
2020-01-20 16:43:22 +00:00
|
|
|
) }
|
2020-02-27 18:28:36 +00:00
|
|
|
{ showShippingCosts && (
|
|
|
|
<fieldset className="wc-block-cart__shipping-options-fieldset">
|
|
|
|
<legend className="screen-reader-text">
|
|
|
|
{ __(
|
|
|
|
'Choose the shipping method.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</legend>
|
2020-03-05 19:54:05 +00:00
|
|
|
<ShippingCalculatorOptions
|
|
|
|
shippingRates={ shippingRates }
|
|
|
|
shippingRatesLoading={
|
|
|
|
shippingRatesLoading
|
|
|
|
}
|
|
|
|
/>
|
2020-02-27 18:28:36 +00:00
|
|
|
</fieldset>
|
|
|
|
) }
|
2020-03-03 10:12:18 +00:00
|
|
|
{ ! DISPLAY_CART_PRICES_INCLUDING_TAX && (
|
2020-03-06 12:27:54 +00:00
|
|
|
<TotalsTaxesItem
|
2020-03-03 10:12:18 +00:00
|
|
|
currency={ totalsCurrency }
|
2020-03-06 12:27:54 +00:00
|
|
|
values={ cartTotals }
|
2020-03-03 10:12:18 +00:00
|
|
|
/>
|
|
|
|
) }
|
2020-01-20 16:43:22 +00:00
|
|
|
{ COUPONS_ENABLED && (
|
|
|
|
<TotalsCouponCodeInput
|
2020-02-25 11:36:53 +00:00
|
|
|
onSubmit={ applyCoupon }
|
2020-03-12 09:41:35 +00:00
|
|
|
initialOpen={ true }
|
2020-02-25 11:36:53 +00:00
|
|
|
isLoading={ isApplyingCoupon }
|
2020-01-20 16:43:22 +00:00
|
|
|
/>
|
|
|
|
) }
|
2020-03-06 12:27:54 +00:00
|
|
|
<TotalsFooterItem
|
2020-02-14 03:43:13 +00:00
|
|
|
currency={ totalsCurrency }
|
2020-03-06 12:27:54 +00:00
|
|
|
values={ cartTotals }
|
2020-01-10 14:37:27 +00:00
|
|
|
/>
|
2020-01-20 16:43:22 +00:00
|
|
|
<CheckoutButton />
|
|
|
|
</CardBody>
|
|
|
|
</Card>
|
2020-03-12 09:41:35 +00:00
|
|
|
</Sidebar>
|
|
|
|
</SidebarLayout>
|
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,
|
|
|
|
} ),
|
2020-02-25 09:32:59 +00:00
|
|
|
isShippingCalculatorEnabled: PropTypes.bool,
|
|
|
|
isShippingCostHidden: PropTypes.bool,
|
2020-02-26 15:49:07 +00:00
|
|
|
isLoading: PropTypes.bool,
|
2020-02-25 09:32:59 +00:00
|
|
|
/**
|
|
|
|
* List of shipping rates to display. If defined, shipping rates will not be fetched from the API (used for the block preview).
|
|
|
|
*/
|
|
|
|
shippingRates: PropTypes.array,
|
2020-02-18 23:06:37 +00:00
|
|
|
};
|
2019-12-05 21:08:48 +00:00
|
|
|
|
|
|
|
export default Cart;
|