Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
optometrists
/
cache
/
cache
/
.wp-cli
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
assets
/
js
/
base
/
components
/
cart-checkout
/
product-details
:
index.tsx
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * External dependencies */ import { kebabCase } from 'lodash'; import { decodeEntities } from '@wordpress/html-entities'; import type { ProductResponseItemData } from '@woocommerce/type-defs/product-response'; /** * Internal dependencies */ import './style.scss'; interface ProductDetailsProps { details: ProductResponseItemData[]; } // Component to display cart item data and variations. const ProductDetails = ( { details = [], }: ProductDetailsProps ): JSX.Element | null => { if ( ! Array.isArray( details ) ) { return null; } details = details.filter( ( detail ) => ! detail.hidden ); if ( details.length === 0 ) { return null; } return ( <ul className="wc-block-components-product-details"> { details.map( ( detail ) => { const className = detail.name ? `wc-block-components-product-details__${ kebabCase( detail.name ) }` : ''; return ( <li key={ detail.name + ( detail.display || detail.name ) } className={ className } > { detail.name && ( <> <span className="wc-block-components-product-details__name"> { decodeEntities( detail.name ) }: </span>{ ' ' } </> ) } <span className="wc-block-components-product-details__value"> { decodeEntities( detail.display || detail.value ) } </span> </li> ); } ) } </ul> ); }; export default ProductDetails;