-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Here's and idea:
The current Item Basket widget could be extended with a quick overview of shopping cart items that are in the list. These items could be passed on in an array through a property. Additionally two optional links could be passed on via prop to display buttons that link to a cart items overview page and to a checkout page.
Example:
items: [{
id: 1,
title: 'Product A',
price: '100.00',
discount: '20.00',
image: 'example.jpg',
quantity: 2,
}]
links: [{
cart: {
url: 'http://example.com/cart',
variant: 'secondary'
},
checkout: {
url: 'http://example.com/checkout',
variant: 'primary'
}
Concerns: Not sure how to go about making the removal of individual items work in a generic way.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request