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-04-07 11:03:22 +00:00
|
|
|
import classnames from 'classnames';
|
2021-09-14 06:09:45 +00:00
|
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
import { speak } from '@wordpress/a11y';
|
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 QuantitySelector from '@woocommerce/base-components/quantity-selector';
|
2020-09-14 10:56:10 +00:00
|
|
|
import ProductPrice from '@woocommerce/base-components/product-price';
|
2020-12-21 13:45:27 +00:00
|
|
|
import ProductName from '@woocommerce/base-components/product-name';
|
2021-03-16 11:40:22 +00:00
|
|
|
import {
|
|
|
|
useStoreCartItemQuantity,
|
|
|
|
useStoreEvents,
|
2021-05-12 12:32:05 +00:00
|
|
|
useStoreCart,
|
2021-04-08 12:31:12 +00:00
|
|
|
} from '@woocommerce/base-context/hooks';
|
2020-03-13 15:49:33 +00:00
|
|
|
import {
|
2020-07-14 15:25:53 +00:00
|
|
|
ProductBackorderBadge,
|
2020-03-13 15:49:33 +00:00
|
|
|
ProductImage,
|
|
|
|
ProductLowStockBadge,
|
|
|
|
ProductMetadata,
|
|
|
|
ProductSaleBadge,
|
|
|
|
} from '@woocommerce/base-components/cart-checkout';
|
2021-04-23 09:15:17 +00:00
|
|
|
import {
|
|
|
|
getCurrencyFromPriceResponse,
|
|
|
|
Currency,
|
|
|
|
} from '@woocommerce/price-format';
|
2021-02-17 13:01:20 +00:00
|
|
|
import {
|
|
|
|
__experimentalApplyCheckoutFilter,
|
|
|
|
mustContain,
|
|
|
|
} from '@woocommerce/blocks-checkout';
|
2020-03-17 15:34:33 +00:00
|
|
|
import Dinero from 'dinero.js';
|
2021-09-14 06:09:45 +00:00
|
|
|
import { forwardRef, useMemo } from '@wordpress/element';
|
2021-04-23 09:15:17 +00:00
|
|
|
import type { CartItem } from '@woocommerce/type-defs/cart';
|
2021-05-25 11:49:13 +00:00
|
|
|
import { objectHasProp } from '@woocommerce/types';
|
2021-04-22 11:37:27 +00:00
|
|
|
import { getSetting } from '@woocommerce/settings';
|
2020-01-13 23:07:52 +00:00
|
|
|
|
2020-03-17 15:34:33 +00:00
|
|
|
/**
|
|
|
|
* Convert a Dinero object with precision to store currency minor unit.
|
|
|
|
*
|
|
|
|
* @param {Dinero} priceObject Price object to convert.
|
|
|
|
* @param {Object} currency Currency data.
|
|
|
|
* @return {number} Amount with new minor unit precision.
|
|
|
|
*/
|
2021-04-23 09:15:17 +00:00
|
|
|
const getAmountFromRawPrice = (
|
|
|
|
priceObject: Dinero.Dinero,
|
|
|
|
currency: Currency
|
|
|
|
) => {
|
2020-03-17 15:34:33 +00:00
|
|
|
return priceObject.convertPrecision( currency.minorUnit ).getAmount();
|
|
|
|
};
|
|
|
|
|
2021-08-13 13:42:09 +00:00
|
|
|
const productPriceValidation = ( value ) => mustContain( value, '<price/>' );
|
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
interface CartLineItemRowProps {
|
|
|
|
lineItem: CartItem | Record< string, never >;
|
|
|
|
onRemove?: () => void;
|
|
|
|
tabIndex?: number;
|
|
|
|
}
|
|
|
|
|
2020-02-26 15:49:07 +00:00
|
|
|
/**
|
|
|
|
* Cart line item table row component.
|
|
|
|
*/
|
2021-09-14 06:09:45 +00:00
|
|
|
const CartLineItemRow = forwardRef< HTMLTableRowElement, CartLineItemRowProps >(
|
|
|
|
(
|
|
|
|
{ lineItem, onRemove = () => void null, tabIndex = null },
|
|
|
|
ref
|
|
|
|
): JSX.Element => {
|
|
|
|
const {
|
|
|
|
name: initialName = '',
|
|
|
|
catalog_visibility: catalogVisibility = 'visible',
|
|
|
|
short_description: shortDescription = '',
|
|
|
|
description: fullDescription = '',
|
|
|
|
low_stock_remaining: lowStockRemaining = null,
|
|
|
|
show_backorder_badge: showBackorderBadge = false,
|
2022-01-11 11:09:59 +00:00
|
|
|
quantity_limits: quantityLimits = {
|
|
|
|
minimum: 1,
|
|
|
|
maximum: 99,
|
|
|
|
multiple_of: 1,
|
|
|
|
editable: true,
|
|
|
|
},
|
|
|
|
sold_individually: soldIndividually = false,
|
2021-09-14 06:09:45 +00:00
|
|
|
permalink = '',
|
|
|
|
images = [],
|
|
|
|
variation = [],
|
|
|
|
item_data: itemData = [],
|
|
|
|
prices = {
|
|
|
|
currency_code: 'USD',
|
|
|
|
currency_minor_unit: 2,
|
|
|
|
currency_symbol: '$',
|
|
|
|
currency_prefix: '$',
|
|
|
|
currency_suffix: '',
|
|
|
|
currency_decimal_separator: '.',
|
|
|
|
currency_thousand_separator: ',',
|
2020-03-17 15:34:33 +00:00
|
|
|
price: '0',
|
|
|
|
regular_price: '0',
|
|
|
|
sale_price: '0',
|
2021-09-14 06:09:45 +00:00
|
|
|
price_range: null,
|
|
|
|
raw_prices: {
|
|
|
|
precision: 6,
|
|
|
|
price: '0',
|
|
|
|
regular_price: '0',
|
|
|
|
sale_price: '0',
|
|
|
|
},
|
2020-03-17 15:34:33 +00:00
|
|
|
},
|
2021-09-14 06:09:45 +00:00
|
|
|
totals = {
|
|
|
|
currency_code: 'USD',
|
|
|
|
currency_minor_unit: 2,
|
|
|
|
currency_symbol: '$',
|
|
|
|
currency_prefix: '$',
|
|
|
|
currency_suffix: '',
|
|
|
|
currency_decimal_separator: '.',
|
|
|
|
currency_thousand_separator: ',',
|
|
|
|
line_subtotal: '0',
|
|
|
|
line_subtotal_tax: '0',
|
|
|
|
},
|
|
|
|
extensions,
|
|
|
|
} = lineItem;
|
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
|
|
|
|
2022-06-15 09:56:52 +00:00
|
|
|
const { quantity, setItemQuantity, removeItem, isPendingDelete } =
|
|
|
|
useStoreCartItemQuantity( lineItem );
|
2021-09-14 06:09:45 +00:00
|
|
|
const { dispatchStoreEvent } = useStoreEvents();
|
2020-02-28 02:05:10 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
// Prepare props to pass to the __experimentalApplyCheckoutFilter filter.
|
|
|
|
// We need to pluck out receiveCart.
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
|
const { receiveCart, ...cart } = useStoreCart();
|
|
|
|
const arg = useMemo(
|
|
|
|
() => ( {
|
|
|
|
context: 'cart',
|
|
|
|
cartItem: lineItem,
|
|
|
|
cart,
|
|
|
|
} ),
|
|
|
|
[ lineItem, cart ]
|
|
|
|
);
|
|
|
|
const priceCurrency = getCurrencyFromPriceResponse( prices );
|
|
|
|
const name = __experimentalApplyCheckoutFilter( {
|
|
|
|
filterName: 'itemName',
|
|
|
|
defaultValue: initialName,
|
|
|
|
extensions,
|
|
|
|
arg,
|
|
|
|
} );
|
2021-02-11 23:37:05 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
const regularAmountSingle = Dinero( {
|
|
|
|
amount: parseInt( prices.raw_prices.regular_price, 10 ),
|
|
|
|
precision: prices.raw_prices.precision,
|
|
|
|
} );
|
|
|
|
const purchaseAmountSingle = Dinero( {
|
|
|
|
amount: parseInt( prices.raw_prices.price, 10 ),
|
|
|
|
precision: prices.raw_prices.precision,
|
|
|
|
} );
|
2022-06-15 09:56:52 +00:00
|
|
|
const saleAmountSingle =
|
|
|
|
regularAmountSingle.subtract( purchaseAmountSingle );
|
2021-09-14 06:09:45 +00:00
|
|
|
const saleAmount = saleAmountSingle.multiply( quantity );
|
|
|
|
const totalsCurrency = getCurrencyFromPriceResponse( totals );
|
|
|
|
let lineSubtotal = parseInt( totals.line_subtotal, 10 );
|
|
|
|
if ( getSetting( 'displayCartPricesIncludingTax', false ) ) {
|
|
|
|
lineSubtotal += parseInt( totals.line_subtotal_tax, 10 );
|
|
|
|
}
|
|
|
|
const subtotalPrice = Dinero( {
|
|
|
|
amount: lineSubtotal,
|
|
|
|
precision: totalsCurrency.minorUnit,
|
|
|
|
} );
|
2021-02-11 23:37:05 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
const firstImage = images.length ? images[ 0 ] : {};
|
|
|
|
const isProductHiddenFromCatalog =
|
|
|
|
catalogVisibility === 'hidden' || catalogVisibility === 'search';
|
2020-03-09 02:09:47 +00:00
|
|
|
|
2021-11-09 15:15:35 +00:00
|
|
|
const cartItemClassNameFilter = __experimentalApplyCheckoutFilter( {
|
|
|
|
filterName: 'cartItemClass',
|
|
|
|
defaultValue: '',
|
|
|
|
extensions,
|
|
|
|
arg,
|
|
|
|
} );
|
2021-02-17 13:01:20 +00:00
|
|
|
|
2021-11-09 15:15:35 +00:00
|
|
|
// Allow extensions to filter how the price is displayed. Ie: prepending or appending some values.
|
2021-09-14 06:09:45 +00:00
|
|
|
const productPriceFormat = __experimentalApplyCheckoutFilter( {
|
|
|
|
filterName: 'cartItemPrice',
|
|
|
|
defaultValue: '<price/>',
|
|
|
|
extensions,
|
|
|
|
arg,
|
|
|
|
validation: productPriceValidation,
|
|
|
|
} );
|
2021-02-11 23:37:05 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
const subtotalPriceFormat = __experimentalApplyCheckoutFilter( {
|
|
|
|
filterName: 'subtotalPriceFormat',
|
|
|
|
defaultValue: '<price/>',
|
|
|
|
extensions,
|
|
|
|
arg,
|
|
|
|
validation: productPriceValidation,
|
|
|
|
} );
|
2021-02-11 23:37:05 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
const saleBadgePriceFormat = __experimentalApplyCheckoutFilter( {
|
|
|
|
filterName: 'saleBadgePriceFormat',
|
|
|
|
defaultValue: '<price/>',
|
|
|
|
extensions,
|
|
|
|
arg,
|
|
|
|
validation: productPriceValidation,
|
|
|
|
} );
|
2021-02-10 17:12:47 +00:00
|
|
|
|
2021-09-14 06:09:45 +00:00
|
|
|
return (
|
|
|
|
<tr
|
2021-11-09 15:15:35 +00:00
|
|
|
className={ classnames(
|
|
|
|
'wc-block-cart-items__row',
|
|
|
|
cartItemClassNameFilter,
|
|
|
|
{
|
|
|
|
'is-disabled': isPendingDelete,
|
|
|
|
}
|
|
|
|
) }
|
2021-09-14 06:09:45 +00:00
|
|
|
ref={ ref }
|
|
|
|
tabIndex={ tabIndex }
|
2020-03-30 12:43:42 +00:00
|
|
|
>
|
2021-09-14 06:09:45 +00:00
|
|
|
{ /* If the image has no alt text, this link is unnecessary and can be hidden. */ }
|
|
|
|
<td
|
|
|
|
className="wc-block-cart-item__image"
|
|
|
|
aria-hidden={
|
|
|
|
! objectHasProp( firstImage, 'alt' ) || ! firstImage.alt
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{ /* We don't need to make it focusable, because product name has the same link. */ }
|
|
|
|
{ isProductHiddenFromCatalog ? (
|
2021-10-28 12:57:20 +00:00
|
|
|
<ProductImage
|
|
|
|
image={ firstImage }
|
|
|
|
fallbackAlt={ name }
|
|
|
|
/>
|
2021-09-14 06:09:45 +00:00
|
|
|
) : (
|
|
|
|
<a href={ permalink } tabIndex={ -1 }>
|
2021-10-28 12:57:20 +00:00
|
|
|
<ProductImage
|
|
|
|
image={ firstImage }
|
|
|
|
fallbackAlt={ name }
|
|
|
|
/>
|
2021-09-14 06:09:45 +00:00
|
|
|
</a>
|
|
|
|
) }
|
|
|
|
</td>
|
|
|
|
<td className="wc-block-cart-item__product">
|
2022-01-31 15:18:29 +00:00
|
|
|
<div className="wc-block-cart-item__wrap">
|
|
|
|
<ProductName
|
|
|
|
disabled={
|
|
|
|
isPendingDelete || isProductHiddenFromCatalog
|
|
|
|
}
|
|
|
|
name={ name }
|
|
|
|
permalink={ permalink }
|
|
|
|
/>
|
|
|
|
{ showBackorderBadge ? (
|
|
|
|
<ProductBackorderBadge />
|
|
|
|
) : (
|
|
|
|
!! lowStockRemaining && (
|
|
|
|
<ProductLowStockBadge
|
|
|
|
lowStockRemaining={ lowStockRemaining }
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
) }
|
|
|
|
|
|
|
|
<div className="wc-block-cart-item__prices">
|
|
|
|
<ProductPrice
|
|
|
|
currency={ priceCurrency }
|
|
|
|
regularPrice={ getAmountFromRawPrice(
|
|
|
|
regularAmountSingle,
|
|
|
|
priceCurrency
|
|
|
|
) }
|
|
|
|
price={ getAmountFromRawPrice(
|
|
|
|
purchaseAmountSingle,
|
|
|
|
priceCurrency
|
|
|
|
) }
|
|
|
|
format={ subtotalPriceFormat }
|
2021-09-14 06:09:45 +00:00
|
|
|
/>
|
2022-01-31 15:18:29 +00:00
|
|
|
</div>
|
2021-09-14 06:09:45 +00:00
|
|
|
|
2022-01-31 15:18:29 +00:00
|
|
|
<ProductSaleBadge
|
2021-09-14 06:09:45 +00:00
|
|
|
currency={ priceCurrency }
|
2022-01-31 15:18:29 +00:00
|
|
|
saleAmount={ getAmountFromRawPrice(
|
|
|
|
saleAmountSingle,
|
2021-09-14 06:09:45 +00:00
|
|
|
priceCurrency
|
|
|
|
) }
|
2022-01-31 15:18:29 +00:00
|
|
|
format={ saleBadgePriceFormat }
|
2020-07-14 15:25:53 +00:00
|
|
|
/>
|
2021-01-27 11:34:59 +00:00
|
|
|
|
2022-01-31 15:18:29 +00:00
|
|
|
<ProductMetadata
|
|
|
|
shortDescription={ shortDescription }
|
|
|
|
fullDescription={ fullDescription }
|
|
|
|
itemData={ itemData }
|
|
|
|
variation={ variation }
|
|
|
|
/>
|
2021-02-23 10:12:27 +00:00
|
|
|
|
2022-01-31 15:18:29 +00:00
|
|
|
<div className="wc-block-cart-item__quantity">
|
|
|
|
{ ! soldIndividually &&
|
|
|
|
!! quantityLimits.editable && (
|
|
|
|
<QuantitySelector
|
|
|
|
disabled={ isPendingDelete }
|
|
|
|
quantity={ quantity }
|
|
|
|
minimum={ quantityLimits.minimum }
|
|
|
|
maximum={ quantityLimits.maximum }
|
|
|
|
step={ quantityLimits.multiple_of }
|
|
|
|
onChange={ ( newQuantity ) => {
|
|
|
|
setItemQuantity( newQuantity );
|
|
|
|
dispatchStoreEvent(
|
|
|
|
'cart-set-item-quantity',
|
|
|
|
{
|
|
|
|
product: lineItem,
|
|
|
|
quantity: newQuantity,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} }
|
|
|
|
itemName={ name }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
<button
|
|
|
|
className="wc-block-cart-item__remove-link"
|
|
|
|
onClick={ () => {
|
|
|
|
onRemove();
|
|
|
|
removeItem();
|
|
|
|
dispatchStoreEvent( 'cart-remove-item', {
|
|
|
|
product: lineItem,
|
|
|
|
quantity,
|
|
|
|
} );
|
|
|
|
speak(
|
|
|
|
sprintf(
|
|
|
|
/* translators: %s refers to the item name in the cart. */
|
|
|
|
__(
|
|
|
|
'%s has been removed from your cart.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
),
|
|
|
|
name
|
|
|
|
)
|
2022-01-11 11:09:59 +00:00
|
|
|
);
|
|
|
|
} }
|
2022-01-31 15:18:29 +00:00
|
|
|
disabled={ isPendingDelete }
|
|
|
|
>
|
|
|
|
{ __(
|
|
|
|
'Remove item',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-09-14 06:09:45 +00:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td className="wc-block-cart-item__total">
|
|
|
|
<div className="wc-block-cart-item__total-price-and-sale-badge-wrapper">
|
|
|
|
<ProductPrice
|
|
|
|
currency={ totalsCurrency }
|
|
|
|
format={ productPriceFormat }
|
|
|
|
price={ subtotalPrice.getAmount() }
|
2021-02-23 10:12:27 +00:00
|
|
|
/>
|
2021-09-14 06:09:45 +00:00
|
|
|
|
|
|
|
{ quantity > 1 && (
|
|
|
|
<ProductSaleBadge
|
|
|
|
currency={ priceCurrency }
|
|
|
|
saleAmount={ getAmountFromRawPrice(
|
|
|
|
saleAmount,
|
|
|
|
priceCurrency
|
|
|
|
) }
|
|
|
|
format={ saleBadgePriceFormat }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2021-08-13 13:42:09 +00:00
|
|
|
|
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
|
|
|
export default CartLineItemRow;
|