![]() 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-paypal/view/frontend/web/js/in-context/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'uiComponent', 'jquery', 'Magento_Paypal/js/in-context/express-checkout-wrapper', 'Magento_Customer/js/customer-data' ], function (Component, $, Wrapper, customerData) { 'use strict'; return Component.extend(Wrapper).extend({ defaults: { declinePayment: false }, /** @inheritdoc */ initialize: function (config, element) { var cart = customerData.get('cart'), customer = customerData.get('customer'); this._super(); this.renderPayPalButtons(element); if (cart().isGuestCheckoutAllowed === undefined) { cart.subscribe(function (updatedCart) { this.declinePayment = !customer().firstname && !cart().isGuestCheckoutAllowed; return updatedCart; }.bind(this)); } return this; }, /** @inheritdoc */ beforePayment: function (resolve, reject) { var promise = $.Deferred(); if (this.declinePayment) { this.addError(this.signInMessage, 'warning'); reject(); } else { promise.resolve(); } return promise; }, /** @inheritdoc */ prepareClientConfig: function () { this._super(); return this.clientConfig; } }); });