![]() 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/cartforge.co/vendor/magento/module-checkout/view/frontend/web/js/view/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'underscore', 'ko', 'uiComponent', 'Magento_Checkout/js/model/step-navigator', 'Magento_Checkout/js/view/billing-address' ], function ($, _, ko, Component, stepNavigator, billingAddress) { 'use strict'; var steps = stepNavigator.steps; return Component.extend({ defaults: { template: 'Magento_Checkout/progress-bar', visible: true }, steps: steps, /** @inheritdoc */ initialize: function () { var stepsValue; this._super(); window.addEventListener('hashchange', _.bind(stepNavigator.handleHash, stepNavigator)); if (!window.location.hash) { stepsValue = stepNavigator.steps(); if (stepsValue.length) { stepNavigator.setHash(stepsValue.sort(stepNavigator.sortItems)[0].code); } } stepNavigator.handleHash(); }, /** * @param {*} itemOne * @param {*} itemTwo * @return {*|Number} */ sortItems: function (itemOne, itemTwo) { return stepNavigator.sortItems(itemOne, itemTwo); }, /** * @param {Object} step */ navigateTo: function (step) { if (step.code === 'shipping') { billingAddress().needCancelBillingAddressChanges(); } stepNavigator.navigateTo(step.code); }, /** * @param {Object} item * @return {*|Boolean} */ isProcessed: function (item) { return stepNavigator.isProcessed(item.code); } }); });