# Mini Cart

The VTEX Minicart is a block that displays a summary list of all items added by customers in their shopping cart. Its data is fetched from the Checkout OrderForm API.

![minicart-v2-gif](https://user-images.githubusercontent.com/52087100/73321194-7f477e80-4220-11ea-844b-f24d1c10363c.gif)

## Configuration

1. Import the Minicart app to your theme's dependencies in the `manifest.json` as shown below:

```json
"dependencies": {
  "vtex.minicart": "2.x"
}
```

1. Add the `minicart.v2` block to your `header`. For example:

```json
"header.full": {
   "blocks": ["header-layout.desktop", "header-layout.mobile"]
 },

 "header-layout.desktop": {
   "children": [
     "header-row#1-desktop",
   ]
 },

 "header-row#1-desktop": {
   "children": ["minicart.v2"],
 },
```

:warning: **The Minicart v2 will only effectively function if the store uses the** [**Add To Cart Button**](https://vtex.io/docs/components/content-blocks/vtex.add-to-cart-button/) **instead of the** [**Buy Button**](https://vtex.io/docs/components/content-blocks/vtex.store-components/buybutton/) in blocks such as the Shelf and the Product Details Page. This is because Minicart v2 was built based on an indirect dependency with the Add To Cart button. That means that any other shopping buttons, as the Buy Button, are unable to render Minicart v2, even if it was correctly configured in the code. \`

| Prop name              | Type               | Description                                                                                                                                                                                                                                                                                                                                                                                                                                           | Default value                                                                               |
| ---------------------- | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| `variation`            | `enum`             | Minicart behavior when rendered. Possible values are: `popup` (it pops up on the Homepage in a minitab window) , `drawer` (it is rendered through a side bar) or `link` (when clicked on, it redirects the user to the Checkout page).                                                                                                                                                                                                                | `drawer`                                                                                    |
| `drawerSlideDirection` | `enum`             | Slide direction for the `drawer` Minicart opening. Possible values are: `rightToLeft` or `leftToRight`).                                                                                                                                                                                                                                                                                                                                              | `rightToLeft`                                                                               |
| `linkVariationUrl`     | `string`           | Link associated to the `link` Minicart.                                                                                                                                                                                                                                                                                                                                                                                                               | `undefined`                                                                                 |
| `maxDrawerWidth`       | `number`           | Maximum width (in pixels) for the `drawer` Minicart when opened.                                                                                                                                                                                                                                                                                                                                                                                      | `440`                                                                                       |
| `openOnHover`          | `boolean`          | Whether the `popup` minicart should open when the user hovers over it.                                                                                                                                                                                                                                                                                                                                                                                | `false`                                                                                     |
| `quantityDisplay`      | `enum`             | Shows the quantity badge even when the amount of products in the cart is zero. Possible values are: `always` or `not-empty` or `never`).                                                                                                                                                                                                                                                                                                              | `not-empty`                                                                                 |
| `twoDigitsQuantity`    | `enum`             | Shows the quantity as two digits number, like "05" or "02". Possible values are: `always` or `not-empty` or `never`).                                                                                                                                                                                                                                                                                                                                 | `not-empty`                                                                                 |
| `itemCountMode`        | `enum`             | Quantity badge behavior when displaying the number of total items added in Minicart. Possible values are: `total` (quantity badge displays the number of items added to the cart), `distinct` (only displays the number of different products added to the cart), `totalAvailable` (displays the number of available items added to the cart), and `distinctAvailable` (displays the number of different *and* available products added to the cart). | `distinct`                                                                                  |
| `backdropMode`         | `enum`             | Controls whether the backdrop should be displayed when the `drawer` Minicart is opened or not. Possible values are: `visible` (rendering the backdrop) or `none` (rendering the `drawer` without backdrop).                                                                                                                                                                                                                                           | `none`                                                                                      |
| `MinicartIcon`         | `block`            | Icon displayed in the Minicart button. This prop's value must match the name of the block responsible for rendering the desired icon.                                                                                                                                                                                                                                                                                                                 | `icon-cart` (from [Store Icons](https://vtex.io/docs/components/all/vtex.store-icons/) app) |
| `customPixelEventId`   | `string`           | Store event ID responsible for triggering the `minicart.v2` to automatically open itself on the interface.                                                                                                                                                                                                                                                                                                                                            | `undefined`                                                                                 |
| `customPixelEventName` | `string`           | Store event name responsible for triggering the `minicart.v2` to automatically open itself on the interface. Some examples are: `'addToCart'` and `'removeFromCart'`. Notice that using this prop will make the `minicart.v2` open in **every** event with the specified name if no `customPixelEventId` is specified.                                                                                                                                | `undefined`                                                                                 |
| `classes`              | `CustomCSSClasses` | Used to override default CSS handles. To better understand how this prop works, we recommend reading about it [here](https://github.com/vtex-apps/css-handles#usecustomclasses). Note that this is only useful if you're importing this block as a React component.                                                                                                                                                                                   | `undefined`                                                                                 |

### Advanced Configuration

According to the `minicart.v2` composition, it can be highly customizable using other blocks. Currently, its default implementation is as follows:

```
// This is the default blocks implementation for the minicart-layout
{
  "minicart.v2": {
    "props": {
      "MinicartIcon": "icon-cart#minicart-icon"
    },
    "children": ["minicart-base-content"]
  },
  "icon-cart#minicart-icon": {
    "props": {
      "size": 24
    }
  },
  "minicart-base-content": {
    "blocks": ["minicart-empty-state"],
    "children": ["minicart-product-list", "flex-layout.row#minicart-footer"]
  },
  "flex-layout.row#minicart-footer": {
    "props": {
      "blockClass": "minicart-footer"
    },
    "children": ["flex-layout.col#minicart-footer"]
  },
  "flex-layout.col#minicart-footer": {
    "children": ["minicart-summary", "minicart-checkout-button"]
  },
  "minicart-product-list": {
    "blocks": ["product-list#minicart"]
  },
  "product-list#minicart": {
    "blocks": ["product-list-content-mobile"]
  },
  "minicart-summary": {
    "blocks": ["checkout-summary.compact#minicart"]
  },

  "checkout-summary.compact#minicart": {
    "children": ["summary-totalizers#minicart"],
    "props": {
      "totalizersToShow": ["Items", "Discounts"]
    }
  },
  "summary-totalizers#minicart": {
    "props": {
      "showTotal": true,
      "showDeliveryTotal": false
    }
  },
  "minicart-empty-state": {
    "children": ["flex-layout.row#empty-state"]
  },
  "flex-layout.row#empty-state": {
    "children": ["flex-layout.col#empty-state"]
  },
  "flex-layout.col#empty-state": {
    "children": [
      "icon-cart#minicart-empty-state",
      "rich-text#minicart-default-empty-state"
    ],
    "props": {
      "horizontalAlign": "center",
      "verticalAlign": "middle",
      "rowGap": 5
    }
  },
  "icon-cart#minicart-empty-state": {
    "props": {
      "size": 64,
      "blockClass": "minicart-empty-state"
    }
  },
  "rich-text#minicart-default-empty-state": {
    "props": {
      "text": "Your cart is empty."
    }
  }
}
```

By default implementation we mean that whenever you use `minicart.v2` in your store you're actually using the `json` above behind the scenes.

Therefore, in order to customize the Minicart configuration, you can simply copy the code above and change it as you wish.

For further information on how to configure each of the blocks used to compose `minicart.v2`, check out [Product List](https://vtex.io/docs/app/vtex.product-list) and [Checkout Summary](https://vtex.io/docs/app/vtex.checkout-summary).

### Blocks

Another block not used in default implementation is `minicart-close-button`, this block can be used to render a custom close button when minicart is in popup mode.

`minicart-close-button` props:

| Prop name | Type     | Description             | Default value |
| --------- | -------- | ----------------------- | ------------- |
| `Icon`    | `block`  | Icon block to be showed | `undefined`   |
| `text`    | `string` | Text to be showed       | `undefined`   |

`minicart-quantity-badge` props:

| Prop name           | Type   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                           | Default value |
| ------------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
| `quantityDisplay`   | `enum` | Shows the quantity badge even when the amount of products in the cart is zero. Possible values are: `always` or `not-empty` or `never`).                                                                                                                                                                                                                                                                                                              | `not-empty`   |
| `twoDigitsQuantity` | `enum` | Shows the quantity as two digits number, like "05" or "02". Possible values are: `always` or `not-empty` or `never`).                                                                                                                                                                                                                                                                                                                                 | `not-empty`   |
| `itemCountMode`     | `enum` | Quantity badge behavior when displaying the number of total items added in Minicart. Possible values are: `total` (quantity badge displays the number of items added to the cart), `distinct` (only displays the number of different products added to the cart), `totalAvailable` (displays the number of available items added to the cart), and `distinctAvailable` (displays the number of different *and* available products added to the cart). | `distinct`    |

## Customization

In order to apply CSS customizations in this and other blocks, follow the instructions given in the recipe on [Using CSS Handles for store customization](https://vtex.io/docs/recipes/style/using-css-handles-for-store-customization).

| CSS Handles                     |
| ------------------------------- |
| `arrowUp`                       |
| `minicartCheckoutButton`        |
| `minicartContainer`             |
| `minicartContentContainer`      |
| `minicartFooter`                |
| `minicartIconContainer`         |
| `minicartProductListContainer`  |
| `minicartQuantityBadge`         |
| `minicartSideBarContentWrapper` |
| `minicartTitle`                 |
| `minicartWrapperContainer`      |
| `popupChildrenContainer`        |
| `popupContentContainer`         |
| `popupWrapper`                  |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://e-plus-agency.gitbook.io/plus-docs/vtex-io-custom-apps/minicart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
