![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-checkout/view/frontend/web/js/view/summary/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'ko', 'Magento_Checkout/js/model/totals', 'uiComponent', 'Magento_Checkout/js/model/step-navigator', 'Magento_Checkout/js/model/quote' ], function (ko, totals, Component, stepNavigator, quote) { 'use strict'; var useQty = window.checkoutConfig.useQty; return Component.extend({ defaults: { template: 'Magento_Checkout/summary/cart-items' }, totals: totals.totals(), items: ko.observable([]), maxCartItemsToDisplay: window.checkoutConfig.maxCartItemsToDisplay, cartUrl: window.checkoutConfig.cartUrl, /** * @deprecated Please use observable property (this.items()) */ getItems: totals.getItems(), /** * Returns cart items qty * * @returns {Number} */ getItemsQty: function () { return parseFloat(this.totals['items_qty']); }, /** * Returns count of cart line items * * @returns {Number} */ getCartLineItemsCount: function () { return parseInt(totals.getItems()().length, 10); }, /** * Returns shopping cart items summary (includes config settings) * * @returns {Number} */ getCartSummaryItemsCount: function () { return useQty ? this.getItemsQty() : this.getCartLineItemsCount(); }, /** * @inheritdoc */ initialize: function () { this._super(); // Set initial items to observable field this.setItems(totals.getItems()()); // Subscribe for items data changes and refresh items in view totals.getItems().subscribe(function (items) { this.setItems(items); }.bind(this)); }, /** * Set items to observable field * * @param {Object} items */ setItems: function (items) { if (items && items.length > 0) { items = items.slice(parseInt(-this.maxCartItemsToDisplay, 10)); } this.items(items); }, /** * Returns bool value for items block state (expanded or not) * * @returns {*|Boolean} */ isItemsBlockExpanded: function () { return quote.isVirtual() || stepNavigator.isProcessed('shipping'); } }); });