@ikas/storefront 6.1.0-beta.351 → 6.1.0-beta.353
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/checkout/components/tkpay/index.d.ts +8 -0
- package/build/components/checkout/components/tkpay/index.js +1 -0
- package/build/components/checkout/model.d.ts +9 -1
- package/build/components/checkout/model.js +1 -1
- package/build/components/checkout/steps/step-payment/index.js +1 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/index.js +1 -1
- package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +1 -1
- package/build/components/page/widgets/loyaltyWidget.js +1 -1
- package/build/store/checkout/index.d.ts +2 -1
- package/build/store/checkout/index.js +1 -1
- package/package.json +11 -11
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__assign as e,__awaiter as t,__generator as n}from'./../../../../ext/tslib/tslib.es6.js';import*as r from"react";import{observer as o}from"mobx-react-lite";var a=o((function(o){var a,s=o.vm;o.isSelected;var i=r.useRef(null),d=null===(a=s.tkPayResponse)||void 0===a?void 0:a.paymentPageUrl;return r.useEffect((function(){if(d){var e=!1,r=function(r){return t(void 0,void 0,void 0,(function(){var t,o,a,d,l,p,u,c,v;return n(this,(function(n){switch(n.label){case 0:if("https://sandbox-app.tkpay.com"!==r.origin)return[2];if(!(t=r.data)||"tkpay:paymentButtonClick"!==t.type)return[2];if(o=!!(null===(a=s.checkout.billingAddress)||void 0===a?void 0:a.isValidAddress),e)return[2];if(!o)return s.isErrorsVisible=!0,null===(l=null===(d=i.current)||void 0===d?void 0:d.contentWindow)||void 0===l||l.postMessage({type:"tkpay:abortPayment"},"https://sandbox-app.tkpay.com"),[2];e=!0,n.label=1;case 1:return n.trys.push([1,3,4,5]),[4,s.saveCart()];case 2:return n.sent(),null===(u=null===(p=i.current)||void 0===p?void 0:p.contentWindow)||void 0===u||u.postMessage({type:"tkpay:proceedPayment"},"https://sandbox-app.tkpay.com"),[3,5];case 3:return n.sent(),null===(v=null===(c=i.current)||void 0===c?void 0:c.contentWindow)||void 0===v||v.postMessage({type:"tkpay:abortPayment"},"https://sandbox-app.tkpay.com"),[3,5];case 4:return e=!1,[7];case 5:return[2]}}))}))};return window.addEventListener("message",r),function(){return window.removeEventListener("message",r)}}}),[d,s]),d?r.createElement("div",{style:e({},!s.showTkPayContainer&&{display:"none"})},r.createElement("iframe",{ref:i,src:d,id:"tkpay-payment-page",className:"responsive",title:"TKPay Payment",style:{width:"100%",height:"600px",border:"none"}})):null}));export{a as TkPay};
|
|
@@ -9,7 +9,7 @@ import { TFunction } from "../../utils/i18n";
|
|
|
9
9
|
import { IkasCheckoutCustomizationProps } from ".";
|
|
10
10
|
import MasterPassModel from "./modelMasterPass";
|
|
11
11
|
import { APIResponse } from "@ikas/fe-api-client";
|
|
12
|
-
import { CreateStripePaymentIntentResponse, RetrieveInstallmentInfoResponse, UpdateCartCampaignOfferInput, CreateKlarnaTokenResponse, GetPaypalClientIdResponse, CreatePaypalOrderResponse, CreateAdyenPlatformSessionResponse, HepsipayFrameInitResponse, CreateIyzicoCheckoutFormResponse, LoyaltyCustomerInfo, LoyaltyProgramSpendingMethod, LoyaltyProgramEarningMethod } from "@ikas/storefront-api";
|
|
12
|
+
import { CreateStripePaymentIntentResponse, RetrieveInstallmentInfoResponse, UpdateCartCampaignOfferInput, CreateKlarnaTokenResponse, GetPaypalClientIdResponse, CreatePaypalOrderResponse, CreateAdyenPlatformSessionResponse, HepsipayFrameInitResponse, CreateIyzicoCheckoutFormResponse, CreateTkPayCheckoutFormResponse, LoyaltyCustomerInfo, LoyaltyProgramSpendingMethod, LoyaltyProgramEarningMethod } from "@ikas/storefront-api";
|
|
13
13
|
import { IkasBaseStore } from "../../store";
|
|
14
14
|
import { RetrieveInstallmentInfoQueryParams, SaveCartInput, MilesSmilesDetailsResponse } from "@ikas/storefront-api";
|
|
15
15
|
import { LocalizedAddressModel } from "@ikas/localized-address";
|
|
@@ -64,6 +64,9 @@ export default class CheckoutViewModel {
|
|
|
64
64
|
iyzicoResponse: CreateIyzicoCheckoutFormResponse | null;
|
|
65
65
|
isIyzicoLoading: boolean;
|
|
66
66
|
showIyzicoContainer: boolean;
|
|
67
|
+
tkPayResponse: CreateTkPayCheckoutFormResponse | null;
|
|
68
|
+
isTkPayLoading: boolean;
|
|
69
|
+
showTkPayContainer: boolean;
|
|
67
70
|
stripeExpressCheckoutSessionResponse: CreateStripePaymentIntentResponse | null;
|
|
68
71
|
isStripeExpressCheckoutSessionVisible: boolean;
|
|
69
72
|
campaignOffers: CampaignOfferType[] | undefined;
|
|
@@ -132,12 +135,15 @@ export default class CheckoutViewModel {
|
|
|
132
135
|
get hepsiPayPaymentGatewayIndex(): number;
|
|
133
136
|
get iyzicoPaymentGateway(): IkasPaymentGateway | undefined;
|
|
134
137
|
get iyzicoPaymentGatewayIndex(): number;
|
|
138
|
+
get tkPayPaymentGateway(): IkasPaymentGateway | undefined;
|
|
139
|
+
get tkPayPaymentGatewayIndex(): number;
|
|
135
140
|
get isCustomFlowStripe(): boolean | null | undefined;
|
|
136
141
|
get isKlarna(): boolean | null | undefined;
|
|
137
142
|
get isAdyen(): boolean | null | undefined;
|
|
138
143
|
get isPayPal(): boolean | null | undefined;
|
|
139
144
|
get isHepsiPay(): boolean | null | undefined;
|
|
140
145
|
get isIyzico(): boolean | null | undefined;
|
|
146
|
+
get isTkPay(): boolean | null | undefined;
|
|
141
147
|
get isFree(): boolean;
|
|
142
148
|
get milesSmilesRedeemValue(): number;
|
|
143
149
|
get isMilesSmilesFullPayment(): boolean;
|
|
@@ -226,6 +232,7 @@ export default class CheckoutViewModel {
|
|
|
226
232
|
getPayPalClientId: (paymentGateway: IkasPaymentGateway) => Promise<void>;
|
|
227
233
|
hepsipayFrameInit: (paymentGateway: IkasPaymentGateway) => Promise<void>;
|
|
228
234
|
createIyzicoCheckoutForm: (paymentGateway: IkasPaymentGateway) => Promise<void>;
|
|
235
|
+
createTkPayCheckoutForm: (paymentGateway: IkasPaymentGateway) => Promise<void>;
|
|
229
236
|
createStripeExpressCheckoutSession: (paymentGateway: IkasPaymentGateway) => Promise<void>;
|
|
230
237
|
updateStripeExpressCheckoutSession: (params: {
|
|
231
238
|
address?: StripeExpressCheckoutAddressInput | null;
|
|
@@ -233,6 +240,7 @@ export default class CheckoutViewModel {
|
|
|
233
240
|
shippingZoneRateId?: string | null;
|
|
234
241
|
}) => Promise<StripeExpressCheckoutSessionContextResponse | null>;
|
|
235
242
|
setShowIyzicoContainer: (value: boolean) => void;
|
|
243
|
+
setShowTkPayContainer: (value: boolean) => void;
|
|
236
244
|
setPaymentGateway: (index: number) => Promise<void>;
|
|
237
245
|
updatePaymentGateway: (paymentGateway: IkasPaymentGateway) => Promise<boolean>;
|
|
238
246
|
setInstallmentCount: (count: number) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__assign as e,__awaiter as t,__generator as i}from'./../../ext/tslib/tslib.es6.js';import{makeAutoObservable as s}from"mobx";import n from"lodash/cloneDeep";import r from"lodash/sortBy";import"../../models/data/blog/category/index.js";import"../../models/data/blog/content/index.js";import"../../models/data/blog/meta-data/index.js";import"../../models/data/blog/tag/index.js";import"../../models/data/blog/index.js";import"../../models/data/brand/index.js";import{IkasCartCreatedBy as o,IkasCouponCodeRequirement as a,IkasCorporateInvoiceRequirement as c,IkasPaymentMethodType as d,IkasPaymentGatewayType as u,IkasOrderShippingMethod as l,IkasOrderStatus as h,IkasCustomerEmailSubscriptionStatus as p,IkasOrderPaymentStatus as m,IkasTransactionStatus as f,IkasCartCampaignOfferStatus as g,IkasCampaignOfferTargetPageType as y,IkasOrderLineItemStatus as v,IkasAmountType as S,IkasCampaignOfferProductApplicablePriceEnum as b}from"@ikas/storefront-models";import"../../models/data/campaign-offer/index.js";import"../../models/data/cart/campaign-offer/index.js";import"../../models/data/cart/index.js";import"../../models/data/category/path-item/index.js";import"../../models/data/category/index.js";import{IkasCheckout as k}from"../../models/data/checkout/index.js";import{IkasCheckoutSettings as P}from"../../models/data/checkout-settings/index.js";import"../../models/data/city/index.js";import"../../models/data/country/index.js";import"../../models/data/customer/address/region/index.js";import{IkasCustomerAddress as I}from"../../models/data/customer/address/index.js";import{IkasLocalizedCustomerAddress as C}from"../../models/data/customer/address/ikas-localized-customer-address.js";import"../../models/data/customer/attribute/index.js";import"../../models/data/customer/review/summary/index.js";import"../../models/data/customer/review/index.js";import"../../models/data/customer/index.js";import"../../models/data/customer-form-data-input/index.js";import"../../models/data/district/index.js";import"../../models/data/favorite-product/index.js";import"../../models/data/filter-category/index.js";import"../../models/data/html-meta-data/index.js";import"../../models/data/image/index.js";import{IkasMerchantSettings as A}from"../../models/data/merchant-settings/index.js";import"../../models/data/order/address/region/index.js";import"../../models/data/order/address/index.js";import{IkasOrderCustomer as w}from"../../models/data/order/customer/index.js";import"../../models/data/order/line-item/option/value/index.js";import"../../models/data/order/line-item/variant/value/index.js";import"../../models/data/order/line-item/variant/index.js";import"../../models/data/order/line-item/index.js";import"../../models/data/order/order-transaction-with-prices/index.js";import"../../models/data/order/package/index.js";import"../../models/data/order/transaction/index.js";import"../../models/data/order/index.js";import"../../models/data/payment-gateway/index.js";import"../../models/data/product/attribute-value/index.js";import"../../models/data/product/filter/index.js";import"../../models/data/product/campaign-offer/index.js";import"../../models/data/product/option-set/option/index.js";import"../../models/data/product/option-set/index.js";import"../../models/data/product/stock-location/index.js";import{IkasProductPrice as O}from"../../models/data/product/variant/price/index.js";import{IkasProductVariant as E}from"../../models/data/product/variant/index.js";import"../../models/data/variant-type/index.js";import{IkasProduct as R}from"../../models/data/product/index.js";import"../../models/data/raffle/index.js";import"../../models/data/shipping-zone/state/city/district/region/index.js";import"../../models/data/state/index.js";import"../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../models/data/storefront-popup/index.js";import"../../models/data/theme-json/index.js";import"../../models/data/theme-json/component/index.js";import"../../models/data/theme-json/custom-data/index.js";import"../../models/data/variant-type/variant-value/index.js";import{LocalizedAddressModel as N}from"@ikas/localized-address";import"../../models/ui/blog-list/index.js";import"../../models/ui/blog-category-list/index.js";import"../../models/ui/brand-list/index.js";import"../../models/ui/category-list/index.js";import"../../models/ui/product-list/index.js";import"../../models/ui/product-attribute-detail/index.js";import"../../models/ui/product-attribute-list/index.js";import"../../models/ui/customer-review-list/index.js";import"../../models/ui/customer-review-summary-list/index.js";import"../../models/ui/validator/index.js";import"../../models/ui/validator/rules/index.js";import"../../models/ui/validator/form/login.js";import"../../models/ui/validator/form/address.js";import"../../models/ui/validator/form/ikas-address.js";import"../../models/ui/validator/form/register.js";import"../../models/ui/validator/form/contact-form.js";import"../../models/ui/validator/form/forgot-password.js";import"../../models/ui/validator/form/recover-password.js";import"../../models/ui/validator/form/account-info.js";import"../../models/ui/validator/form/raffle-form.js";import"../../models/ui/validator/form/customer-review.js";import"../../models/ui/raffle-list/index.js";import T from"./components/credit-card-form/model.js";import M from"../../store/customer/api.js";import j from"../../store/checkout/index.js";import L from"../../store/cart/api.js";import G,{MFS_ELEMENT_ID as D,MFS_SCRIPT_URL as x}from"./modelMasterPass.js";import _ from"../../store/product/index.js";import{TransactionCardAssociationEnum as V,RewardSourceEnum as F,SaveCartInput as U,CheckStocksLineInput as B,getLoyaltyCustomerInfo as H,listSpendingMethodsByCartId as Y,LoyaltyProgramPointEarningTypeEnum as K,listEarningMethods as Z,getMilesSmilesDetails as z,CampaignOfferTargetPageTypeEnum as W}from"@ikas/storefront-api";import{IkasBaseStore as q}from"../../store/base.js";import"../../store/customer/index.js";import"../../store/cart/index.js";import{IkasStorefrontConfig as Q}from"@ikas/storefront-config";import{Analytics as X}from"../../analytics/analytics.js";import"../../analytics/head/index.js";import J from"../../models/data/order/address/ikas-localized-order-address.js";import $ from"../../store/location/index.js";import{isEqual as ee,getCookieValue as te}from"../../utils/helper.js";import ie from"../../analytics/ikasV3.js";var se,ne,re=/^\d+$/,oe=/^3[47]/,ae="undefined"==typeof localStorage,ce={TRY:.25,USD:.0065,EUR:.006},de=function(){function re(o,c,h,C,A,V,re,oe,ce,de){var he=this;this.storefront=null,this.isCheckoutLoaded=!1,this.isErrorsVisible=!1,this.isStepLoading=!1,this.isTermsAndConditionsChecked=!1,this.isChangingShippingMethod=!1,this.isContactModalVisible=!1,this.isPaymentMethodVisible=!0,this.step=se.INFO,this.customizationProps=null,this.cardData=null,this.paymentGateways=[],this.useMilesSmiles=!1,this.milesToRedeem=0,this.isMilesSmilesLoginRequired=!1,this.milesSmilesDetails=null,this.productFiles=[],this.installmentInfo=null,this.useDifferentAddress=!1,this.shouldSaveAddress=!0,this.addressTitle="",this.shippingCountryIds=null,this.selectedShippingAddressId="-1",this.selectedBillingAddressId="-1",this.stockLocations=[],this.availableStockLocations=[],this.deliveryMethod="address",this.stripeResponse=null,this.stripeError=null,this.klarnaResponse=null,this.isKlarnaPaymentCompleted=!1,this.klarnaError=null,this.adyenResponse=null,this.payPalClientIdResponse=null,this.paypalOrderResponse=null,this.hepsipayFrameInitResponse=null,this.iyzicoResponse=null,this.isIyzicoLoading=!1,this.showIyzicoContainer=!1,this.stripeExpressCheckoutSessionResponse=null,this.isStripeExpressCheckoutSessionVisible=!1,this.isCampaignOfferLoaded=!0,this.shippingZones=null,this.policyModalTitle="",this.policyModalText="",this.error=null,this.couponError=null,this.storeCreditBalance=null,this.loyaltyCustomerInfo=null,this.loyaltySpendingMethods=null,this.loyaltySpendingMethodsAll=null,this.loyaltyEarningMethod=null,this.isLoyaltyPointsVisible=!1,this.showTestModal=!1,this.openEditOrderTransaction=null,this.previousRawValue="",this.previousBin=null,this.init=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,this.countrySettings.waitUntilInitialized()];case 1:return t.sent(),[4,q.getInstance().customerStore.waitUntilInitialized()];case 2:return t.sent(),(e=this.isOpenEditOrder||this.checkout.edited)?[4,this.getOpenEditOrderTransaction()]:[3,4];case 3:t.sent(),t.label=4;case 4:return e&&(this.openEditOrderTransaction||this.checkout.edited)||this.createCustomer(),this.createShippingAddress(),this.createBillingAddress(),[4,this.initStep()];case 5:return t.sent(),[2]}}))}))},this.initStep=function(){return t(he,void 0,void 0,(function(){var t,s,n,r,o,c,d;return i(this,(function(i){switch(i.label){case 0:if(Q.getIsEditor())return this.step=se.INFO,this.isCheckoutLoaded=!0,[2];if(t=new URLSearchParams(window.location.search),s=t.get("step"),n=t.get("failed"),r=t.get("error"),s){if(this.step=s,this.step===se.SHIPPING&&!this.canProceedToShipping)return[2,this.changeStep(se.INFO)];if(this.step!==se.PAYMENT||this.canProceedToPayment){if(this.step===se.SUCCESS&&!this.canProceedToPayment)return[2,this.changeStep(se.INFO)];if(![se.INFO,se.SUCCESS,se.SHIPPING,se.PAYMENT].includes(this.step))return[2,this.changeStep(se.INFO)]}else{if(!this.isInStoreDelivery)return this.isValidShippingSettings||this.isManualOrderWithoutShippingLines?[2,this.changeStep(se.INFO)]:[2,this.changeStep(se.SHIPPING)];this.deliveryMethod="in-store"}}return[4,this.createCampaignOffer()];case 1:return i.sent(),this.step!==se.SHIPPING&&this.step!==se.PAYMENT||this.isCouponCodeRequirementInvisible||(this.checkoutSettings=new P(e(e({},this.checkoutSettings),{couponCodeRequirement:a.DEFAULT}))),this.step!==se.INFO?[3,7]:this.isDigitalOnly?[3,4]:[4,this.getAvailableShippingZones()];case 2:return i.sent(),this.createCustomer(),this.createShippingAddress(),this.createBillingAddress(),[4,this.getShippingCountries()];case 3:i.sent(),this.checkShippingCountries(),i.label=4;case 4:return[4,this.getStockLocations()];case 5:return i.sent(),[4,this.getAvailableStockLocations()];case 6:i.sent(),this.isInStoreDelivery&&(this.deliveryMethod="in-store"),i.label=7;case 7:return this.step!==se.SHIPPING||1!==(null===(c=this.checkout.availableShippingMethods)||void 0===c?void 0:c.length)||this.checkoutSettings.isGiftPackageEnabled||(this.step=se.PAYMENT,this.router.replace("/checkout?id=".concat(this.checkout.id,"&step=").concat(this.step),void 0,{shallow:!0})),this.step!==se.SHIPPING||(null===(d=this.checkout.availableShippingMethods)||void 0===d?void 0:d.length)?this.step!==se.SUCCESS||this.checkout.orderPaymentStatus!==m.PAID?[3,9]:[4,this.listProductFile()]:(this.error={type:ne.NO_SHIPPING_ERROR},this.isCheckoutLoaded=!0,[2]);case 8:i.sent(),i.label=9;case 9:return this.step!==se.PAYMENT&&this.step!==se.SUCCESS?[3,15]:[4,this.listPaymentGateways()];case 10:return i.sent(),this.checkout.hasCustomer?[4,this.getStoreCreditBalance()]:[3,12];case 11:i.sent(),i.label=12;case 12:return this.isInStoreDelivery?(this.deliveryMethod="in-store",[4,this.getStockLocations()]):[3,14];case 13:i.sent(),i.label=14;case 14:if(!this.paymentGateways.length&&!this.isFree)return this.error={type:ne.NO_SHIPPING_ERROR},this.isMinTransactionError&&(this.error={type:ne.API_ERROR,data:this.t("checkout-page:minTransactionErrorMessage",{value:200})}),this.isCheckoutLoaded=!0,[2];i.label=15;case 15:return this.step===se.SUCCESS?[3,23]:this.isOpenEditOrder?[3,18]:this.checkout.isComplete?[2,this.changeStep(se.SUCCESS)]:[3,16];case 16:return[4,this.initialStockCheck()];case 17:i.sent(),i.label=18;case 18:return this.checkout.hasCustomer?[4,this.getLoyaltyCustomerInfo()]:[3,22];case 19:return i.sent(),[4,this.listSpendingMethodsByCartId()];case 20:return i.sent(),[4,this.listEarningMethods()];case 21:i.sent(),i.label=22;case 22:return[3,25];case 23:return[4,this.getSuccessTransaction()];case 24:i.sent(),this.successTransaction&&(o=this.successTransaction.paymentGatewayId,this.checkout.selectedPaymentGateway=this.paymentGateways.find((function(e){return e.id===o}))),i.label=25;case 25:return n&&(this.error={type:ne.PAYMENT_ERROR,data:r||null}),this.isCheckoutLoaded=!0,X.checkoutStep(this.checkout,this.step,this.checkoutSettings),[2]}}))}))},this.getOpenEditOrderTransaction=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,M.listOrderTransactionsWithPrices({input:{orderId:this.checkout.id}})];case 1:return(e=t.sent()).isSuccess&&e.data&&e.data.chargedAmount&&(this.openEditOrderTransaction=e.data),[2]}}))}))},this.getSuccessTransaction=function(){return t(he,void 0,void 0,(function(){var e,t,s;return i(this,(function(i){switch(i.label){case 0:return[4,M.listOrderTransactions({orderId:{eq:this.checkout.id}})];case 1:return e=i.sent(),this.successTransactions=e.isSuccess&&(null===(t=e.data)||void 0===t?void 0:t.length)?e.data:[],this.successTransaction=e.isSuccess&&(null===(s=e.data)||void 0===s?void 0:s.length)?e.data[e.data.length-1]:void 0,[2]}}))}))},this.saveCart=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,d,u,l,h,m,f,g,y,v;return i(this,(function(i){switch(i.label){case 0:return e=new U(this.checkout),"in-store"!==this.deliveryMethod?[3,2]:[4,this.inStockDeliveryInputData(e)];case 1:e=i.sent(),i.label=2;case 2:return this.step!==se.INFO&&this.step!==se.SHIPPING&&this.step!==se.PAYMENT||this.isDigitalOnly||(this.isShowBillingAddressOnShippingStep||this.step===se.PAYMENT||(e.billingAddress=null),e.billingAddress&&(this.isShowBillingAddressOnShippingStep&&this.useDifferentAddress||this.useDifferentAddress&&!this.isShowBillingAddressOnShippingStep&&this.checkoutSettings.showCompanyInfoInShippingAddress)&&(e.billingAddress.company=(null===(n=e.shippingAddress)||void 0===n?void 0:n.company)||null,e.billingAddress.taxNumber=(null===(r=e.shippingAddress)||void 0===r?void 0:r.taxNumber)||null,e.billingAddress.taxOffice=(null===(o=e.shippingAddress)||void 0===o?void 0:o.taxOffice)||null)),this.isDigitalOnly&&(e.shippingAddress=null),e.customer&&(this.store.customerStore.customer?e.customer.notificationsAccepted=this.store.customerStore.customer.subscriptionStatus===p.SUBSCRIBED:this.checkout.customer&&(e.customer.notificationsAccepted=this.checkout.customer.notificationsAccepted||!1)),null===(null===(c=null===(a=e.shippingAddress)||void 0===a?void 0:a.city)||void 0===c?void 0:c.code)&&""===(null===(u=null===(d=e.shippingAddress)||void 0===d?void 0:d.city)||void 0===u?void 0:u.name)&&(e.shippingAddress.city.name="-"),null===(null===(h=null===(l=e.billingAddress)||void 0===l?void 0:l.city)||void 0===h?void 0:h.code)&&""===(null===(f=null===(m=e.billingAddress)||void 0===m?void 0:m.city)||void 0===f?void 0:f.name)&&(e.billingAddress.city.name="-"),[4,L.saveCart({input:e})];case 3:if((null==(t=i.sent())?void 0:t.graphQLErrors)&&t.graphQLErrors.length)throw s=t.graphQLErrors[0],"CUSTOMER_LOGIN_REQUIRED"===(null===(g=s.extensions)||void 0===g?void 0:g.code)?{type:ne.CUSTOMER_LOGIN_REQUIRED_ERROR}:"CUSTOMER_ACCOUNT_DISABLED"===(null===(y=s.extensions)||void 0===y?void 0:y.code)?{type:ne.CUSTOMER_ACCOUNT_DISABLED_ERROR}:"ARGUMENT_VALIDATION_ERROR"===(null===(v=s.extensions)||void 0===v?void 0:v.code)?{type:ne.ARGUMENT_VALIDATION_ERROR,data:s.extensions.validationErrors}:{type:ne.API_ERROR,data:t.firstErrorMessage};return[2,t.data]}}))}))},this.inStockDeliveryInputData=function(e){return t(he,void 0,void 0,(function(){var t,s,n=this;return i(this,(function(i){return t=e,(s=this.stockLocations.find((function(e){return e.id===n.checkout.stockLocationId})))&&t.shippingAddress&&s.address&&(t.shippingAddress.country=s.address.country,t.shippingAddress.city=s.address.city,t.shippingAddress.state=s.address.state,t.shippingAddress.district=s.address.district,t.shippingAddress.postalCode=s.address.postalCode,t.shippingAddress.addressLine1=s.address.address||"",t.shippingAddress.addressLine2=null),[2,t]}))}))},this.checkStocks=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,d,u,h,p,m,f;return i(this,(function(i){switch(i.label){case 0:return this.isManualOrder||this.isOpenEditOrderWithTransaction?[2]:(e=this.checkout.stockLocationId&&this.checkout.shippingMethod===l.CLICK_AND_COLLECT?[this.checkout.stockLocationId]:(null===(p=Q.getStockLocationIds())||void 0===p?void 0:p.length)?Q.getStockLocationIds():null,[4,j.checkCartStocks({cartId:this.checkout.id,stockLocationIdList:e})]);case 1:if(!(t=i.sent()).isSuccess)throw s="UPSELL"===this.checkout.createdBy,n=s?this.t("checkout-page:upsellTimeErrorMessage"):t.firstErrorMessage,{type:ne.API_ERROR,data:n};if(null==(r=null===(f=null===(m=t.data)||void 0===m?void 0:m.lines)||void 0===f?void 0:f.filter((function(e){return!e.isAvailable})))?void 0:r.length){for(o=[],a=function(e){var t=c.checkout.items.find((function(t){return t.variant.id===e.variantId}));t&&o.push({item:t,stockCount:e.stockCount})},c=this,d=0,u=r;d<u.length;d++)h=u[d],a(h);throw{type:ne.STOCK_ERROR,data:o}}return[2]}}))}))},this.setIsKlarnaPaymentCompleted=function(e){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.isKlarnaPaymentCompleted=e,[2]}))}))},this.setIsLoyaltyPointsVisible=function(e){he.isLoyaltyPointsVisible=e},this.removeUnavailableItems=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:t=0,s=e,i.label=1;case 1:return t<s.length?(n=s[t],[4,q.getInstance().cartStore.changeItemQuantity(n.item,n.stockCount<0?0:n.stockCount)]):[3,4];case 2:i.sent(),i.label=3;case 3:return t++,[3,1];case 4:return[2]}}))}))},this.getShippingCountries=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,j.getAvailableShippingCountries({salesChannelId:Q.getSalesChannelId()})];case 1:return e=t.sent(),this.shippingCountryIds=e.data,[2]}}))}))},this.getStockLocations=function(){return t(he,void 0,void 0,(function(){var e,t;return i(this,(function(i){switch(i.label){case 0:return Q.getPickupStockLocationIds()?[4,j.listStockLocation({id:{in:Q.getPickupStockLocationIds()}})]:[3,2];case 1:if(!(e=i.sent()).isSuccess||!(null===(t=e.data)||void 0===t?void 0:t.length))return this.error={type:ne.API_ERROR,data:e.firstErrorMessage},[2];this.stockLocations=e.data,i.label=2;case 2:return[2]}}))}))},this.getAvailableStockLocations=function(){return t(he,void 0,void 0,(function(){var e,t,s,n=this;return i(this,(function(i){switch(i.label){case 0:return Q.getPickupStockLocationIds()?(e=this.checkout.items.map((function(e){return{quantity:e.quantity,variantId:e.variant.id,productId:e.variant.productId}})),[4,j.getAvailableStockLocations({lines:e.map((function(e){return new B(e)})),stockLocationIdList:Q.getPickupStockLocationIds(),cartId:this.checkout.id})]):[3,2];case 1:if(!(t=i.sent()).isSuccess)return this.error={type:ne.API_ERROR},[2];s=Q.getCurrentRouting(),this.availableStockLocations=(t.data||[]).filter((function(e){var t,i,r,o;return(null===(i=null===(t=e.address)||void 0===t?void 0:t.country)||void 0===i?void 0:i.id)&&e.address.country.iso2&&(null===(r=n.shippingCountryIds)||void 0===r?void 0:r.includes(e.address.country.id))&&(!(null===(o=null==s?void 0:s.countryCodes)||void 0===o?void 0:o.length)||s.countryCodes.includes(e.address.country.iso2))})),i.label=2;case 2:return[2]}}))}))},this.checkShippingCountries=function(){var e;(null===(e=he.shippingCountryIds)||void 0===e?void 0:e.length)||(he.error={type:ne.NO_SHIPPING_ERROR})},this.onDeliveryMethodChange=function(e){var t;he.deliveryMethod!==e&&("address"===e&&(he.checkout.stockLocationId=null,(null===(t=he.customerAddresses)||void 0===t?void 0:t.length)?he.onSelectedShippingAddressIdChange(he.customerAddresses[0].id||"-1"):(he.checkout.shippingAddress=new J,he.checkout.shippingAddress.countrySettings=he.countrySettings,he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones)),he.deliveryMethod=e,he.isErrorsVisible=!1)},this.initialStockCheck=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,this.checkStocks()];case 1:return t.sent(),[3,3];case 2:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),[3,3];case 3:return[2]}}))}))},this.getStoreCreditBalance=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,j.getStoreCreditBalance()];case 1:return e=t.sent(),this.storeCreditBalance=e.data,[2]}}))}))},this.getLoyaltyCustomerInfo=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,H({cartId:this.checkout.id})];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltyCustomerInfo=e.data),[2]}}))}))},this.listSpendingMethodsByCartId=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,Y({cartId:this.checkout.id})];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltySpendingMethods=e.data.filter((function(e){return e.isAvailable})),this.loyaltySpendingMethodsAll=e.data),[2]}}))}))},this.listEarningMethods=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,Z()];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltyEarningMethod=e.data.find((function(e){return"ORDER_CREATE"===e.methodType&&e.pointEarningType===K.DYNAMIC_ORDER_AMOUNT}))),[2]}}))}))},this.listPaymentGateways=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,o,a,c,d,u,l,h,p,m,f,g,y,v=this;return i(this,(function(i){switch(i.label){case 0:return e="local"===process.env.NEXT_PUBLIC_ENV,t=Q.getPaymentGateways().map((function(e){return e.id})),[4,j.listPaymentGateway({cartId:this.checkout.id,id:e?void 0:{in:t},locale:Q.getCurrentLocale(),transactionAmount:this.checkout.totalFinalPrice})];case 1:return(s=i.sent()).isSuccess?(null===(m=s.data)||void 0===m?void 0:m.length)||this.isFree?(this.error=void 0,n=null===(f=s.data)||void 0===f?void 0:f.some((function(e){return"IKAS_WALLET"===e.code})),this.isMinTransactionError=n&&this.finalPrice<200&&!this.isDigitalOnly,this.isMinTransactionError?[2]:(o=s.data||[],this.step===se.PAYMENT&&(o=o.filter((function(e){var t;return!(null===(t=e.supportedCurrencies)||void 0===t?void 0:t.length)||e.supportedCurrencies.includes(v.checkout.currencyCode)})),(a=null===(g=this.checkout.shippingAddress)||void 0===g?void 0:g.country)&&a.iso2&&(o=o.filter((function(e){var t;return!(null===(t=e.availableCountries)||void 0===t?void 0:t.length)||e.availableCountries.includes(a.iso2||"")}))),c=null===(y=this.checkout.billingAddress)||void 0===y?void 0:y.country,!a&&c&&c.iso2&&(o=o.filter((function(e){var t;return!(null===(t=e.availableCountries)||void 0===t?void 0:t.length)||e.availableCountries.includes(c.iso2||"")})))),d=[],r(Q.getPaymentGateways(),"order").forEach((function(e){var t=null==o?void 0:o.find((function(t){return t.id===e.id}));t&&d.push(t)})),this.paymentGateways=e?o:d,u=this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code})),this.checkout.selectedPaymentGateway&&this.paymentGateways.some((function(e){var t;return e.id===(null===(t=v.checkout.selectedPaymentGateway)||void 0===t?void 0:t.id)}))?[3,2]:(this.setPaymentGateway(-1!==u?u:0),[3,4]))):(this.error={type:ne.NO_SHIPPING_ERROR},[2]):(this.error={type:ne.API_ERROR,data:s.firstErrorMessage},[2]);case 2:return this.step!==se.PAYMENT?[3,4]:[4,this.updatePaymentGateway(this.checkout.selectedPaymentGateway)];case 3:i.sent(),i.label=4;case 4:return this.step===se.PAYMENT&&(l=o.find((function(e){return!!e.masterPassClientId})))&&(this.checkout.masterPassPaymentGateway=l,(h=document.createElement("script")).id=D,h.src=x,h.onload=function(){v.mpVM.checkMasterPass({checkout:v.checkout,store:q.getInstance()})},document.head.appendChild(h)),this.isMilesSmilesActive()?[4,z()]:[3,6];case 5:if(!(p=i.sent()).isSuccess&&["UNAUTHORIZED","MILES_SMILES_LOGIN_REQUIRED"].some((function(e){return p.errorCodes.includes(e)})))return this.isMilesSmilesLoginRequired=!0,[2];p.isSuccess&&p.data&&(this.milesSmilesDetails=p.data),i.label=6;case 6:return[2]}}))}))},this.getMilesSmilesLoginRedirectUrl=function(){var e=he.getRoutingPath(),t="".concat(e,"/checkout?id=").concat(he.checkout.id,"&step=payment");return"".concat(e,"/account/login?redirect=").concat(t,"&ms_login_required=true")},this.retrieveInstallmentInfo=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:return[4,j.retrieveInstallmentInfo(e)];case 1:return t=i.sent(),s=t.data,null===(n=null==s?void 0:s.installmentPrices)||void 0===n||n.sort((function(e,t){return(e.installmentCount||-1)>(t.installmentCount||-1)?1:-1})),this.installmentInfo=s,[2]}}))}))},this.createCustomer=function(){var t;he.store.customerStore.customer?(null===(t=he.customerAddresses)||void 0===t||t.forEach((function(e){e.checkoutSettings=he.checkoutSettings,e.shippingZones=he.shippingZones})),he.checkout.customer=new w(e(e({},he.store.customerStore.customer),{notificationsAccepted:he.store.customerStore.customer.subscriptionStatus===p.SUBSCRIBED}))):he.checkout.customer=new w(he.checkout.customer||{})},this.setCheckoutShippingAddressSettings=function(){he.checkout.shippingAddress&&(he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones,he.checkout.shippingAddress.countrySettings=he.countrySettings,he.checkout.shippingAddress.getValidatedCustomerAddress())},this.setCheckoutBillingAddressSettings=function(){he.checkout.billingAddress&&(he.checkout.billingAddress.checkoutSettings=he.checkoutSettings,he.checkout.billingAddress.shippingZones=he.shippingZones,he.checkout.billingAddress.countrySettings=he.countrySettings,he.checkout.billingAddress.getValidatedCustomerAddress())},this.createShippingAddress=function(){if(!he.isDigitalOnly)if(he.isInStoreDelivery)he.setCheckoutShippingAddressSettings();else if(he.checkout.shippingAddress){if(he.store.customerStore.customer){var e=null==(t=he.customerAddresses)?void 0:t.find((function(e){var t;return e.id===(null===(t=he.checkout.shippingAddress)||void 0===t?void 0:t.id)}));if(e)return he.onSelectedShippingAddressIdChange(e.id||"-1"),void he.setCheckoutShippingAddressSettings()}he.checkout.shippingAddress=new J(n(he.checkout.shippingAddress)||{}),he.setCheckoutShippingAddressSettings()}else if(he.store.customerStore.customer){var t=he.customerAddresses;he.onSelectedShippingAddressIdChange((null==t?void 0:t.length)?t[0].id:"-1")}else he.onSelectedShippingAddressIdChange("-1")},this.createBillingAddress=function(){if("undefined"!=typeof localStorage)if(he.useDifferentAddress=!!localStorage.getItem("sAddr"),he.checkout.billingAddress){if(he.store.customerStore.customer){var e=null==(t=he.customerAddresses)?void 0:t.find((function(e){var t;return e.id===(null===(t=he.checkout.billingAddress)||void 0===t?void 0:t.id)}));if(e)return he.onSelectedBillingAddressIdChange(e.id||"-1"),void he.setCheckoutBillingAddressSettings()}he.checkout.billingAddress=new J(n(he.checkout.billingAddress)||{}),he.setCheckoutBillingAddressSettings()}else if(he.store.customerStore.customer){var t=he.customerAddresses;he.onSelectedBillingAddressIdChange((null==t?void 0:t.length)?t[0].id:"-1"),(null==t?void 0:t.length)||he.useDifferentAddress||!he.checkout.shippingAddress||he.isInStoreDelivery||(he.checkout.billingAddress=new J(n(he.checkout.shippingAddress)),he.setCheckoutBillingAddressSettings())}else he.onSelectedBillingAddressIdChange("-1"),he.useDifferentAddress||!he.checkout.shippingAddress||he.isInStoreDelivery||(he.checkout.billingAddress=new J(n(he.checkout.shippingAddress)),he.setCheckoutBillingAddressSettings())},this.onShippingMethodChange=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return this.isChangingShippingMethod?[2]:(this.isChangingShippingMethod=!0,this.checkout.shippingSettingsId=e.shippingSettingsId,this.checkout.shippingZoneRateId=e.shippingZoneRateId,[4,this.saveCart()]);case 1:return(t=i.sent())&&(this.checkout=new k(t,this.countrySettings)),this.checkout.shippingAddress&&(this.checkout.shippingAddress.checkoutSettings=this.checkoutSettings,this.checkout.shippingAddress.shippingZones=this.shippingZones),this.isChangingShippingMethod=!1,[2]}}))}))},this.onStockLocationChange=function(e){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.checkout.stockLocationId=e.id,[2]}))}))},this.onCouponCodeApply=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a,c;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,8,,9]),[4,L.saveCartCouponCode({cartId:this.checkout.id,couponCode:this.checkout.couponCode||null})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(c=null===(a=this.cardData)||void 0===a?void 0:a.cardNumber)||void 0===c?void 0:c.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,7];case 2:i.sent(),i.label=3;case 3:return n?(o=this.checkout,this.checkout=new k(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT||this.checkout.totalFinalPrice===o.totalFinalPrice&&!this.checkout.giftCardLines?[3,5]:[4,this.listPaymentGateways()]):[3,7];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:i.sent(),this.isCampaignOfferLoaded=!0,s?X.addCouponCode(n):X.removeCouponCode(n),i.label=7;case 7:return t.isSuccess||(this.couponError=t.errorCodes[0]),[3,9];case 8:return i.sent(),[3,9];case 9:return[2]}}))}))},this.removeGiftCardLine=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,8,,9]),[4,L.removeGiftCardFromCart({cartId:this.checkout.id,giftCardId:s})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(a=null===(o=this.cardData)||void 0===o?void 0:o.cardNumber)||void 0===a?void 0:a.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,7];case 2:i.sent(),i.label=3;case 3:return n?(this.checkout,this.checkout=new k(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT?[3,5]:[4,this.listPaymentGateways()]):[3,7];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:i.sent(),this.isCampaignOfferLoaded=!0,i.label=7;case 7:return[3,9];case 8:return i.sent(),[3,9];case 9:return[2]}}))}))},this.removeLoyaltyPointsFromCart=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,10,,11]),[4,L.removeLoyaltyPointsFromCart({cartId:this.checkout.id,loyaltySpendingMethodId:s})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(a=null===(o=this.cardData)||void 0===o?void 0:o.cardNumber)||void 0===a?void 0:a.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,9];case 2:i.sent(),i.label=3;case 3:return n?(this.checkout,this.checkout=new k(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT?[3,5]:[4,this.listPaymentGateways()]):[3,9];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:return i.sent(),this.isCampaignOfferLoaded=!0,X.removeLoyaltyPoints(n),[4,this.getLoyaltyCustomerInfo()];case 7:return i.sent(),[4,this.listSpendingMethodsByCartId()];case 8:i.sent(),i.label=9;case 9:return[3,11];case 10:return i.sent(),[3,11];case 11:return[2]}}))}))},this.getAvailableShippingZones=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,$.getAvailableShippingZones({salesChannelId:Q.getSalesChannelId()})];case 1:return e=t.sent(),this.shippingZones=e.data||null,[3,3];case 2:return t.sent(),[3,3];case 3:return[2]}}))}))},this.onSelectedShippingAddressIdChange=function(e){var t;if(he.selectedShippingAddressId=e,"-1"===e)he.checkout.shippingAddress=new J,he.checkout.shippingAddress.countrySettings=he.countrySettings;else{var i=null===(t=he.customerAddresses)||void 0===t?void 0:t.find((function(t){return t.id===e}));i&&(he.checkout.shippingAddress=new J(i),he.checkout.shippingAddress.countrySettings=he.countrySettings)}he.checkout.shippingAddress&&(he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones)},this.onSelectedBillingAddressIdChange=function(e){var t;if(he.selectedBillingAddressId=e,"-1"===e)he.checkout.billingAddress=new J,he.checkout.billingAddress.countrySettings=he.countrySettings;else{var i=null===(t=he.customerAddresses)||void 0===t?void 0:t.find((function(t){return t.id===e}));i&&(he.checkout.billingAddress=new J(i),he.checkout.billingAddress.countrySettings=he.countrySettings)}he.checkout.billingAddress&&(he.checkout.billingAddress.checkoutSettings=he.checkoutSettings,he.checkout.billingAddress.shippingZones=he.shippingZones)},this.onTermsAndConditionsCheckedChange=function(e){he.isTermsAndConditionsChecked=e,he.isIyzico&&(he.showIyzicoContainer=e)},this.onCardNumberChange=function(e){if(he.cardData){var t=(e||"").replace(/\D/g,""),i=he.previousRawValue,s=t.slice(0,8),n=he.previousBin;if(!(t.length>16)){var r=i.length<8&&t.length>=8,o=8===s.length&&s!==n;(r||o)&&8===s.length&&(he.getRetrieveInstallmentInfo(t),he.previousBin=s),t.length<8&&i.length>=8&&(he.cardData.installmentCount=1,he.installmentInfo=void 0,he.previousBin=null),he.isAmexCard(t)?he.cardData.cardNumber=function(e){var t=[],i=e.slice(0,4),s=e.slice(4,10),n=e.slice(10,15);i&&t.push(i);s&&t.push(s);n&&t.push(n);return t}(t).join(" "):he.cardData.cardNumber=ue(t,4).join(" "),he.previousRawValue=t}}},this.getRetrieveInstallmentInfo=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:e.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:this.checkout.totalFinalPrice,currencyCode:this.checkout.currencyCode}})];case 1:return i.sent(),(null===(t=this.cardData)||void 0===t?void 0:t.cardNumber)&&this.onCardNumberChange(this.cardData.cardNumber),[2]}}))}))},this.onCardHolderNameChange=function(e){he.cardData&&(he.cardData.cardHolderName=e)},this.onExpirationDateChange=function(e){var t;if(he.cardData&&(!(e.length>he.cardData.expirationDate.length)||le(e))){if(0===(null===(t=he.cardData.expirationDate)||void 0===t?void 0:t.length)){var i=e.replace(".","/").split("/");if(2===i.length){var s=i[0].trim(),n=i[1].trim();if(4===s.length&&2===n.length){var r=parseInt(s.slice(2)),o=parseInt(n);if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}if(2===s.length&&4===n.length){o=parseInt(s),r=parseInt(n.slice(2));if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}if(2===s.length&&2===n.length){var a=parseInt(s),c=parseInt(n);o=a<=12?a:c,r=c>12?c:a;if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}}}var d=e.split(" / ").join("");d.length>4||(he.cardData.expirationDate=ue(d,2).join(" / "))}},this.onCvcChange=function(e){if(he.cardData&&(!(e.length>he.cardData.cvv.length)||le(e))){if(he.isAmexCard()){if(e.length>4)return}else if(e.length>3)return;he.cardData.cvv=e}},this.saveAddress=function(s){return t(he,void 0,void 0,(function(){var t,r,o,a,c,d,u,l,h,p,m,f,g=this;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,3,,4]),this.shouldSaveAddress&&this.store.customerStore.customer?(t="shipping"===s?this.checkout.shippingAddress:this.checkout.billingAddress,(null===(h=this.customerAddresses)||void 0===h?void 0:h.find((function(e){return e.id===(null==t?void 0:t.id)})))?[2]:(r=null===(p=this.customerAddresses)||void 0===p?void 0:p.map((function(e){return e.id})),o=new I(e(e({},t),{title:this.addressTitle||this.t("checkout-page:newAddress")})),(a=n(this.store.customerStore.customer)).addresses||(a.addresses=[]),a.addresses.push(o),[4,this.store.customerStore.saveCustomer(a)])):[3,2];case 1:i.sent(),null===(m=this.customerAddresses)||void 0===m||m.forEach((function(e){e.checkoutSettings=g.checkoutSettings,e.shippingZones=g.shippingZones})),c=null===(f=this.customerAddresses)||void 0===f?void 0:f.map((function(e){return e.id})),d=null==c?void 0:c.filter((function(e){return!(null==r?void 0:r.includes(e))})),u=(null==d?void 0:d.length)?d[0]:void 0,"shipping"===s?(this.checkout.shippingAddress.id=u||"",this.selectedShippingAddressId=u||"-1"):(this.checkout.billingAddress.id=u||"",this.selectedBillingAddressId=u||"-1"),i.label=2;case 2:return[3,4];case 3:return l=i.sent(),console.error(l),[3,4];case 4:return[2]}}))}))},this.getRoutingPath=function(){var e=Q.getCurrentRouting();return(null==e?void 0:e.path)?"/".concat(e.path):""},this.getGoToCartHref=function(){var e=he.getRoutingPath();return"".concat(e,"/cart")},this.getBackToShoppingHref=function(){var e=he.getRoutingPath();return"".concat(e,"/")},this.getGoToLoginHref=function(){var e=he.getRoutingPath();return"".concat(e)+"/account/login?redirect="+encodeURIComponent(he.checkoutUrl)},this.onHandleBillingAddressOnShippingStep=function(){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.isShowBillingAddressOnShippingStep&&!this.useDifferentAddress&&("address"===this.deliveryMethod&&this.checkout.shippingAddress?this.checkout.billingAddress=new J(e({},this.checkout.shippingAddress)):this.checkout.billingAddress=new J(e({},this.checkout.billingAddress))),[2]}))}))},this.onProceedToShippingClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return this.isShowBillingAddressOnShippingStep?[4,this.onHandleBillingAddressOnShippingStep()]:[3,2];case 1:t.sent(),t.label=2;case 2:if("address"===this.deliveryMethod){if(!this.canProceedToShipping)return this.isErrorsVisible=!0,[2]}else if(!this.canProceedToInStoreDelivery)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=3;case 3:return t.trys.push([3,10,,11]),this.isStepLoading=!0,"address"!==this.deliveryMethod||this.isShowBillingAddressOnShippingStep?[3,5]:[4,this.saveAddress("shipping")];case 4:t.sent(),t.label=5;case 5:return this.isShowBillingAddressOnShippingStep?[4,this.saveAddress("billing")]:[3,7];case 6:t.sent(),t.label=7;case 7:return[4,this.checkStocks()];case 8:return t.sent(),[4,this.saveCart()];case 9:return t.sent(),this.isManualOrderWithShippingLines?[2,this.changeStep(se.PAYMENT)]:("address"===this.deliveryMethod?this.changeStep(se.SHIPPING):this.changeStep(se.PAYMENT),[3,11]);case 10:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,11];case 11:return[2]}}))}))},this.onProceedToDigitalOnlyPaymentClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return this.isShowBillingAddressOnShippingStep?[4,this.onHandleBillingAddressOnShippingStep()]:[3,2];case 1:t.sent(),t.label=2;case 2:if(!this.canProceedToPayment)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=3;case 3:return t.trys.push([3,6,,7]),this.isStepLoading=!0,[4,this.checkStocks()];case 4:return t.sent(),[4,this.saveCart()];case 5:return t.sent(),this.changeStep(se.PAYMENT),[3,7];case 6:return(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,7];case 7:return[2]}}))}))},this.onProceedToPaymentClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:if(!this.canProceedToPayment)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=1;case 1:return t.trys.push([1,4,,5]),this.isStepLoading=!0,[4,this.checkStocks()];case 2:return t.sent(),[4,this.saveCart()];case 3:return t.sent(),this.error=void 0,this.changeStep(se.PAYMENT),[3,5];case 4:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,5];case 5:return[2]}}))}))},this.checkPaypalButtonAvailable=function(){return!!he.canPerformPayment||(he.isErrorsVisible=!0,!1)},this.handlePaymentError=function(e,t){he.error={type:e,data:t}},this.onCompletePaymentClick=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c;return i(this,(function(i){switch(i.label){case 0:return this.canPerformPayment?(this.useDifferentAddress||(this.checkout.billingAddress=this.checkout.shippingAddress),this.isFree||!this.isKlarna?[3,2]:[4,this.saveCart()]):(this.isErrorsVisible=!0,[2]);case 1:return i.sent(),this.setIsKlarnaPaymentCompleted(!0),[2];case 2:return this.isFree||!this.isIyzico?[3,4]:[4,this.saveCart()];case 3:return i.sent(),[2];case 4:if(this.isFree||!this.isHepsiPay)return[3,11];i.label=5;case 5:return i.trys.push([5,9,,10]),window.HepsipaySdk&&(null===(o=this.hepsipayFrameInitResponse)||void 0===o?void 0:o.frameUrl)?(this.isStepLoading=!0,[4,this.saveCart()]):[3,7];case 6:return i.sent(),window.HepsipaySdk.initPayment(),[3,8];case 7:console.error("HepsipaySdk is not available"),i.label=8;case 8:return[3,10];case 9:return i.sent(),this.isStepLoading=!1,[2];case 10:return[2];case 11:return i.trys.push([11,17,,18]),this.isErrorsVisible=!1,this.isStepLoading=!0,[4,this.checkStocks()];case 12:return i.sent(),"address"===this.deliveryMethod&&this.useDifferentAddress?[4,this.saveAddress("billing")]:[3,14];case 13:i.sent(),i.label=14;case 14:return[4,this.saveCart()];case 15:return e=i.sent(),this.checkout.shippingMethod===l.SHIPMENT&&(t=null!==(a=null==e?void 0:e.availableShippingMethods)&&void 0!==a?a:[],s=null!==(c=this.checkout.availableShippingMethods)&&void 0!==c?c:[],!ee(t,s))?(this.changeStep(se.SHIPPING),[2]):!this.isFree&&this.isCustomFlowStripe?((n=document.querySelector("#stripe-form-btn"))&&n.click(),[2]):!this.isFree&&this.isAdyen?(this.adyenDropinElement.submit(),this.adyenDropinElement.isValid||(this.isStepLoading=!1),[2]):!this.isFree&&this.isPayPal?[2]:[4,this.createSaleTransaction()];case 16:return i.sent(),[3,18];case 17:return void 0!==typeof(r=i.sent()).type?this.error=r:this.error={type:ne.UNKNOWN},this.isStepLoading=!1,[3,18];case 18:return[2]}}))}))},this.onCompleteDigitalOnlyPaymentClick=function(){return t(he,void 0,void 0,(function(){var e,t,s;return i(this,(function(i){switch(i.label){case 0:return!this.canProceedToPayment||this.checkoutSettings.showTermsAndConditionsCheckbox&&!this.isTermsAndConditionsChecked?(this.isErrorsVisible=!0,[2]):this.isKlarna?[4,this.saveCart()]:[3,2];case 1:return i.sent(),this.setIsKlarnaPaymentCompleted(!0),[2];case 2:if(this.isFree||!this.isHepsiPay)return[3,9];i.label=3;case 3:return i.trys.push([3,7,,8]),window.HepsipaySdk&&(null===(s=this.hepsipayFrameInitResponse)||void 0===s?void 0:s.frameUrl)?(this.isStepLoading=!0,[4,this.saveCart()]):[3,5];case 4:return i.sent(),window.HepsipaySdk.initPayment(),[3,6];case 5:console.error("HepsipaySdk is not available"),i.label=6;case 6:return[3,8];case 7:return i.sent(),this.isStepLoading=!1,[2];case 8:return[2];case 9:return i.trys.push([9,13,,14]),this.isErrorsVisible=!1,this.isStepLoading=!0,[4,this.checkStocks()];case 10:return i.sent(),[4,this.saveCart()];case 11:return i.sent(),!this.isFree&&this.isCustomFlowStripe?((e=document.querySelector("#stripe-form-btn"))&&e.click(),[2]):!this.isFree&&this.isAdyen?(this.adyenDropinElement.submit(),this.adyenDropinElement.isValid||(this.isStepLoading=!1),[2]):!this.isFree&&this.isPayPal?[2]:[4,this.createSaleTransaction()];case 12:return i.sent(),[3,14];case 13:return(t=i.sent()).type?this.error=t:this.error={type:ne.UNKNOWN},this.isStepLoading=!1,[3,14];case 14:return[2]}}))}))},this.createSaleTransaction=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,l,h,p,m,g,y,v,S,b,k,P,I,C,A,w,O;return i(this,(function(i){switch(i.label){case 0:return t=this.mpVM.selectedCard,n=this.useMilesSmiles?{point:this.milesToRedeem||(null===(h=this.milesSmilesDetails)||void 0===h?void 0:h.availableMiles)||0,source:F.MILES_SMILES}:void 0,!this.isFree&&t&&(null===(p=this.mpVM.selectedCard)||void 0===p?void 0:p.Name)?((r=this.mpVM.phoneNumber({store:this.store,checkout:this.checkout}))&&(e=r),void 0===(null===(m=this.cardData)||void 0===m?void 0:m.installmentCount)?[2]:[4,j.createSaleTransactionWithCart({input:{cartId:this.checkout.id,masterPassDetail:{phoneNumber:e,savedCardName:null===(g=this.mpVM.selectedCard)||void 0===g?void 0:g.Name},paymentGatewayId:null===(y=this.mpVM.selectedCard)||void 0===y?void 0:y.paymentGatewayId,paymentMethodDetail:{cardNumber:this.mpVM.selectedCard.Value1,cardHolderName:this.mpVM.selectedCard.Name,cvv:this.mpVM.selectedCard.Value2,expiredMonth:11,expiredYear:11,installmentCount:this.cardData.installmentCount,threeDSecure:!!(null===(v=this.cardData)||void 0===v?void 0:v.threeDSecure)},metadata:{_fbp:te("_fbp"),_fbc:te("_fbc"),_ga:te("_ga")},reward:n}})]):[3,2];case 1:return s=i.sent(),[3,4];case 2:return this.checkout.selectedPaymentGateway||this.isFree?[4,j.createSaleTransactionWithCart({input:{cartId:this.checkout.id,masterPassDetail:this.isFree?void 0:t&&e?{phoneNumber:e,savedCardName:null===(S=this.mpVM.selectedCard)||void 0===S?void 0:S.Name}:void 0,paymentGatewayId:this.isFree&&!this.isMilesSmilesFullPayment?"9d41af41-4793-4879-a19c-e9a66c929726":null===(b=this.checkout.selectedPaymentGateway)||void 0===b?void 0:b.id,paymentMethodDetail:this.isFree||t?void 0:(null===(k=this.checkout.selectedPaymentGateway)||void 0===k?void 0:k.paymentMethodType)===d.CREDIT_CARD&&(null===(P=this.checkout.selectedPaymentGateway)||void 0===P?void 0:P.type)===u.INTERNAL&&this.cardData?this.cardData.toInput():void 0,metadata:{_fbp:te("_fbp"),_fbc:te("_fbc"),_ga:te("_ga")},reward:n}})]:[2];case 3:s=i.sent(),i.label=4;case 4:return o=null===(I=null==s?void 0:s.data)||void 0===I?void 0:I.transactionStatus,a=o&&[f.SUCCESS,f.AUTHORIZED].includes(o),c=o===f.PENDING,a?[4,this.getSuccessTransaction()]:[3,7];case 5:return i.sent(),[4,this.onCheckoutTransactionSuccess((null===(C=null==s?void 0:s.data)||void 0===C?void 0:C.orderId)||void 0)];case 6:return i.sent(),[3,8];case 7:if(!c||!(null===(A=null==s?void 0:s.data)||void 0===A?void 0:A.returnSlug))throw l=s.firstErrorMessage,"IKAS_WALLET_501"===(null===(O=null===(w=s.data)||void 0===w?void 0:w.error)||void 0===O?void 0:O.code)&&(l=this.t("checkout-page:errorContactStore")),{data:l,type:ne.UNKNOWN};window.location.href=process.env.NEXT_PUBLIC_BASE_URL+s.data.returnSlug,i.label=8;case 8:return[2]}}))}))},this.onCheckoutTransactionSuccess=function(e){return t(he,void 0,void 0,(function(){var t,s;return i(this,(function(i){switch(i.label){case 0:return localStorage.removeItem("sAddr"),(null===(t=this.checkout.customer)||void 0===t?void 0:t.notificationsAccepted)?[4,this.store.customerStore.createEmailSubscription((null===(s=this.checkout.customer)||void 0===s?void 0:s.email)||"")]:[3,2];case 1:i.sent(),i.label=2;case 2:return ie.refreshJourneyId(),this.changeStep(se.SUCCESS,e),[2]}}))}))},this.onBackToInfoClick=function(){he.changeStep(se.INFO)},this.onBackToShippingClick=function(){he.changeStep(se.SHIPPING)},this.setCustomerConsentGranted=function(e){he.checkout.customer&&(he.checkout.customer.notificationsAccepted=e)},this.setUseDifferentAddress=function(t,i){var s;he.useDifferentAddress=t,he.useDifferentAddress?(localStorage.setItem("sAddr","1"),he.checkout.billingAddress=he.checkout.billingAddress||new J,he.checkout.billingAddress.countrySettings=he.countrySettings):(localStorage.removeItem("sAddr"),he.checkout.billingAddress=new J(e({},he.checkout.shippingAddress)),he.store.customerStore.customer&&(null===(s=he.customerAddresses)||void 0===s?void 0:s.length)&&i&&he.isShowBillingAddressOnShippingStep&&he.onSelectedBillingAddressIdChange(he.checkout.billingAddress.id||"-1"))},this.setShouldSaveAddress=function(e){he.shouldSaveAddress=e},this.setAddressTitle=function(e){he.addressTitle=e},this.reInitPaymentMethod=function(){return t(he,void 0,void 0,(function(){return i(this,(function(e){switch(e.label){case 0:return this.checkout.selectedPaymentGateway?this.isCustomFlowStripe?[4,this.createStripePaymentIntent(this.checkout.selectedPaymentGateway)]:[3,2]:[3,10];case 1:e.sent(),e.label=2;case 2:return this.isKlarna&&window.location.reload(),this.isAdyen?[4,this.createAdyenBalancePlatformPaymentSession(this.checkout.selectedPaymentGateway)]:[3,4];case 3:e.sent(),e.label=4;case 4:return this.isPayPal?[4,this.getPayPalClientId(this.checkout.selectedPaymentGateway)]:[3,6];case 5:e.sent(),e.label=6;case 6:return this.isHepsiPay?[4,this.hepsipayFrameInit(this.checkout.selectedPaymentGateway)]:[3,8];case 7:e.sent(),e.label=8;case 8:return this.isIyzico?[4,this.createIyzicoCheckoutForm(this.checkout.selectedPaymentGateway)]:[3,10];case 9:e.sent(),e.label=10;case 10:return[2]}}))}))},this.createStripePaymentIntent=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createStripePaymentIntent({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data?(this.stripeResponse=t.data,this.stripeError=null):this.stripeError={type:ne.API_ERROR,data:t.firstErrorMessage},[2]}}))}))},this.createKlarnaClientToken=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createKlarnaClientToken({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data?(this.klarnaResponse=t.data,this.klarnaError=null):this.klarnaError={type:ne.API_ERROR,data:t.firstErrorMessage},[2]}}))}))},this.createAdyenBalancePlatformPaymentSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createAdyenBalancePlatformPaymentSession({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.adyenResponse=t.data),[2]}}))}))},this.getPayPalClientId=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.getPayPalClientId({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.payPalClientIdResponse=t.data),[2]}}))}))},this.hepsipayFrameInit=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.hepsipayFrameInit({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.hepsipayFrameInitResponse=t.data),[2]}}))}))},this.createIyzicoCheckoutForm=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,3,4]),this.isIyzicoLoading=!0,[4,j.createIyzicoCheckoutForm({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.iyzicoResponse=t.data),[3,4];case 2:return i.sent(),[3,4];case 3:return this.isIyzicoLoading=!1,[7];case 4:return[2]}}))}))},this.createStripeExpressCheckoutSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,3,4]),[4,j.createStripePaymentIntent({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.stripeExpressCheckoutSessionResponse=t.data),[3,4];case 2:return i.sent(),[3,4];case 3:return[7];case 4:return[2]}}))}))},this.updateStripeExpressCheckoutSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:if(!this.stripeExpressCheckoutSessionResponse)return[2,null];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,j.updateStripeExpressCheckoutSession({input:{cartId:this.checkout.id,sessionId:"",transactionId:"",address:e.address||null,shippingSettingsId:e.shippingSettingsId||null,shippingZoneRateId:e.shippingZoneRateId||null}})];case 2:return(t=i.sent()).isSuccess&&t.data?[2,t.data]:[2,null];case 3:return i.sent(),[2,null];case 4:return[2]}}))}))},this.setShowIyzicoContainer=function(e){he.showIyzicoContainer=e},this.setPaymentGateway=function(e){return t(he,void 0,void 0,(function(){var t,s;return i(this,(function(i){switch(i.label){case 0:return this.paymentGateways.length?(t=this.paymentGateways[e],s=!0,this.step!==se.PAYMENT?[3,7]:this.checkout.selectedPaymentGateway?[3,3]:"CUSTOM"!==t.code?[3,2]:[4,this.updatePaymentGateway(t)]):[2];case 1:s=i.sent(),i.label=2;case 2:return[3,7];case 3:return"CUSTOM"!==this.checkout.selectedPaymentGateway.code?[3,5]:[4,this.updatePaymentGateway(t)];case 4:return s=i.sent(),[3,7];case 5:return"CUSTOM"!==t.code?[3,7]:[4,this.updatePaymentGateway(t)];case 6:s=i.sent(),i.label=7;case 7:return s?"STRIPE"!==t.code&&"STRIPE_EU"!==t.code||this.stripeResponse?[3,9]:[4,this.createStripePaymentIntent(t)]:[2];case 8:i.sent(),i.label=9;case 9:return"KLARNA"!==t.code||this.klarnaResponse?[3,11]:[4,this.createKlarnaClientToken(t)];case 10:i.sent(),i.label=11;case 11:return"ADYEN_PLATFORM"!==t.code||this.adyenResponse?[3,13]:[4,this.createAdyenBalancePlatformPaymentSession(t)];case 12:i.sent(),i.label=13;case 13:return"PAYPAL"!==t.code||this.payPalClientIdResponse?[3,15]:[4,this.getPayPalClientId(t)];case 14:i.sent(),i.label=15;case 15:return"HEPSIPAY"!==t.code||this.hepsipayFrameInitResponse?[3,17]:[4,this.hepsipayFrameInit(t)];case 16:i.sent(),i.label=17;case 17:return"IYZICO"!==t.code||this.iyzicoResponse?[3,19]:[4,this.createIyzicoCheckoutForm(t)];case 18:i.sent(),i.label=19;case 19:return this.checkout.selectedPaymentGateway=t,this.step!==se.SUCCESS&&(t.paymentMethodType===d.CREDIT_CARD&&t.type===u.INTERNAL&&(this.cardData=new T,this.previousRawValue="",this.previousBin=null,t.masterPassClientId&&this.mpVM.checkMasterPass({checkout:this.checkout,store:this.store})),this.installmentInfo=void 0),[2]}}))}))},this.updatePaymentGateway=function(s){return t(he,void 0,void 0,(function(){var t,n,r;return i(this,(function(i){switch(i.label){case 0:return this.isPaymentMethodVisible=!1,[4,L.getCartById({id:this.checkout.id,getCompletedCart:!1,paymentGatewayId:s.id,targetPageType:W.CHECKOUT})];case 1:return(t=i.sent()).isSuccess?((n=t.data)&&(r=this.checkout,this.checkout=new k(e(e({},n),{shippingAddress:r.shippingAddress,billingAddress:r.billingAddress,customer:r.customer,selectedPaymentGateway:r.selectedPaymentGateway}),this.countrySettings)),this.isPaymentMethodVisible=!0,[2,!0]):(this.isPaymentMethodVisible=!0,[2,!1])}}))}))},this.setInstallmentCount=function(e){he.cardData&&(he.cardData.installmentCount=e)},this.changeStep=function(e,s){return t(he,void 0,void 0,(function(){return i(this,(function(t){return ae||window.location.replace("".concat(window.location.pathname,"?id=").concat(s||this.checkout.id,"&step=").concat(e)),[2]}))}))},this.logout=function(){return t(he,void 0,void 0,(function(){return i(this,(function(e){switch(e.label){case 0:this.checkout.customer=null,this.store.customerStore.logout(),e.label=1;case 1:return e.trys.push([1,3,,4]),[4,this.saveCart()];case 2:case 3:return e.sent(),[3,4];case 4:return this.createCustomer(),[2]}}))}))},this.setContactModalVisible=function(e){he.isContactModalVisible=e},this.getCampaignOffer=function(s,n){return t(he,void 0,void 0,(function(){var r,o,a=this;return i(this,(function(c){switch(c.label){case 0:return(null==n?void 0:n.length)?(r=n.filter((function(e){var t;return e.status===g.WAITING_FOR_ACTION&&(null===(t=e.campaignOffer)||void 0===t?void 0:t.targetPageTypes.some((function(e){return e===s})))})),o=r.map((function(s){return t(a,void 0,void 0,(function(){var t,n,r,o,a,c,d,u,l;return i(this,(function(i){switch(i.label){case 0:return(t=null===(d=s.campaignOffer)||void 0===d?void 0:d.offers.find((function(e){return e.id===s.campaignOfferProductId})))?(n=[t.productId],[4,_.searchProducts({input:{productIdList:n,priceListId:Q.getPriceListId(),salesChannelId:Q.getSalesChannelId()}})]):[2,Promise.reject()];case 1:return(r=i.sent()).isSuccess&&(null===(l=null===(u=r.data)||void 0===u?void 0:u.data)||void 0===l?void 0:l.length)?(o=r.data.data[0],(a=o.variants.filter((function(e){return e.hasStock&&!(t.excludedVariantIdList||[]).some((function(t){return t===e.id}))})).map((function(i){if(!t.discountAmount)return i;var s=!1;return t.discountType===S.AMOUNT&&(s=!0),new E(e(e({},i),{prices:i.prices.map((function(i){var n=i.finalPrice,r=i.finalPrice-(s?t.discountAmount:i.finalPrice*t.discountAmount/100);return t.applicablePrice===b.SELL_PRICE&&(n=i.sellPrice,r=i.sellPrice-(s?t.discountAmount:i.sellPrice*t.discountAmount/100)),new O(e(e({},i),{sellPrice:n,discountPrice:r}))}))}))}))).length?(c=a.find((function(e){return e.isActive})),[2,{product:new R(e(e({},o),{selectedVariantValues:(c||a[0]).variantValues,variants:a})),offer:t,campaignOffer:s}]):[2,Promise.reject()]):[2,Promise.reject()]}}))}))})),[4,Promise.allSettled(o)]):[2,[]];case 1:return[2,c.sent().filter((function(e){return"fulfilled"===e.status&&e.value})).map((function(e){return e.value}))]}}))}))},this.createCampaignOffer=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return e=this,[4,this.getCampaignOffer(this.step===se.SUCCESS?y.POST_CHECKOUT:y.CHECKOUT,this.checkout.campaignOffers)];case 1:return e.campaignOffers=t.sent(),[2]}}))}))},this.updateCartCampaignOffer=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:return e.accepted?this.isCheckoutLoaded=!1:this.isCampaignOfferLoaded=!1,[4,L.updateCartCampaignOffer({input:e})];case 1:return(t=i.sent()).isSuccess?e.accepted?(this.changeStep(this.step===se.SUCCESS?se.PAYMENT:this.step,null===(s=t.data)||void 0===s?void 0:s.id),[3,4]):[3,2]:[3,4];case 2:return this.checkout.campaignOffers=(null===(n=t.data)||void 0===n?void 0:n.campaignOffers)||[],[4,this.createCampaignOffer()];case 3:i.sent(),this.isCampaignOfferLoaded=!0,i.label=4;case 4:return[2]}}))}))},this.registerCustomer=function(e){return t(he,void 0,void 0,(function(){var t,s,n,r;return i(this,(function(i){switch(i.label){case 0:return this.checkout.customer?(t=this.checkout.customer,s=t.firstName,n=t.lastName,r=t.email,s&&n&&r?[4,M.register({orderId:this.checkout.id,firstName:s,lastName:n,email:r,password:e})]:[3,2]):[3,2];case 1:return[2,i.sent()];case 2:return[2]}}))}))},this.listProductFile=function(){return t(he,void 0,void 0,(function(){var e,t;return i(this,(function(i){switch(i.label){case 0:return(e=this.checkout.orderLineItems.filter((function(e){return!!e.variant.fileId&&e.status!==v.REFUNDED})).map((function(e){return e.variant.fileId}))).length?[4,j.listProductFile({id:{in:e}})]:[3,2];case 1:(t=i.sent()).isSuccess&&(this.productFiles=t.data||[]),i.label=2;case 2:return[2]}}))}))},this.getDigitalProductFileDownloadUrl=function(e){return t(he,void 0,void 0,(function(){var t,s,n,r,o;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,3,,4]),(t=this.checkout.orderLineItems.find((function(t){return t.variant.id===e.variantId})))?[4,j.getDigitalProductFileDownloadUrl({orderId:this.checkout.id,orderLineItemId:t.id})]:[3,2];case 1:s=i.sent(),(n=s.data)&&((r=document.createElement("a")).href=n,r.download=function(e){try{return decodeURIComponent(e.split("/")[e.split("/").length-1])}catch(e){return""}}(e.name),r.click(),r.remove()),i.label=2;case 2:return[3,4];case 3:return o=i.sent(),console.error(o),[3,4];case 4:return[2]}}))}))},this.checkout=o,this.checkoutSettings=c,this.router=h,this.returnPolicy=C,this.privacyPolicy=A,this.termsOfService=V,this.imprint=re,this.shippingPolicy=oe,this.t=ce,this.customizationProps=de,this.mpVM=new G,this.isTermsAndConditionsChecked=this.checkoutSettings.isTermsAndConditionsDefaultChecked||!1,this.countrySettings=new N({currentLocale:Q.getCurrentLocale()}),this.init(),s(this)}return re.prototype.isAmexCard=function(e){var t,i=e||this.previousRawValue;return(null===(t=this.installmentInfo)||void 0===t?void 0:t.cardAssociation)===V.AMERICAN_EXPRESS||oe.test(i)},Object.defineProperty(re.prototype,"merchantSettings",{get:function(){return new A(Q.getMerchantSettings())},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"selectedPaymentGatewayIndex",{get:function(){var e=this;return this.paymentGateways.findIndex((function(t){var i;return t.id===(null===(i=e.checkout.selectedPaymentGateway)||void 0===i?void 0:i.id)}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"selectedInstallmentIndex",{get:function(){var e,t,i=this;return(null===(t=null===(e=this.installmentInfo)||void 0===e?void 0:e.installmentPrices)||void 0===t?void 0:t.findIndex((function(e){var t;return e.installmentCount===(null===(t=i.cardData)||void 0===t?void 0:t.installmentCount)})))||0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"checkoutUrl",{get:function(){return"/checkout?id=".concat(this.checkout.id,"&step=info")},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"customerAddressOptions",{get:function(){var e,t,i={label:this.t("checkout-page:newAddress"),value:"-1"},s=(null===(t=null===(e=q.getInstance().customerStore.customer)||void 0===e?void 0:e.addresses)||void 0===t?void 0:t.map((function(e){return{label:e.title+" - "+e.addressText,value:e.id}})))||[];return[i].concat(s)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"installmentPrice",{get:function(){var e,t,i,s=this;if(this.installmentInfo&&(null===(e=this.cardData)||void 0===e?void 0:e.installmentCount))return null===(i=null===(t=this.installmentInfo.installmentPrices)||void 0===t?void 0:t.find((function(e){var t;return e.installmentCount===(null===(t=s.cardData)||void 0===t?void 0:t.installmentCount)})))||void 0===i?void 0:i.totalPrice},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"giftCardTotalPrice",{get:function(){var e;return(null===(e=this.checkout.giftCardLines)||void 0===e?void 0:e.reduce((function(e,t){return e+t.amount}),0))||0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"installmentExtraPrice",{get:function(){var e;if(this.installmentPrice&&this.checkout.totalFinalPrice){var t=this.checkout.totalFinalPrice;if(this.isOpenEditOrderWithTransaction&&this.openEditOrderTransaction){t=null!==(e=this.checkout.netTotalFinalPrice)&&void 0!==e?e:t;var i=this.openEditOrderTransaction;t=t-((i.chargedAmount||0)+(i.pendingAmount||0))+(i.refundedAmount||0)}else t-=this.giftCardTotalPrice;return this.installmentPrice-t}},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"finalPrice",{get:function(){var e;if(this.step===se.SUCCESS)return this.checkout.totalFinalPrice-this.giftCardTotalPrice;var t=this.checkout.totalFinalPrice;if(this.isOpenEditOrderWithTransaction&&this.openEditOrderTransaction){t=null!==(e=this.checkout.netTotalFinalPrice)&&void 0!==e?e:t;var i=this.openEditOrderTransaction;t=t-((i.chargedAmount||0)+(i.pendingAmount||0))+(i.refundedAmount||0)}else t-=this.giftCardTotalPrice;return this.installmentPrice?this.installmentPrice:t},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasStockError",{get:function(){var e;return(null===(e=this.error)||void 0===e?void 0:e.type)===ne.STOCK_ERROR},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPaymentGatewayHasMasterPass",{get:function(){return-1!==this.selectedPaymentGatewayIndex&&(!!this.paymentGateways.length&&!!this.paymentGateways[this.selectedPaymentGatewayIndex].masterPassClientId)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasQuickRegistration",{get:function(){return this.checkoutSettings.isQuickRegistrationEnabled&&this.checkout.customer&&this.checkout.customer.isGuestCheckout},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToShipping",{get:function(){var e,t,i,s=!!(null===(e=this.checkout.billingAddress)||void 0===e?void 0:e.isValidAddress),n=!!(null===(t=this.checkout.shippingAddress)||void 0===t?void 0:t.isValidAddress);return(this.isDigitalOnly?s:this.isShowBillingAddressOnShippingStep?"address"===this.deliveryMethod&&this.useDifferentAddress?n&&s:s:n)&&(this.checkout.hasCustomer||this.checkout.hasValidCustomerEmail)&&(null===(i=this.error)||void 0===i?void 0:i.type)!==ne.NO_SHIPPING_ERROR},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToInStoreDelivery",{get:function(){var e,t,i;return!!((null===(e=this.checkout.shippingAddress)||void 0===e?void 0:e.firstName)&&(null===(t=this.checkout.shippingAddress)||void 0===t?void 0:t.lastName)&&(null===(i=this.checkout.customer)||void 0===i?void 0:i.email)&&this.checkout.stockLocationId)&&(!this.isShowBillingAddressOnShippingStep||this.canProceedToShipping)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToPayment",{get:function(){return this.canProceedToShipping&&this.isValidShippingSettings},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isValidShippingSettings",{get:function(){var e,t=this;return!!(this.isInStoreDelivery||this.isDigitalOnly||this.isManualOrderWithShippingLines)||this.checkout.shippingSettingsId&&this.checkout.shippingZoneRateId&&(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.some((function(e){return e.shippingSettingsId===t.checkout.shippingSettingsId&&e.shippingZoneRateId===t.checkout.shippingZoneRateId})))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrderWithShippingLines",{get:function(){var e,t;return this.checkout.createdBy===o.ADMIN&&(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.length)&&!(null===(t=this.checkout.availableShippingMethods)||void 0===t?void 0:t.length)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrderWithoutShippingLines",{get:function(){var e,t;return this.checkout.createdBy===o.ADMIN&&!(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.length)&&!(null===(t=this.checkout.availableShippingMethods)||void 0===t?void 0:t.length)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isInStoreDelivery",{get:function(){return!!this.checkout.stockLocationId},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"klarnaPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"KLARNA"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"klarnaPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"KLARNA"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"adyenPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"adyenPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"payPalPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"PAYPAL"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"payPalPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"PAYPAL"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hepsiPayPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"HEPSIPAY"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hepsiPayPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"HEPSIPAY"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"iyzicoPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"IYZICO"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"iyzicoPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"IYZICO"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCustomFlowStripe",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&("STRIPE"===e.code||"STRIPE_EU"===e.code)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isKlarna",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"KLARNA"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isAdyen",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"ADYEN_PLATFORM"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPayPal",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"PAYPAL"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isHepsiPay",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"HEPSIPAY"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isIyzico",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"IYZICO"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isFree",{get:function(){return 0===this.checkout.totalFinalPrice||0===this.finalPrice||this.isMilesSmilesFullPayment},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"milesSmilesRedeemValue",{get:function(){if(!this.useMilesSmiles)return 0;var e=ce[this.checkout.currencyCode];return e?(this.milesToRedeem||0)*e:0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isMilesSmilesFullPayment",{get:function(){return!!this.useMilesSmiles&&(!(this.finalPrice<=0)&&this.milesSmilesRedeemValue>=this.finalPrice)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"store",{get:function(){return q.getInstance()},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementDefult",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.DEFAULT||null===this.checkoutSettings.couponCodeRequirement},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementOpen",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.OPEN},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementInvisible",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.INVISIBLE},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeVisible",{get:function(){return this.isCouponCodeRequirementDefult&&!this.isCouponCodeRequirementInvisible&&!(this.checkout.createdBy===o.UPSELL||this.checkout.createdBy===o.ADMIN)&&!this.isOpenEditOrderWithTransaction},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCorporateInvoiceVisible",{get:function(){return this.checkoutSettings.corporateInvoiceRequirement!==c.INVISIBLE},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isShowBillingAddressOnShippingStep",{get:function(){return this.checkoutSettings.showBillingAddressOnShippingStep},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canPerformPayment",{get:function(){var e,t;if(this.checkoutSettings.showTermsAndConditionsCheckbox&&!this.isTermsAndConditionsChecked)return!1;var i=this.checkout.selectedPaymentGateway,s=!!("in-store"===this.deliveryMethod)||!!this.canProceedToShipping,n=!!(null===(e=this.checkout.billingAddress)||void 0===e?void 0:e.isValidAddress),r=!!this.isFree||(!!this.mpVM.selectedCard||((null==i?void 0:i.paymentMethodType)===d.CREDIT_CARD&&i.type===u.INTERNAL?!!this.isCustomFlowStripe||(!!(this.isKlarna||this.isPayPal||this.isHepsiPay)||(null===(t=this.cardData)||void 0===t?void 0:t.isValid)):!!i));return s&&n&&r},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isDigitalOnly",{get:function(){return this.checkout.shippingMethod===l.DIGITAL_DELIVERY},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"customerAddresses",{get:function(){var t,i,s,n=this,r=null===(t=Q.getCurrentRouting())||void 0===t?void 0:t.countryCodes;return null===(s=null===(i=this.store.customerStore.customer)||void 0===i?void 0:i.addresses)||void 0===s?void 0:s.filter((function(e){var t;return!(null==r?void 0:r.length)||(null===(t=e.country)||void 0===t?void 0:t.iso2)&&r.includes(e.country.iso2)})).map((function(t){var i=new C(e({countrySettings:n.countrySettings},t));return i.checkoutSettings=n.checkoutSettings,i.shippingZones=n.shippingZones,i.getValidatedCustomerAddress(),i}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrder",{get:function(){return this.checkout.createdBy===o.ADMIN},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isUpsellOrder",{get:function(){return this.checkout.createdBy===o.UPSELL},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isOpenEditOrder",{get:function(){return this.checkout.status===h.OPEN&&!!this.checkout.orderNumber},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"stripeExpressPaymentGateway",{get:function(){return this.paymentGateways.find((function(e){return"STRIPE_EU"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isOpenEditOrderWithTransaction",{get:function(){var e,t;return this.checkout.status===h.OPEN&&!!this.checkout.orderNumber&&!!(null===(e=this.openEditOrderTransaction)||void 0===e?void 0:e.chargedAmount)&&(null===(t=this.openEditOrderTransaction)||void 0===t?void 0:t.chargedAmount)>0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isEPayKolayEnabled",{get:function(){var e=Q.getCustom();return!!e&&!!e.isEPayKolayEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPoweredByHidden",{get:function(){var e=Q.getCustom();return!!e&&!!e.hidePoweredBy},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasEmailError",{get:function(){return this.isErrorsVisible&&!this.checkout.hasValidCustomerEmail},enumerable:!1,configurable:!0}),re.prototype.isMilesSmilesActive=function(){return this.paymentGateways.some((function(e){var t;return null===(t=e.enabledRewardSources)||void 0===t?void 0:t.includes(F.MILES_SMILES)}))},re.prototype.setAdyenDropinElement=function(e){this.adyenDropinElement=e},re}();function ue(e,t){return e.match(new RegExp(".{1,"+t+"}","g"))||[]}function le(e){return e&&re.test(e.charAt(e.length-1))}!function(e){e.INFO="info",e.SHIPPING="shipping",e.PAYMENT="payment",e.SUCCESS="success"}(se||(se={})),function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.API_ERROR=1]="API_ERROR",e[e.STOCK_ERROR=2]="STOCK_ERROR",e[e.PAYMENT_ERROR=3]="PAYMENT_ERROR",e[e.NO_SHIPPING_ERROR=4]="NO_SHIPPING_ERROR",e[e.CUSTOMER_LOGIN_REQUIRED_ERROR=5]="CUSTOMER_LOGIN_REQUIRED_ERROR",e[e.CUSTOMER_ACCOUNT_DISABLED_ERROR=6]="CUSTOMER_ACCOUNT_DISABLED_ERROR",e[e.ARGUMENT_VALIDATION_ERROR=7]="ARGUMENT_VALIDATION_ERROR"}(ne||(ne={}));export{se as CheckoutStep,ne as ErrorType,ce as MILES_SMILES_RATE_PER_POINT,de as default};
|
|
1
|
+
import{__assign as e,__awaiter as t,__generator as i}from'./../../ext/tslib/tslib.es6.js';import{makeAutoObservable as s}from"mobx";import n from"lodash/cloneDeep";import r from"lodash/sortBy";import"../../models/data/blog/category/index.js";import"../../models/data/blog/content/index.js";import"../../models/data/blog/meta-data/index.js";import"../../models/data/blog/tag/index.js";import"../../models/data/blog/index.js";import"../../models/data/brand/index.js";import{IkasCartCreatedBy as o,IkasCouponCodeRequirement as a,IkasCorporateInvoiceRequirement as c,IkasPaymentMethodType as d,IkasPaymentGatewayType as u,IkasOrderShippingMethod as l,IkasOrderStatus as h,IkasCustomerEmailSubscriptionStatus as p,IkasOrderPaymentStatus as m,IkasTransactionStatus as f,IkasCartCampaignOfferStatus as g,IkasCampaignOfferTargetPageType as y,IkasOrderLineItemStatus as v,IkasAmountType as S,IkasCampaignOfferProductApplicablePriceEnum as k}from"@ikas/storefront-models";import"../../models/data/campaign-offer/index.js";import"../../models/data/cart/campaign-offer/index.js";import"../../models/data/cart/index.js";import"../../models/data/category/path-item/index.js";import"../../models/data/category/index.js";import{IkasCheckout as b}from"../../models/data/checkout/index.js";import{IkasCheckoutSettings as P}from"../../models/data/checkout-settings/index.js";import"../../models/data/city/index.js";import"../../models/data/country/index.js";import"../../models/data/customer/address/region/index.js";import{IkasCustomerAddress as I}from"../../models/data/customer/address/index.js";import{IkasLocalizedCustomerAddress as C}from"../../models/data/customer/address/ikas-localized-customer-address.js";import"../../models/data/customer/attribute/index.js";import"../../models/data/customer/review/summary/index.js";import"../../models/data/customer/review/index.js";import"../../models/data/customer/index.js";import"../../models/data/customer-form-data-input/index.js";import"../../models/data/district/index.js";import"../../models/data/favorite-product/index.js";import"../../models/data/filter-category/index.js";import"../../models/data/html-meta-data/index.js";import"../../models/data/image/index.js";import{IkasMerchantSettings as A}from"../../models/data/merchant-settings/index.js";import"../../models/data/order/address/region/index.js";import"../../models/data/order/address/index.js";import{IkasOrderCustomer as w}from"../../models/data/order/customer/index.js";import"../../models/data/order/line-item/option/value/index.js";import"../../models/data/order/line-item/variant/value/index.js";import"../../models/data/order/line-item/variant/index.js";import"../../models/data/order/line-item/index.js";import"../../models/data/order/order-transaction-with-prices/index.js";import"../../models/data/order/package/index.js";import"../../models/data/order/transaction/index.js";import"../../models/data/order/index.js";import"../../models/data/payment-gateway/index.js";import"../../models/data/product/attribute-value/index.js";import"../../models/data/product/filter/index.js";import"../../models/data/product/campaign-offer/index.js";import"../../models/data/product/option-set/option/index.js";import"../../models/data/product/option-set/index.js";import"../../models/data/product/stock-location/index.js";import{IkasProductPrice as O}from"../../models/data/product/variant/price/index.js";import{IkasProductVariant as E}from"../../models/data/product/variant/index.js";import"../../models/data/variant-type/index.js";import{IkasProduct as R}from"../../models/data/product/index.js";import"../../models/data/raffle/index.js";import"../../models/data/shipping-zone/state/city/district/region/index.js";import"../../models/data/state/index.js";import"../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../models/data/storefront-popup/index.js";import"../../models/data/theme-json/index.js";import"../../models/data/theme-json/component/index.js";import"../../models/data/theme-json/custom-data/index.js";import"../../models/data/variant-type/variant-value/index.js";import{LocalizedAddressModel as T}from"@ikas/localized-address";import"../../models/ui/blog-list/index.js";import"../../models/ui/blog-category-list/index.js";import"../../models/ui/brand-list/index.js";import"../../models/ui/category-list/index.js";import"../../models/ui/product-list/index.js";import"../../models/ui/product-attribute-detail/index.js";import"../../models/ui/product-attribute-list/index.js";import"../../models/ui/customer-review-list/index.js";import"../../models/ui/customer-review-summary-list/index.js";import"../../models/ui/validator/index.js";import"../../models/ui/validator/rules/index.js";import"../../models/ui/validator/form/login.js";import"../../models/ui/validator/form/address.js";import"../../models/ui/validator/form/ikas-address.js";import"../../models/ui/validator/form/register.js";import"../../models/ui/validator/form/contact-form.js";import"../../models/ui/validator/form/forgot-password.js";import"../../models/ui/validator/form/recover-password.js";import"../../models/ui/validator/form/account-info.js";import"../../models/ui/validator/form/raffle-form.js";import"../../models/ui/validator/form/customer-review.js";import"../../models/ui/raffle-list/index.js";import N from"./components/credit-card-form/model.js";import M from"../../store/customer/api.js";import j from"../../store/checkout/index.js";import L from"../../store/cart/api.js";import G,{MFS_ELEMENT_ID as D,MFS_SCRIPT_URL as x}from"./modelMasterPass.js";import _ from"../../store/product/index.js";import{TransactionCardAssociationEnum as V,RewardSourceEnum as F,SaveCartInput as U,CheckStocksLineInput as B,getLoyaltyCustomerInfo as Y,listSpendingMethodsByCartId as H,LoyaltyProgramPointEarningTypeEnum as K,listEarningMethods as Z,getMilesSmilesDetails as z,CampaignOfferTargetPageTypeEnum as W}from"@ikas/storefront-api";import{IkasBaseStore as q}from"../../store/base.js";import"../../store/customer/index.js";import"../../store/cart/index.js";import{IkasStorefrontConfig as Q}from"@ikas/storefront-config";import{Analytics as X}from"../../analytics/analytics.js";import"../../analytics/head/index.js";import J from"../../models/data/order/address/ikas-localized-order-address.js";import $ from"../../store/location/index.js";import{isEqual as ee,getCookieValue as te}from"../../utils/helper.js";import ie from"../../analytics/ikasV3.js";var se,ne,re=/^\d+$/,oe=/^3[47]/,ae="undefined"==typeof localStorage,ce={TRY:.25,USD:.0065,EUR:.006},de=function(){function re(o,c,h,C,A,V,re,oe,ce,de){var he=this;this.storefront=null,this.isCheckoutLoaded=!1,this.isErrorsVisible=!1,this.isStepLoading=!1,this.isTermsAndConditionsChecked=!1,this.isChangingShippingMethod=!1,this.isContactModalVisible=!1,this.isPaymentMethodVisible=!0,this.step=se.INFO,this.customizationProps=null,this.cardData=null,this.paymentGateways=[],this.useMilesSmiles=!1,this.milesToRedeem=0,this.isMilesSmilesLoginRequired=!1,this.milesSmilesDetails=null,this.productFiles=[],this.installmentInfo=null,this.useDifferentAddress=!1,this.shouldSaveAddress=!0,this.addressTitle="",this.shippingCountryIds=null,this.selectedShippingAddressId="-1",this.selectedBillingAddressId="-1",this.stockLocations=[],this.availableStockLocations=[],this.deliveryMethod="address",this.stripeResponse=null,this.stripeError=null,this.klarnaResponse=null,this.isKlarnaPaymentCompleted=!1,this.klarnaError=null,this.adyenResponse=null,this.payPalClientIdResponse=null,this.paypalOrderResponse=null,this.hepsipayFrameInitResponse=null,this.iyzicoResponse=null,this.isIyzicoLoading=!1,this.showIyzicoContainer=!1,this.tkPayResponse=null,this.isTkPayLoading=!1,this.showTkPayContainer=!1,this.stripeExpressCheckoutSessionResponse=null,this.isStripeExpressCheckoutSessionVisible=!1,this.isCampaignOfferLoaded=!0,this.shippingZones=null,this.policyModalTitle="",this.policyModalText="",this.error=null,this.couponError=null,this.storeCreditBalance=null,this.loyaltyCustomerInfo=null,this.loyaltySpendingMethods=null,this.loyaltySpendingMethodsAll=null,this.loyaltyEarningMethod=null,this.isLoyaltyPointsVisible=!1,this.showTestModal=!1,this.openEditOrderTransaction=null,this.previousRawValue="",this.previousBin=null,this.init=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,this.countrySettings.waitUntilInitialized()];case 1:return t.sent(),[4,q.getInstance().customerStore.waitUntilInitialized()];case 2:return t.sent(),(e=this.isOpenEditOrder||this.checkout.edited)?[4,this.getOpenEditOrderTransaction()]:[3,4];case 3:t.sent(),t.label=4;case 4:return e&&(this.openEditOrderTransaction||this.checkout.edited)||this.createCustomer(),this.createShippingAddress(),this.createBillingAddress(),[4,this.initStep()];case 5:return t.sent(),[2]}}))}))},this.initStep=function(){return t(he,void 0,void 0,(function(){var t,s,n,r,o,c,d;return i(this,(function(i){switch(i.label){case 0:if(Q.getIsEditor())return this.step=se.INFO,this.isCheckoutLoaded=!0,[2];if(t=new URLSearchParams(window.location.search),s=t.get("step"),n=t.get("failed"),r=t.get("error"),s){if(this.step=s,this.step===se.SHIPPING&&!this.canProceedToShipping)return[2,this.changeStep(se.INFO)];if(this.step!==se.PAYMENT||this.canProceedToPayment){if(this.step===se.SUCCESS&&!this.canProceedToPayment)return[2,this.changeStep(se.INFO)];if(![se.INFO,se.SUCCESS,se.SHIPPING,se.PAYMENT].includes(this.step))return[2,this.changeStep(se.INFO)]}else{if(!this.isInStoreDelivery)return this.isValidShippingSettings||this.isManualOrderWithoutShippingLines?[2,this.changeStep(se.INFO)]:[2,this.changeStep(se.SHIPPING)];this.deliveryMethod="in-store"}}return[4,this.createCampaignOffer()];case 1:return i.sent(),this.step!==se.SHIPPING&&this.step!==se.PAYMENT||this.isCouponCodeRequirementInvisible||(this.checkoutSettings=new P(e(e({},this.checkoutSettings),{couponCodeRequirement:a.DEFAULT}))),this.step!==se.INFO?[3,7]:this.isDigitalOnly?[3,4]:[4,this.getAvailableShippingZones()];case 2:return i.sent(),this.createCustomer(),this.createShippingAddress(),this.createBillingAddress(),[4,this.getShippingCountries()];case 3:i.sent(),this.checkShippingCountries(),i.label=4;case 4:return[4,this.getStockLocations()];case 5:return i.sent(),[4,this.getAvailableStockLocations()];case 6:i.sent(),this.isInStoreDelivery&&(this.deliveryMethod="in-store"),i.label=7;case 7:return this.step!==se.SHIPPING||1!==(null===(c=this.checkout.availableShippingMethods)||void 0===c?void 0:c.length)||this.checkoutSettings.isGiftPackageEnabled||(this.step=se.PAYMENT,this.router.replace("/checkout?id=".concat(this.checkout.id,"&step=").concat(this.step),void 0,{shallow:!0})),this.step!==se.SHIPPING||(null===(d=this.checkout.availableShippingMethods)||void 0===d?void 0:d.length)?this.step!==se.SUCCESS||this.checkout.orderPaymentStatus!==m.PAID?[3,9]:[4,this.listProductFile()]:(this.error={type:ne.NO_SHIPPING_ERROR},this.isCheckoutLoaded=!0,[2]);case 8:i.sent(),i.label=9;case 9:return this.step!==se.PAYMENT&&this.step!==se.SUCCESS?[3,15]:[4,this.listPaymentGateways()];case 10:return i.sent(),this.checkout.hasCustomer?[4,this.getStoreCreditBalance()]:[3,12];case 11:i.sent(),i.label=12;case 12:return this.isInStoreDelivery?(this.deliveryMethod="in-store",[4,this.getStockLocations()]):[3,14];case 13:i.sent(),i.label=14;case 14:if(!this.paymentGateways.length&&!this.isFree)return this.error={type:ne.NO_SHIPPING_ERROR},this.isMinTransactionError&&(this.error={type:ne.API_ERROR,data:this.t("checkout-page:minTransactionErrorMessage",{value:200})}),this.isCheckoutLoaded=!0,[2];i.label=15;case 15:return this.step===se.SUCCESS?[3,23]:this.isOpenEditOrder?[3,18]:this.checkout.isComplete?[2,this.changeStep(se.SUCCESS)]:[3,16];case 16:return[4,this.initialStockCheck()];case 17:i.sent(),i.label=18;case 18:return this.checkout.hasCustomer?[4,this.getLoyaltyCustomerInfo()]:[3,22];case 19:return i.sent(),[4,this.listSpendingMethodsByCartId()];case 20:return i.sent(),[4,this.listEarningMethods()];case 21:i.sent(),i.label=22;case 22:return[3,25];case 23:return[4,this.getSuccessTransaction()];case 24:i.sent(),this.successTransaction&&(o=this.successTransaction.paymentGatewayId,this.checkout.selectedPaymentGateway=this.paymentGateways.find((function(e){return e.id===o}))),i.label=25;case 25:return n&&(this.error={type:ne.PAYMENT_ERROR,data:r||null}),this.isCheckoutLoaded=!0,X.checkoutStep(this.checkout,this.step,this.checkoutSettings),[2]}}))}))},this.getOpenEditOrderTransaction=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,M.listOrderTransactionsWithPrices({input:{orderId:this.checkout.id}})];case 1:return(e=t.sent()).isSuccess&&e.data&&e.data.chargedAmount&&(this.openEditOrderTransaction=e.data),[2]}}))}))},this.getSuccessTransaction=function(){return t(he,void 0,void 0,(function(){var e,t,s;return i(this,(function(i){switch(i.label){case 0:return[4,M.listOrderTransactions({orderId:{eq:this.checkout.id}})];case 1:return e=i.sent(),this.successTransactions=e.isSuccess&&(null===(t=e.data)||void 0===t?void 0:t.length)?e.data:[],this.successTransaction=e.isSuccess&&(null===(s=e.data)||void 0===s?void 0:s.length)?e.data[e.data.length-1]:void 0,[2]}}))}))},this.saveCart=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,d,u,l,h,m,f,g,y,v;return i(this,(function(i){switch(i.label){case 0:return e=new U(this.checkout),"in-store"!==this.deliveryMethod?[3,2]:[4,this.inStockDeliveryInputData(e)];case 1:e=i.sent(),i.label=2;case 2:return this.step!==se.INFO&&this.step!==se.SHIPPING&&this.step!==se.PAYMENT||this.isDigitalOnly||(this.isShowBillingAddressOnShippingStep||this.step===se.PAYMENT||(e.billingAddress=null),e.billingAddress&&(this.isShowBillingAddressOnShippingStep&&this.useDifferentAddress||this.useDifferentAddress&&!this.isShowBillingAddressOnShippingStep&&this.checkoutSettings.showCompanyInfoInShippingAddress)&&(e.billingAddress.company=(null===(n=e.shippingAddress)||void 0===n?void 0:n.company)||null,e.billingAddress.taxNumber=(null===(r=e.shippingAddress)||void 0===r?void 0:r.taxNumber)||null,e.billingAddress.taxOffice=(null===(o=e.shippingAddress)||void 0===o?void 0:o.taxOffice)||null)),this.isDigitalOnly&&(e.shippingAddress=null),e.customer&&(this.store.customerStore.customer?e.customer.notificationsAccepted=this.store.customerStore.customer.subscriptionStatus===p.SUBSCRIBED:this.checkout.customer&&(e.customer.notificationsAccepted=this.checkout.customer.notificationsAccepted||!1)),null===(null===(c=null===(a=e.shippingAddress)||void 0===a?void 0:a.city)||void 0===c?void 0:c.code)&&""===(null===(u=null===(d=e.shippingAddress)||void 0===d?void 0:d.city)||void 0===u?void 0:u.name)&&(e.shippingAddress.city.name="-"),null===(null===(h=null===(l=e.billingAddress)||void 0===l?void 0:l.city)||void 0===h?void 0:h.code)&&""===(null===(f=null===(m=e.billingAddress)||void 0===m?void 0:m.city)||void 0===f?void 0:f.name)&&(e.billingAddress.city.name="-"),[4,L.saveCart({input:e})];case 3:if((null==(t=i.sent())?void 0:t.graphQLErrors)&&t.graphQLErrors.length)throw s=t.graphQLErrors[0],"CUSTOMER_LOGIN_REQUIRED"===(null===(g=s.extensions)||void 0===g?void 0:g.code)?{type:ne.CUSTOMER_LOGIN_REQUIRED_ERROR}:"CUSTOMER_ACCOUNT_DISABLED"===(null===(y=s.extensions)||void 0===y?void 0:y.code)?{type:ne.CUSTOMER_ACCOUNT_DISABLED_ERROR}:"ARGUMENT_VALIDATION_ERROR"===(null===(v=s.extensions)||void 0===v?void 0:v.code)?{type:ne.ARGUMENT_VALIDATION_ERROR,data:s.extensions.validationErrors}:{type:ne.API_ERROR,data:t.firstErrorMessage};return[2,t.data]}}))}))},this.inStockDeliveryInputData=function(e){return t(he,void 0,void 0,(function(){var t,s,n=this;return i(this,(function(i){return t=e,(s=this.stockLocations.find((function(e){return e.id===n.checkout.stockLocationId})))&&t.shippingAddress&&s.address&&(t.shippingAddress.country=s.address.country,t.shippingAddress.city=s.address.city,t.shippingAddress.state=s.address.state,t.shippingAddress.district=s.address.district,t.shippingAddress.postalCode=s.address.postalCode,t.shippingAddress.addressLine1=s.address.address||"",t.shippingAddress.addressLine2=null),[2,t]}))}))},this.checkStocks=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,d,u,h,p,m,f;return i(this,(function(i){switch(i.label){case 0:return this.isManualOrder||this.isOpenEditOrderWithTransaction?[2]:(e=this.checkout.stockLocationId&&this.checkout.shippingMethod===l.CLICK_AND_COLLECT?[this.checkout.stockLocationId]:(null===(p=Q.getStockLocationIds())||void 0===p?void 0:p.length)?Q.getStockLocationIds():null,[4,j.checkCartStocks({cartId:this.checkout.id,stockLocationIdList:e})]);case 1:if(!(t=i.sent()).isSuccess)throw s="UPSELL"===this.checkout.createdBy,n=s?this.t("checkout-page:upsellTimeErrorMessage"):t.firstErrorMessage,{type:ne.API_ERROR,data:n};if(null==(r=null===(f=null===(m=t.data)||void 0===m?void 0:m.lines)||void 0===f?void 0:f.filter((function(e){return!e.isAvailable})))?void 0:r.length){for(o=[],a=function(e){var t=c.checkout.items.find((function(t){return t.variant.id===e.variantId}));t&&o.push({item:t,stockCount:e.stockCount})},c=this,d=0,u=r;d<u.length;d++)h=u[d],a(h);throw{type:ne.STOCK_ERROR,data:o}}return[2]}}))}))},this.setIsKlarnaPaymentCompleted=function(e){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.isKlarnaPaymentCompleted=e,[2]}))}))},this.setIsLoyaltyPointsVisible=function(e){he.isLoyaltyPointsVisible=e},this.removeUnavailableItems=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:t=0,s=e,i.label=1;case 1:return t<s.length?(n=s[t],[4,q.getInstance().cartStore.changeItemQuantity(n.item,n.stockCount<0?0:n.stockCount)]):[3,4];case 2:i.sent(),i.label=3;case 3:return t++,[3,1];case 4:return[2]}}))}))},this.getShippingCountries=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,j.getAvailableShippingCountries({salesChannelId:Q.getSalesChannelId()})];case 1:return e=t.sent(),this.shippingCountryIds=e.data,[2]}}))}))},this.getStockLocations=function(){return t(he,void 0,void 0,(function(){var e,t;return i(this,(function(i){switch(i.label){case 0:return Q.getPickupStockLocationIds()?[4,j.listStockLocation({id:{in:Q.getPickupStockLocationIds()}})]:[3,2];case 1:if(!(e=i.sent()).isSuccess||!(null===(t=e.data)||void 0===t?void 0:t.length))return this.error={type:ne.API_ERROR,data:e.firstErrorMessage},[2];this.stockLocations=e.data,i.label=2;case 2:return[2]}}))}))},this.getAvailableStockLocations=function(){return t(he,void 0,void 0,(function(){var e,t,s,n=this;return i(this,(function(i){switch(i.label){case 0:return Q.getPickupStockLocationIds()?(e=this.checkout.items.map((function(e){return{quantity:e.quantity,variantId:e.variant.id,productId:e.variant.productId}})),[4,j.getAvailableStockLocations({lines:e.map((function(e){return new B(e)})),stockLocationIdList:Q.getPickupStockLocationIds(),cartId:this.checkout.id})]):[3,2];case 1:if(!(t=i.sent()).isSuccess)return this.error={type:ne.API_ERROR},[2];s=Q.getCurrentRouting(),this.availableStockLocations=(t.data||[]).filter((function(e){var t,i,r,o;return(null===(i=null===(t=e.address)||void 0===t?void 0:t.country)||void 0===i?void 0:i.id)&&e.address.country.iso2&&(null===(r=n.shippingCountryIds)||void 0===r?void 0:r.includes(e.address.country.id))&&(!(null===(o=null==s?void 0:s.countryCodes)||void 0===o?void 0:o.length)||s.countryCodes.includes(e.address.country.iso2))})),i.label=2;case 2:return[2]}}))}))},this.checkShippingCountries=function(){var e;(null===(e=he.shippingCountryIds)||void 0===e?void 0:e.length)||(he.error={type:ne.NO_SHIPPING_ERROR})},this.onDeliveryMethodChange=function(e){var t;he.deliveryMethod!==e&&("address"===e&&(he.checkout.stockLocationId=null,(null===(t=he.customerAddresses)||void 0===t?void 0:t.length)?he.onSelectedShippingAddressIdChange(he.customerAddresses[0].id||"-1"):(he.checkout.shippingAddress=new J,he.checkout.shippingAddress.countrySettings=he.countrySettings,he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones)),he.deliveryMethod=e,he.isErrorsVisible=!1)},this.initialStockCheck=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,this.checkStocks()];case 1:return t.sent(),[3,3];case 2:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),[3,3];case 3:return[2]}}))}))},this.getStoreCreditBalance=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,j.getStoreCreditBalance()];case 1:return e=t.sent(),this.storeCreditBalance=e.data,[2]}}))}))},this.getLoyaltyCustomerInfo=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,Y({cartId:this.checkout.id})];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltyCustomerInfo=e.data),[2]}}))}))},this.listSpendingMethodsByCartId=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,H({cartId:this.checkout.id})];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltySpendingMethods=e.data.filter((function(e){return e.isAvailable})),this.loyaltySpendingMethodsAll=e.data),[2]}}))}))},this.listEarningMethods=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,Z()];case 1:return(e=t.sent()).isSuccess&&e.data&&(this.loyaltyEarningMethod=e.data.find((function(e){return"ORDER_CREATE"===e.methodType&&e.pointEarningType===K.DYNAMIC_ORDER_AMOUNT}))),[2]}}))}))},this.listPaymentGateways=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,o,a,c,d,u,l,h,p,m,f,g,y,v=this;return i(this,(function(i){switch(i.label){case 0:return e="local"===process.env.NEXT_PUBLIC_ENV,t=Q.getPaymentGateways().map((function(e){return e.id})),[4,j.listPaymentGateway({cartId:this.checkout.id,id:e?void 0:{in:t},locale:Q.getCurrentLocale(),transactionAmount:this.checkout.totalFinalPrice})];case 1:return(s=i.sent()).isSuccess?(null===(m=s.data)||void 0===m?void 0:m.length)||this.isFree?(this.error=void 0,n=null===(f=s.data)||void 0===f?void 0:f.some((function(e){return"IKAS_WALLET"===e.code})),this.isMinTransactionError=n&&this.finalPrice<200&&!this.isDigitalOnly,this.isMinTransactionError?[2]:(o=s.data||[],this.step===se.PAYMENT&&(o=o.filter((function(e){var t;return!(null===(t=e.supportedCurrencies)||void 0===t?void 0:t.length)||e.supportedCurrencies.includes(v.checkout.currencyCode)})),(a=null===(g=this.checkout.shippingAddress)||void 0===g?void 0:g.country)&&a.iso2&&(o=o.filter((function(e){var t;return!(null===(t=e.availableCountries)||void 0===t?void 0:t.length)||e.availableCountries.includes(a.iso2||"")}))),c=null===(y=this.checkout.billingAddress)||void 0===y?void 0:y.country,!a&&c&&c.iso2&&(o=o.filter((function(e){var t;return!(null===(t=e.availableCountries)||void 0===t?void 0:t.length)||e.availableCountries.includes(c.iso2||"")})))),d=[],r(Q.getPaymentGateways(),"order").forEach((function(e){var t=null==o?void 0:o.find((function(t){return t.id===e.id}));t&&d.push(t)})),this.paymentGateways=e?o:d,u=this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code})),this.checkout.selectedPaymentGateway&&this.paymentGateways.some((function(e){var t;return e.id===(null===(t=v.checkout.selectedPaymentGateway)||void 0===t?void 0:t.id)}))?[3,2]:(this.setPaymentGateway(-1!==u?u:0),[3,4]))):(this.error={type:ne.NO_SHIPPING_ERROR},[2]):(this.error={type:ne.API_ERROR,data:s.firstErrorMessage},[2]);case 2:return this.step!==se.PAYMENT?[3,4]:[4,this.updatePaymentGateway(this.checkout.selectedPaymentGateway)];case 3:i.sent(),i.label=4;case 4:return this.step===se.PAYMENT&&(l=o.find((function(e){return!!e.masterPassClientId})))&&(this.checkout.masterPassPaymentGateway=l,(h=document.createElement("script")).id=D,h.src=x,h.onload=function(){v.mpVM.checkMasterPass({checkout:v.checkout,store:q.getInstance()})},document.head.appendChild(h)),this.isMilesSmilesActive()?[4,z()]:[3,6];case 5:if(!(p=i.sent()).isSuccess&&["UNAUTHORIZED","MILES_SMILES_LOGIN_REQUIRED"].some((function(e){return p.errorCodes.includes(e)})))return this.isMilesSmilesLoginRequired=!0,[2];p.isSuccess&&p.data&&(this.milesSmilesDetails=p.data),i.label=6;case 6:return[2]}}))}))},this.getMilesSmilesLoginRedirectUrl=function(){var e=he.getRoutingPath(),t="".concat(e,"/checkout?id=").concat(he.checkout.id,"&step=payment");return"".concat(e,"/account/login?redirect=").concat(t,"&ms_login_required=true")},this.retrieveInstallmentInfo=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:return[4,j.retrieveInstallmentInfo(e)];case 1:return t=i.sent(),s=t.data,null===(n=null==s?void 0:s.installmentPrices)||void 0===n||n.sort((function(e,t){return(e.installmentCount||-1)>(t.installmentCount||-1)?1:-1})),this.installmentInfo=s,[2]}}))}))},this.createCustomer=function(){var t;he.store.customerStore.customer?(null===(t=he.customerAddresses)||void 0===t||t.forEach((function(e){e.checkoutSettings=he.checkoutSettings,e.shippingZones=he.shippingZones})),he.checkout.customer=new w(e(e({},he.store.customerStore.customer),{notificationsAccepted:he.store.customerStore.customer.subscriptionStatus===p.SUBSCRIBED}))):he.checkout.customer=new w(he.checkout.customer||{})},this.setCheckoutShippingAddressSettings=function(){he.checkout.shippingAddress&&(he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones,he.checkout.shippingAddress.countrySettings=he.countrySettings,he.checkout.shippingAddress.getValidatedCustomerAddress())},this.setCheckoutBillingAddressSettings=function(){he.checkout.billingAddress&&(he.checkout.billingAddress.checkoutSettings=he.checkoutSettings,he.checkout.billingAddress.shippingZones=he.shippingZones,he.checkout.billingAddress.countrySettings=he.countrySettings,he.checkout.billingAddress.getValidatedCustomerAddress())},this.createShippingAddress=function(){if(!he.isDigitalOnly)if(he.isInStoreDelivery)he.setCheckoutShippingAddressSettings();else if(he.checkout.shippingAddress){if(he.store.customerStore.customer){var e=null==(t=he.customerAddresses)?void 0:t.find((function(e){var t;return e.id===(null===(t=he.checkout.shippingAddress)||void 0===t?void 0:t.id)}));if(e)return he.onSelectedShippingAddressIdChange(e.id||"-1"),void he.setCheckoutShippingAddressSettings()}he.checkout.shippingAddress=new J(n(he.checkout.shippingAddress)||{}),he.setCheckoutShippingAddressSettings()}else if(he.store.customerStore.customer){var t=he.customerAddresses;he.onSelectedShippingAddressIdChange((null==t?void 0:t.length)?t[0].id:"-1")}else he.onSelectedShippingAddressIdChange("-1")},this.createBillingAddress=function(){if("undefined"!=typeof localStorage)if(he.useDifferentAddress=!!localStorage.getItem("sAddr"),he.checkout.billingAddress){if(he.store.customerStore.customer){var e=null==(t=he.customerAddresses)?void 0:t.find((function(e){var t;return e.id===(null===(t=he.checkout.billingAddress)||void 0===t?void 0:t.id)}));if(e)return he.onSelectedBillingAddressIdChange(e.id||"-1"),void he.setCheckoutBillingAddressSettings()}he.checkout.billingAddress=new J(n(he.checkout.billingAddress)||{}),he.setCheckoutBillingAddressSettings()}else if(he.store.customerStore.customer){var t=he.customerAddresses;he.onSelectedBillingAddressIdChange((null==t?void 0:t.length)?t[0].id:"-1"),(null==t?void 0:t.length)||he.useDifferentAddress||!he.checkout.shippingAddress||he.isInStoreDelivery||(he.checkout.billingAddress=new J(n(he.checkout.shippingAddress)),he.setCheckoutBillingAddressSettings())}else he.onSelectedBillingAddressIdChange("-1"),he.useDifferentAddress||!he.checkout.shippingAddress||he.isInStoreDelivery||(he.checkout.billingAddress=new J(n(he.checkout.shippingAddress)),he.setCheckoutBillingAddressSettings())},this.onShippingMethodChange=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return this.isChangingShippingMethod?[2]:(this.isChangingShippingMethod=!0,this.checkout.shippingSettingsId=e.shippingSettingsId,this.checkout.shippingZoneRateId=e.shippingZoneRateId,[4,this.saveCart()]);case 1:return(t=i.sent())&&(this.checkout=new b(t,this.countrySettings)),this.checkout.shippingAddress&&(this.checkout.shippingAddress.checkoutSettings=this.checkoutSettings,this.checkout.shippingAddress.shippingZones=this.shippingZones),this.isChangingShippingMethod=!1,[2]}}))}))},this.onStockLocationChange=function(e){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.checkout.stockLocationId=e.id,[2]}))}))},this.onCouponCodeApply=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a,c;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,8,,9]),[4,L.saveCartCouponCode({cartId:this.checkout.id,couponCode:this.checkout.couponCode||null})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(c=null===(a=this.cardData)||void 0===a?void 0:a.cardNumber)||void 0===c?void 0:c.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,7];case 2:i.sent(),i.label=3;case 3:return n?(o=this.checkout,this.checkout=new b(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT||this.checkout.totalFinalPrice===o.totalFinalPrice&&!this.checkout.giftCardLines?[3,5]:[4,this.listPaymentGateways()]):[3,7];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:i.sent(),this.isCampaignOfferLoaded=!0,s?X.addCouponCode(n):X.removeCouponCode(n),i.label=7;case 7:return t.isSuccess||(this.couponError=t.errorCodes[0]),[3,9];case 8:return i.sent(),[3,9];case 9:return[2]}}))}))},this.removeGiftCardLine=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,8,,9]),[4,L.removeGiftCardFromCart({cartId:this.checkout.id,giftCardId:s})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(a=null===(o=this.cardData)||void 0===o?void 0:o.cardNumber)||void 0===a?void 0:a.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,7];case 2:i.sent(),i.label=3;case 3:return n?(this.checkout,this.checkout=new b(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT?[3,5]:[4,this.listPaymentGateways()]):[3,7];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:i.sent(),this.isCampaignOfferLoaded=!0,i.label=7;case 7:return[3,9];case 8:return i.sent(),[3,9];case 9:return[2]}}))}))},this.removeLoyaltyPointsFromCart=function(s){return t(he,void 0,void 0,(function(){var t,n,r,o,a;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,10,,11]),[4,L.removeLoyaltyPointsFromCart({cartId:this.checkout.id,loyaltySpendingMethodId:s})];case 1:return(t=i.sent()).isSuccess&&t.data?(n=t.data,r=null===(a=null===(o=this.cardData)||void 0===o?void 0:o.cardNumber)||void 0===a?void 0:a.split(" ").join(""),this.couponError=null,this.step===se.PAYMENT&&(null==r?void 0:r.length)&&r.length>=8&&this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:r.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}}),this.mpVM.selectedCard&&this.mpVM.selectedCard.Value1?[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:this.mpVM.selectedCard.Value1.slice(0,8),paymentGatewayId:this.mpVM.selectedCard.paymentGatewayId,price:n.totalFinalPrice,currencyCode:this.checkout.currencyCode}})]:[3,3]):[3,9];case 2:i.sent(),i.label=3;case 3:return n?(this.checkout,this.checkout=new b(e(e({},n),{shippingAddress:this.checkout.shippingAddress,billingAddress:this.checkout.billingAddress,customer:this.checkout.customer,selectedPaymentGateway:this.checkout.selectedPaymentGateway}),this.countrySettings),this.step!==se.PAYMENT?[3,5]:[4,this.listPaymentGateways()]):[3,9];case 4:i.sent(),i.label=5;case 5:return this.checkout.campaignOffers=n.campaignOffers,this.isCampaignOfferLoaded=!1,[4,this.createCampaignOffer()];case 6:return i.sent(),this.isCampaignOfferLoaded=!0,X.removeLoyaltyPoints(n),[4,this.getLoyaltyCustomerInfo()];case 7:return i.sent(),[4,this.listSpendingMethodsByCartId()];case 8:i.sent(),i.label=9;case 9:return[3,11];case 10:return i.sent(),[3,11];case 11:return[2]}}))}))},this.getAvailableShippingZones=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,$.getAvailableShippingZones({salesChannelId:Q.getSalesChannelId()})];case 1:return e=t.sent(),this.shippingZones=e.data||null,[3,3];case 2:return t.sent(),[3,3];case 3:return[2]}}))}))},this.onSelectedShippingAddressIdChange=function(e){var t;if(he.selectedShippingAddressId=e,"-1"===e)he.checkout.shippingAddress=new J,he.checkout.shippingAddress.countrySettings=he.countrySettings;else{var i=null===(t=he.customerAddresses)||void 0===t?void 0:t.find((function(t){return t.id===e}));i&&(he.checkout.shippingAddress=new J(i),he.checkout.shippingAddress.countrySettings=he.countrySettings)}he.checkout.shippingAddress&&(he.checkout.shippingAddress.checkoutSettings=he.checkoutSettings,he.checkout.shippingAddress.shippingZones=he.shippingZones)},this.onSelectedBillingAddressIdChange=function(e){var t;if(he.selectedBillingAddressId=e,"-1"===e)he.checkout.billingAddress=new J,he.checkout.billingAddress.countrySettings=he.countrySettings;else{var i=null===(t=he.customerAddresses)||void 0===t?void 0:t.find((function(t){return t.id===e}));i&&(he.checkout.billingAddress=new J(i),he.checkout.billingAddress.countrySettings=he.countrySettings)}he.checkout.billingAddress&&(he.checkout.billingAddress.checkoutSettings=he.checkoutSettings,he.checkout.billingAddress.shippingZones=he.shippingZones)},this.onTermsAndConditionsCheckedChange=function(e){he.isTermsAndConditionsChecked=e,he.isIyzico&&(he.showIyzicoContainer=e),he.isTkPay&&(he.showTkPayContainer=e,he.saveCart())},this.onCardNumberChange=function(e){if(he.cardData){var t=(e||"").replace(/\D/g,""),i=he.previousRawValue,s=t.slice(0,8),n=he.previousBin;if(!(t.length>16)){var r=i.length<8&&t.length>=8,o=8===s.length&&s!==n;(r||o)&&8===s.length&&(he.getRetrieveInstallmentInfo(t),he.previousBin=s),t.length<8&&i.length>=8&&(he.cardData.installmentCount=1,he.installmentInfo=void 0,he.previousBin=null),he.isAmexCard(t)?he.cardData.cardNumber=function(e){var t=[],i=e.slice(0,4),s=e.slice(4,10),n=e.slice(10,15);i&&t.push(i);s&&t.push(s);n&&t.push(n);return t}(t).join(" "):he.cardData.cardNumber=ue(t,4).join(" "),he.previousRawValue=t}}},this.getRetrieveInstallmentInfo=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,this.retrieveInstallmentInfo({input:{orderId:this.checkout.id,binNumber:e.slice(0,8),paymentGatewayId:this.checkout.selectedPaymentGateway.id,price:this.checkout.totalFinalPrice,currencyCode:this.checkout.currencyCode}})];case 1:return i.sent(),(null===(t=this.cardData)||void 0===t?void 0:t.cardNumber)&&this.onCardNumberChange(this.cardData.cardNumber),[2]}}))}))},this.onCardHolderNameChange=function(e){he.cardData&&(he.cardData.cardHolderName=e)},this.onExpirationDateChange=function(e){var t;if(he.cardData&&(!(e.length>he.cardData.expirationDate.length)||le(e))){if(0===(null===(t=he.cardData.expirationDate)||void 0===t?void 0:t.length)){var i=e.replace(".","/").split("/");if(2===i.length){var s=i[0].trim(),n=i[1].trim();if(4===s.length&&2===n.length){var r=parseInt(s.slice(2)),o=parseInt(n);if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}if(2===s.length&&4===n.length){o=parseInt(s),r=parseInt(n.slice(2));if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}if(2===s.length&&2===n.length){var a=parseInt(s),c=parseInt(n);o=a<=12?a:c,r=c>12?c:a;if(!isNaN(r)&&!isNaN(o))return void(he.cardData.expirationDate="".concat(o<10?"0"+o:o," / ").concat(r<10?"0"+r:r))}}}var d=e.split(" / ").join("");d.length>4||(he.cardData.expirationDate=ue(d,2).join(" / "))}},this.onCvcChange=function(e){if(he.cardData&&(!(e.length>he.cardData.cvv.length)||le(e))){if(he.isAmexCard()){if(e.length>4)return}else if(e.length>3)return;he.cardData.cvv=e}},this.saveAddress=function(s){return t(he,void 0,void 0,(function(){var t,r,o,a,c,d,u,l,h,p,m,f,g=this;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,3,,4]),this.shouldSaveAddress&&this.store.customerStore.customer?(t="shipping"===s?this.checkout.shippingAddress:this.checkout.billingAddress,(null===(h=this.customerAddresses)||void 0===h?void 0:h.find((function(e){return e.id===(null==t?void 0:t.id)})))?[2]:(r=null===(p=this.customerAddresses)||void 0===p?void 0:p.map((function(e){return e.id})),o=new I(e(e({},t),{title:this.addressTitle||this.t("checkout-page:newAddress")})),(a=n(this.store.customerStore.customer)).addresses||(a.addresses=[]),a.addresses.push(o),[4,this.store.customerStore.saveCustomer(a)])):[3,2];case 1:i.sent(),null===(m=this.customerAddresses)||void 0===m||m.forEach((function(e){e.checkoutSettings=g.checkoutSettings,e.shippingZones=g.shippingZones})),c=null===(f=this.customerAddresses)||void 0===f?void 0:f.map((function(e){return e.id})),d=null==c?void 0:c.filter((function(e){return!(null==r?void 0:r.includes(e))})),u=(null==d?void 0:d.length)?d[0]:void 0,"shipping"===s?(this.checkout.shippingAddress.id=u||"",this.selectedShippingAddressId=u||"-1"):(this.checkout.billingAddress.id=u||"",this.selectedBillingAddressId=u||"-1"),i.label=2;case 2:return[3,4];case 3:return l=i.sent(),console.error(l),[3,4];case 4:return[2]}}))}))},this.getRoutingPath=function(){var e=Q.getCurrentRouting();return(null==e?void 0:e.path)?"/".concat(e.path):""},this.getGoToCartHref=function(){var e=he.getRoutingPath();return"".concat(e,"/cart")},this.getBackToShoppingHref=function(){var e=he.getRoutingPath();return"".concat(e,"/")},this.getGoToLoginHref=function(){var e=he.getRoutingPath();return"".concat(e)+"/account/login?redirect="+encodeURIComponent(he.checkoutUrl)},this.onHandleBillingAddressOnShippingStep=function(){return t(he,void 0,void 0,(function(){return i(this,(function(t){return this.isShowBillingAddressOnShippingStep&&!this.useDifferentAddress&&("address"===this.deliveryMethod&&this.checkout.shippingAddress?this.checkout.billingAddress=new J(e({},this.checkout.shippingAddress)):this.checkout.billingAddress=new J(e({},this.checkout.billingAddress))),[2]}))}))},this.onProceedToShippingClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return this.isShowBillingAddressOnShippingStep?[4,this.onHandleBillingAddressOnShippingStep()]:[3,2];case 1:t.sent(),t.label=2;case 2:if("address"===this.deliveryMethod){if(!this.canProceedToShipping)return this.isErrorsVisible=!0,[2]}else if(!this.canProceedToInStoreDelivery)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=3;case 3:return t.trys.push([3,10,,11]),this.isStepLoading=!0,"address"!==this.deliveryMethod||this.isShowBillingAddressOnShippingStep?[3,5]:[4,this.saveAddress("shipping")];case 4:t.sent(),t.label=5;case 5:return this.isShowBillingAddressOnShippingStep?[4,this.saveAddress("billing")]:[3,7];case 6:t.sent(),t.label=7;case 7:return[4,this.checkStocks()];case 8:return t.sent(),[4,this.saveCart()];case 9:return t.sent(),this.isManualOrderWithShippingLines?[2,this.changeStep(se.PAYMENT)]:("address"===this.deliveryMethod?this.changeStep(se.SHIPPING):this.changeStep(se.PAYMENT),[3,11]);case 10:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,11];case 11:return[2]}}))}))},this.onProceedToDigitalOnlyPaymentClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return this.isShowBillingAddressOnShippingStep?[4,this.onHandleBillingAddressOnShippingStep()]:[3,2];case 1:t.sent(),t.label=2;case 2:if(!this.canProceedToPayment)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=3;case 3:return t.trys.push([3,6,,7]),this.isStepLoading=!0,[4,this.checkStocks()];case 4:return t.sent(),[4,this.saveCart()];case 5:return t.sent(),this.changeStep(se.PAYMENT),[3,7];case 6:return(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,7];case 7:return[2]}}))}))},this.onProceedToPaymentClick=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:if(!this.canProceedToPayment)return this.isErrorsVisible=!0,[2];this.isErrorsVisible=!1,t.label=1;case 1:return t.trys.push([1,4,,5]),this.isStepLoading=!0,[4,this.checkStocks()];case 2:return t.sent(),[4,this.saveCart()];case 3:return t.sent(),this.error=void 0,this.changeStep(se.PAYMENT),[3,5];case 4:return void 0!==typeof(e=t.sent()).type?this.error=e:(console.log(e),this.error={type:ne.UNKNOWN}),this.isStepLoading=!1,[3,5];case 5:return[2]}}))}))},this.checkPaypalButtonAvailable=function(){return!!he.canPerformPayment||(he.isErrorsVisible=!0,!1)},this.handlePaymentError=function(e,t){he.error={type:e,data:t}},this.onCompletePaymentClick=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c;return i(this,(function(i){switch(i.label){case 0:return this.canPerformPayment?(this.useDifferentAddress||(this.checkout.billingAddress=this.checkout.shippingAddress),this.isFree||!this.isKlarna?[3,2]:[4,this.saveCart()]):(this.isErrorsVisible=!0,[2]);case 1:return i.sent(),this.setIsKlarnaPaymentCompleted(!0),[2];case 2:return this.isFree||!this.isIyzico?[3,4]:[4,this.saveCart()];case 3:return i.sent(),[2];case 4:if(this.isFree||!this.isHepsiPay)return[3,11];i.label=5;case 5:return i.trys.push([5,9,,10]),window.HepsipaySdk&&(null===(o=this.hepsipayFrameInitResponse)||void 0===o?void 0:o.frameUrl)?(this.isStepLoading=!0,[4,this.saveCart()]):[3,7];case 6:return i.sent(),window.HepsipaySdk.initPayment(),[3,8];case 7:console.error("HepsipaySdk is not available"),i.label=8;case 8:return[3,10];case 9:return i.sent(),this.isStepLoading=!1,[2];case 10:return[2];case 11:return i.trys.push([11,17,,18]),this.isErrorsVisible=!1,this.isStepLoading=!0,[4,this.checkStocks()];case 12:return i.sent(),"address"===this.deliveryMethod&&this.useDifferentAddress?[4,this.saveAddress("billing")]:[3,14];case 13:i.sent(),i.label=14;case 14:return[4,this.saveCart()];case 15:return e=i.sent(),this.checkout.shippingMethod===l.SHIPMENT&&(t=null!==(a=null==e?void 0:e.availableShippingMethods)&&void 0!==a?a:[],s=null!==(c=this.checkout.availableShippingMethods)&&void 0!==c?c:[],!ee(t,s))?(this.changeStep(se.SHIPPING),[2]):!this.isFree&&this.isCustomFlowStripe?((n=document.querySelector("#stripe-form-btn"))&&n.click(),[2]):!this.isFree&&this.isAdyen?(this.adyenDropinElement.submit(),this.adyenDropinElement.isValid||(this.isStepLoading=!1),[2]):!this.isFree&&this.isPayPal?[2]:[4,this.createSaleTransaction()];case 16:return i.sent(),[3,18];case 17:return void 0!==typeof(r=i.sent()).type?this.error=r:this.error={type:ne.UNKNOWN},this.isStepLoading=!1,[3,18];case 18:return[2]}}))}))},this.onCompleteDigitalOnlyPaymentClick=function(){return t(he,void 0,void 0,(function(){var e,t,s;return i(this,(function(i){switch(i.label){case 0:return!this.canProceedToPayment||this.checkoutSettings.showTermsAndConditionsCheckbox&&!this.isTermsAndConditionsChecked?(this.isErrorsVisible=!0,[2]):this.isKlarna?[4,this.saveCart()]:[3,2];case 1:return i.sent(),this.setIsKlarnaPaymentCompleted(!0),[2];case 2:if(this.isFree||!this.isHepsiPay)return[3,9];i.label=3;case 3:return i.trys.push([3,7,,8]),window.HepsipaySdk&&(null===(s=this.hepsipayFrameInitResponse)||void 0===s?void 0:s.frameUrl)?(this.isStepLoading=!0,[4,this.saveCart()]):[3,5];case 4:return i.sent(),window.HepsipaySdk.initPayment(),[3,6];case 5:console.error("HepsipaySdk is not available"),i.label=6;case 6:return[3,8];case 7:return i.sent(),this.isStepLoading=!1,[2];case 8:return[2];case 9:return i.trys.push([9,13,,14]),this.isErrorsVisible=!1,this.isStepLoading=!0,[4,this.checkStocks()];case 10:return i.sent(),[4,this.saveCart()];case 11:return i.sent(),!this.isFree&&this.isCustomFlowStripe?((e=document.querySelector("#stripe-form-btn"))&&e.click(),[2]):!this.isFree&&this.isAdyen?(this.adyenDropinElement.submit(),this.adyenDropinElement.isValid||(this.isStepLoading=!1),[2]):!this.isFree&&this.isPayPal?[2]:[4,this.createSaleTransaction()];case 12:return i.sent(),[3,14];case 13:return(t=i.sent()).type?this.error=t:this.error={type:ne.UNKNOWN},this.isStepLoading=!1,[3,14];case 14:return[2]}}))}))},this.createSaleTransaction=function(){return t(he,void 0,void 0,(function(){var e,t,s,n,r,o,a,c,l,h,p,m,g,y,v,S,k,b,P,I,C,A,w,O;return i(this,(function(i){switch(i.label){case 0:return t=this.mpVM.selectedCard,n=this.useMilesSmiles?{point:this.milesToRedeem||(null===(h=this.milesSmilesDetails)||void 0===h?void 0:h.availableMiles)||0,source:F.MILES_SMILES}:void 0,!this.isFree&&t&&(null===(p=this.mpVM.selectedCard)||void 0===p?void 0:p.Name)?((r=this.mpVM.phoneNumber({store:this.store,checkout:this.checkout}))&&(e=r),void 0===(null===(m=this.cardData)||void 0===m?void 0:m.installmentCount)?[2]:[4,j.createSaleTransactionWithCart({input:{cartId:this.checkout.id,masterPassDetail:{phoneNumber:e,savedCardName:null===(g=this.mpVM.selectedCard)||void 0===g?void 0:g.Name},paymentGatewayId:null===(y=this.mpVM.selectedCard)||void 0===y?void 0:y.paymentGatewayId,paymentMethodDetail:{cardNumber:this.mpVM.selectedCard.Value1,cardHolderName:this.mpVM.selectedCard.Name,cvv:this.mpVM.selectedCard.Value2,expiredMonth:11,expiredYear:11,installmentCount:this.cardData.installmentCount,threeDSecure:!!(null===(v=this.cardData)||void 0===v?void 0:v.threeDSecure)},metadata:{_fbp:te("_fbp"),_fbc:te("_fbc"),_ga:te("_ga")},reward:n}})]):[3,2];case 1:return s=i.sent(),[3,4];case 2:return this.checkout.selectedPaymentGateway||this.isFree?[4,j.createSaleTransactionWithCart({input:{cartId:this.checkout.id,masterPassDetail:this.isFree?void 0:t&&e?{phoneNumber:e,savedCardName:null===(S=this.mpVM.selectedCard)||void 0===S?void 0:S.Name}:void 0,paymentGatewayId:this.isFree&&!this.isMilesSmilesFullPayment?"9d41af41-4793-4879-a19c-e9a66c929726":null===(k=this.checkout.selectedPaymentGateway)||void 0===k?void 0:k.id,paymentMethodDetail:this.isFree||t?void 0:(null===(b=this.checkout.selectedPaymentGateway)||void 0===b?void 0:b.paymentMethodType)===d.CREDIT_CARD&&(null===(P=this.checkout.selectedPaymentGateway)||void 0===P?void 0:P.type)===u.INTERNAL&&this.cardData?this.cardData.toInput():void 0,metadata:{_fbp:te("_fbp"),_fbc:te("_fbc"),_ga:te("_ga")},reward:n}})]:[2];case 3:s=i.sent(),i.label=4;case 4:return o=null===(I=null==s?void 0:s.data)||void 0===I?void 0:I.transactionStatus,a=o&&[f.SUCCESS,f.AUTHORIZED].includes(o),c=o===f.PENDING,a?[4,this.getSuccessTransaction()]:[3,7];case 5:return i.sent(),[4,this.onCheckoutTransactionSuccess((null===(C=null==s?void 0:s.data)||void 0===C?void 0:C.orderId)||void 0)];case 6:return i.sent(),[3,8];case 7:if(!c||!(null===(A=null==s?void 0:s.data)||void 0===A?void 0:A.returnSlug))throw l=s.firstErrorMessage,"IKAS_WALLET_501"===(null===(O=null===(w=s.data)||void 0===w?void 0:w.error)||void 0===O?void 0:O.code)&&(l=this.t("checkout-page:errorContactStore")),{data:l,type:ne.UNKNOWN};window.location.href=process.env.NEXT_PUBLIC_BASE_URL+s.data.returnSlug,i.label=8;case 8:return[2]}}))}))},this.onCheckoutTransactionSuccess=function(e){return t(he,void 0,void 0,(function(){var t,s;return i(this,(function(i){switch(i.label){case 0:return localStorage.removeItem("sAddr"),(null===(t=this.checkout.customer)||void 0===t?void 0:t.notificationsAccepted)?[4,this.store.customerStore.createEmailSubscription((null===(s=this.checkout.customer)||void 0===s?void 0:s.email)||"")]:[3,2];case 1:i.sent(),i.label=2;case 2:return ie.refreshJourneyId(),this.changeStep(se.SUCCESS,e),[2]}}))}))},this.onBackToInfoClick=function(){he.changeStep(se.INFO)},this.onBackToShippingClick=function(){he.changeStep(se.SHIPPING)},this.setCustomerConsentGranted=function(e){he.checkout.customer&&(he.checkout.customer.notificationsAccepted=e)},this.setUseDifferentAddress=function(t,i){var s;he.useDifferentAddress=t,he.useDifferentAddress?(localStorage.setItem("sAddr","1"),he.checkout.billingAddress=he.checkout.billingAddress||new J,he.checkout.billingAddress.countrySettings=he.countrySettings):(localStorage.removeItem("sAddr"),he.checkout.billingAddress=new J(e({},he.checkout.shippingAddress)),he.store.customerStore.customer&&(null===(s=he.customerAddresses)||void 0===s?void 0:s.length)&&i&&he.isShowBillingAddressOnShippingStep&&he.onSelectedBillingAddressIdChange(he.checkout.billingAddress.id||"-1"))},this.setShouldSaveAddress=function(e){he.shouldSaveAddress=e},this.setAddressTitle=function(e){he.addressTitle=e},this.reInitPaymentMethod=function(){return t(he,void 0,void 0,(function(){return i(this,(function(e){switch(e.label){case 0:return this.checkout.selectedPaymentGateway?this.isCustomFlowStripe?[4,this.createStripePaymentIntent(this.checkout.selectedPaymentGateway)]:[3,2]:[3,12];case 1:e.sent(),e.label=2;case 2:return this.isKlarna&&window.location.reload(),this.isAdyen?[4,this.createAdyenBalancePlatformPaymentSession(this.checkout.selectedPaymentGateway)]:[3,4];case 3:e.sent(),e.label=4;case 4:return this.isPayPal?[4,this.getPayPalClientId(this.checkout.selectedPaymentGateway)]:[3,6];case 5:e.sent(),e.label=6;case 6:return this.isHepsiPay?[4,this.hepsipayFrameInit(this.checkout.selectedPaymentGateway)]:[3,8];case 7:e.sent(),e.label=8;case 8:return this.isIyzico?[4,this.createIyzicoCheckoutForm(this.checkout.selectedPaymentGateway)]:[3,10];case 9:e.sent(),e.label=10;case 10:return this.isTkPay?[4,this.createTkPayCheckoutForm(this.checkout.selectedPaymentGateway)]:[3,12];case 11:e.sent(),e.label=12;case 12:return[2]}}))}))},this.createStripePaymentIntent=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createStripePaymentIntent({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data?(this.stripeResponse=t.data,this.stripeError=null):this.stripeError={type:ne.API_ERROR,data:t.firstErrorMessage},[2]}}))}))},this.createKlarnaClientToken=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createKlarnaClientToken({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data?(this.klarnaResponse=t.data,this.klarnaError=null):this.klarnaError={type:ne.API_ERROR,data:t.firstErrorMessage},[2]}}))}))},this.createAdyenBalancePlatformPaymentSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.createAdyenBalancePlatformPaymentSession({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.adyenResponse=t.data),[2]}}))}))},this.getPayPalClientId=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.getPayPalClientId({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.payPalClientIdResponse=t.data),[2]}}))}))},this.hepsipayFrameInit=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return[4,j.hepsipayFrameInit({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.hepsipayFrameInitResponse=t.data),[2]}}))}))},this.createIyzicoCheckoutForm=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,3,4]),this.isIyzicoLoading=!0,[4,j.createIyzicoCheckoutForm({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.iyzicoResponse=t.data),[3,4];case 2:return i.sent(),[3,4];case 3:return this.isIyzicoLoading=!1,[7];case 4:return[2]}}))}))},this.createTkPayCheckoutForm=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,3,4]),this.isTkPayLoading=!0,[4,j.createTkPayCheckoutForm({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.tkPayResponse=t.data),[3,4];case 2:return i.sent(),[3,4];case 3:return this.isTkPayLoading=!1,[7];case 4:return[2]}}))}))},this.createStripeExpressCheckoutSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,2,3,4]),[4,j.createStripePaymentIntent({input:{cartId:this.checkout.id,paymentGatewayId:e.id||""}})];case 1:return(t=i.sent()).isSuccess&&t.data&&(this.stripeExpressCheckoutSessionResponse=t.data),[3,4];case 2:return i.sent(),[3,4];case 3:return[7];case 4:return[2]}}))}))},this.updateStripeExpressCheckoutSession=function(e){return t(he,void 0,void 0,(function(){var t;return i(this,(function(i){switch(i.label){case 0:if(!this.stripeExpressCheckoutSessionResponse)return[2,null];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,j.updateStripeExpressCheckoutSession({input:{cartId:this.checkout.id,sessionId:"",transactionId:"",address:e.address||null,shippingSettingsId:e.shippingSettingsId||null,shippingZoneRateId:e.shippingZoneRateId||null}})];case 2:return(t=i.sent()).isSuccess&&t.data?[2,t.data]:[2,null];case 3:return i.sent(),[2,null];case 4:return[2]}}))}))},this.setShowIyzicoContainer=function(e){he.showIyzicoContainer=e},this.setShowTkPayContainer=function(e){he.showTkPayContainer=e},this.setPaymentGateway=function(e){return t(he,void 0,void 0,(function(){var t,s,n,r;return i(this,(function(i){switch(i.label){case 0:return this.paymentGateways.length?(t=this.paymentGateways[e],s=!0,this.step!==se.PAYMENT?[3,7]:this.checkout.selectedPaymentGateway?[3,3]:"CUSTOM"!==t.code?[3,2]:[4,this.updatePaymentGateway(t)]):[2];case 1:s=i.sent(),i.label=2;case 2:return[3,7];case 3:return"CUSTOM"!==this.checkout.selectedPaymentGateway.code?[3,5]:[4,this.updatePaymentGateway(t)];case 4:return s=i.sent(),[3,7];case 5:return"CUSTOM"!==t.code?[3,7]:[4,this.updatePaymentGateway(t)];case 6:s=i.sent(),i.label=7;case 7:return s?"STRIPE"!==t.code&&"STRIPE_EU"!==t.code||this.stripeResponse?[3,9]:[4,this.createStripePaymentIntent(t)]:[2];case 8:i.sent(),i.label=9;case 9:return"KLARNA"!==t.code||this.klarnaResponse?[3,11]:[4,this.createKlarnaClientToken(t)];case 10:i.sent(),i.label=11;case 11:return"ADYEN_PLATFORM"!==t.code||this.adyenResponse?[3,13]:[4,this.createAdyenBalancePlatformPaymentSession(t)];case 12:i.sent(),i.label=13;case 13:return"PAYPAL"!==t.code||this.payPalClientIdResponse?[3,15]:[4,this.getPayPalClientId(t)];case 14:i.sent(),i.label=15;case 15:return"HEPSIPAY"!==t.code||this.hepsipayFrameInitResponse?[3,17]:[4,this.hepsipayFrameInit(t)];case 16:i.sent(),i.label=17;case 17:return"IYZICO"!==t.code||this.iyzicoResponse?[3,19]:[4,this.createIyzicoCheckoutForm(t)];case 18:i.sent(),i.label=19;case 19:return"TK_PAY"!==t.code||this.tkPayResponse||"true"!==(null===(r=null===(n=t.settings)||void 0===n?void 0:n.find((function(e){return"tkpay_use_checkout_form"===e.label})))||void 0===r?void 0:r.value)?[3,21]:[4,this.createTkPayCheckoutForm(t)];case 20:i.sent(),i.label=21;case 21:return this.checkout.selectedPaymentGateway=t,this.step!==se.SUCCESS&&(t.paymentMethodType===d.CREDIT_CARD&&t.type===u.INTERNAL&&(this.cardData=new N,this.previousRawValue="",this.previousBin=null,t.masterPassClientId&&this.mpVM.checkMasterPass({checkout:this.checkout,store:this.store})),this.installmentInfo=void 0),[2]}}))}))},this.updatePaymentGateway=function(s){return t(he,void 0,void 0,(function(){var t,n,r;return i(this,(function(i){switch(i.label){case 0:return this.isPaymentMethodVisible=!1,[4,L.getCartById({id:this.checkout.id,getCompletedCart:!1,paymentGatewayId:s.id,targetPageType:W.CHECKOUT})];case 1:return(t=i.sent()).isSuccess?((n=t.data)&&(r=this.checkout,this.checkout=new b(e(e({},n),{shippingAddress:r.shippingAddress,billingAddress:r.billingAddress,customer:r.customer,selectedPaymentGateway:r.selectedPaymentGateway}),this.countrySettings)),this.isPaymentMethodVisible=!0,[2,!0]):(this.isPaymentMethodVisible=!0,[2,!1])}}))}))},this.setInstallmentCount=function(e){he.cardData&&(he.cardData.installmentCount=e)},this.changeStep=function(e,s){return t(he,void 0,void 0,(function(){return i(this,(function(t){return ae||window.location.replace("".concat(window.location.pathname,"?id=").concat(s||this.checkout.id,"&step=").concat(e)),[2]}))}))},this.logout=function(){return t(he,void 0,void 0,(function(){return i(this,(function(e){switch(e.label){case 0:this.checkout.customer=null,this.store.customerStore.logout(),e.label=1;case 1:return e.trys.push([1,3,,4]),[4,this.saveCart()];case 2:case 3:return e.sent(),[3,4];case 4:return this.createCustomer(),[2]}}))}))},this.setContactModalVisible=function(e){he.isContactModalVisible=e},this.getCampaignOffer=function(s,n){return t(he,void 0,void 0,(function(){var r,o,a=this;return i(this,(function(c){switch(c.label){case 0:return(null==n?void 0:n.length)?(r=n.filter((function(e){var t;return e.status===g.WAITING_FOR_ACTION&&(null===(t=e.campaignOffer)||void 0===t?void 0:t.targetPageTypes.some((function(e){return e===s})))})),o=r.map((function(s){return t(a,void 0,void 0,(function(){var t,n,r,o,a,c,d,u,l;return i(this,(function(i){switch(i.label){case 0:return(t=null===(d=s.campaignOffer)||void 0===d?void 0:d.offers.find((function(e){return e.id===s.campaignOfferProductId})))?(n=[t.productId],[4,_.searchProducts({input:{productIdList:n,priceListId:Q.getPriceListId(),salesChannelId:Q.getSalesChannelId()}})]):[2,Promise.reject()];case 1:return(r=i.sent()).isSuccess&&(null===(l=null===(u=r.data)||void 0===u?void 0:u.data)||void 0===l?void 0:l.length)?(o=r.data.data[0],(a=o.variants.filter((function(e){return e.hasStock&&!(t.excludedVariantIdList||[]).some((function(t){return t===e.id}))})).map((function(i){if(!t.discountAmount)return i;var s=!1;return t.discountType===S.AMOUNT&&(s=!0),new E(e(e({},i),{prices:i.prices.map((function(i){var n=i.finalPrice,r=i.finalPrice-(s?t.discountAmount:i.finalPrice*t.discountAmount/100);return t.applicablePrice===k.SELL_PRICE&&(n=i.sellPrice,r=i.sellPrice-(s?t.discountAmount:i.sellPrice*t.discountAmount/100)),new O(e(e({},i),{sellPrice:n,discountPrice:r}))}))}))}))).length?(c=a.find((function(e){return e.isActive})),[2,{product:new R(e(e({},o),{selectedVariantValues:(c||a[0]).variantValues,variants:a})),offer:t,campaignOffer:s}]):[2,Promise.reject()]):[2,Promise.reject()]}}))}))})),[4,Promise.allSettled(o)]):[2,[]];case 1:return[2,c.sent().filter((function(e){return"fulfilled"===e.status&&e.value})).map((function(e){return e.value}))]}}))}))},this.createCampaignOffer=function(){return t(he,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return e=this,[4,this.getCampaignOffer(this.step===se.SUCCESS?y.POST_CHECKOUT:y.CHECKOUT,this.checkout.campaignOffers)];case 1:return e.campaignOffers=t.sent(),[2]}}))}))},this.updateCartCampaignOffer=function(e){return t(he,void 0,void 0,(function(){var t,s,n;return i(this,(function(i){switch(i.label){case 0:return e.accepted?this.isCheckoutLoaded=!1:this.isCampaignOfferLoaded=!1,[4,L.updateCartCampaignOffer({input:e})];case 1:return(t=i.sent()).isSuccess?e.accepted?(this.changeStep(this.step===se.SUCCESS?se.PAYMENT:this.step,null===(s=t.data)||void 0===s?void 0:s.id),[3,4]):[3,2]:[3,4];case 2:return this.checkout.campaignOffers=(null===(n=t.data)||void 0===n?void 0:n.campaignOffers)||[],[4,this.createCampaignOffer()];case 3:i.sent(),this.isCampaignOfferLoaded=!0,i.label=4;case 4:return[2]}}))}))},this.registerCustomer=function(e){return t(he,void 0,void 0,(function(){var t,s,n,r;return i(this,(function(i){switch(i.label){case 0:return this.checkout.customer?(t=this.checkout.customer,s=t.firstName,n=t.lastName,r=t.email,s&&n&&r?[4,M.register({orderId:this.checkout.id,firstName:s,lastName:n,email:r,password:e})]:[3,2]):[3,2];case 1:return[2,i.sent()];case 2:return[2]}}))}))},this.listProductFile=function(){return t(he,void 0,void 0,(function(){var e,t;return i(this,(function(i){switch(i.label){case 0:return(e=this.checkout.orderLineItems.filter((function(e){return!!e.variant.fileId&&e.status!==v.REFUNDED})).map((function(e){return e.variant.fileId}))).length?[4,j.listProductFile({id:{in:e}})]:[3,2];case 1:(t=i.sent()).isSuccess&&(this.productFiles=t.data||[]),i.label=2;case 2:return[2]}}))}))},this.getDigitalProductFileDownloadUrl=function(e){return t(he,void 0,void 0,(function(){var t,s,n,r,o;return i(this,(function(i){switch(i.label){case 0:return i.trys.push([0,3,,4]),(t=this.checkout.orderLineItems.find((function(t){return t.variant.id===e.variantId})))?[4,j.getDigitalProductFileDownloadUrl({orderId:this.checkout.id,orderLineItemId:t.id})]:[3,2];case 1:s=i.sent(),(n=s.data)&&((r=document.createElement("a")).href=n,r.download=function(e){try{return decodeURIComponent(e.split("/")[e.split("/").length-1])}catch(e){return""}}(e.name),r.click(),r.remove()),i.label=2;case 2:return[3,4];case 3:return o=i.sent(),console.error(o),[3,4];case 4:return[2]}}))}))},this.checkout=o,this.checkoutSettings=c,this.router=h,this.returnPolicy=C,this.privacyPolicy=A,this.termsOfService=V,this.imprint=re,this.shippingPolicy=oe,this.t=ce,this.customizationProps=de,this.mpVM=new G,this.isTermsAndConditionsChecked=this.checkoutSettings.isTermsAndConditionsDefaultChecked||!1,this.countrySettings=new T({currentLocale:Q.getCurrentLocale()}),this.init(),s(this)}return re.prototype.isAmexCard=function(e){var t,i=e||this.previousRawValue;return(null===(t=this.installmentInfo)||void 0===t?void 0:t.cardAssociation)===V.AMERICAN_EXPRESS||oe.test(i)},Object.defineProperty(re.prototype,"merchantSettings",{get:function(){return new A(Q.getMerchantSettings())},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"selectedPaymentGatewayIndex",{get:function(){var e=this;return this.paymentGateways.findIndex((function(t){var i;return t.id===(null===(i=e.checkout.selectedPaymentGateway)||void 0===i?void 0:i.id)}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"selectedInstallmentIndex",{get:function(){var e,t,i=this;return(null===(t=null===(e=this.installmentInfo)||void 0===e?void 0:e.installmentPrices)||void 0===t?void 0:t.findIndex((function(e){var t;return e.installmentCount===(null===(t=i.cardData)||void 0===t?void 0:t.installmentCount)})))||0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"checkoutUrl",{get:function(){return"/checkout?id=".concat(this.checkout.id,"&step=info")},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"customerAddressOptions",{get:function(){var e,t,i={label:this.t("checkout-page:newAddress"),value:"-1"},s=(null===(t=null===(e=q.getInstance().customerStore.customer)||void 0===e?void 0:e.addresses)||void 0===t?void 0:t.map((function(e){return{label:e.title+" - "+e.addressText,value:e.id}})))||[];return[i].concat(s)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"installmentPrice",{get:function(){var e,t,i,s=this;if(this.installmentInfo&&(null===(e=this.cardData)||void 0===e?void 0:e.installmentCount))return null===(i=null===(t=this.installmentInfo.installmentPrices)||void 0===t?void 0:t.find((function(e){var t;return e.installmentCount===(null===(t=s.cardData)||void 0===t?void 0:t.installmentCount)})))||void 0===i?void 0:i.totalPrice},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"giftCardTotalPrice",{get:function(){var e;return(null===(e=this.checkout.giftCardLines)||void 0===e?void 0:e.reduce((function(e,t){return e+t.amount}),0))||0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"installmentExtraPrice",{get:function(){var e;if(this.installmentPrice&&this.checkout.totalFinalPrice){var t=this.checkout.totalFinalPrice;if(this.isOpenEditOrderWithTransaction&&this.openEditOrderTransaction){t=null!==(e=this.checkout.netTotalFinalPrice)&&void 0!==e?e:t;var i=this.openEditOrderTransaction;t=t-((i.chargedAmount||0)+(i.pendingAmount||0))+(i.refundedAmount||0)}else t-=this.giftCardTotalPrice;return this.installmentPrice-t}},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"finalPrice",{get:function(){var e;if(this.step===se.SUCCESS)return this.checkout.totalFinalPrice-this.giftCardTotalPrice;var t=this.checkout.totalFinalPrice;if(this.isOpenEditOrderWithTransaction&&this.openEditOrderTransaction){t=null!==(e=this.checkout.netTotalFinalPrice)&&void 0!==e?e:t;var i=this.openEditOrderTransaction;t=t-((i.chargedAmount||0)+(i.pendingAmount||0))+(i.refundedAmount||0)}else t-=this.giftCardTotalPrice;return this.installmentPrice?this.installmentPrice:t},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasStockError",{get:function(){var e;return(null===(e=this.error)||void 0===e?void 0:e.type)===ne.STOCK_ERROR},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPaymentGatewayHasMasterPass",{get:function(){return-1!==this.selectedPaymentGatewayIndex&&(!!this.paymentGateways.length&&!!this.paymentGateways[this.selectedPaymentGatewayIndex].masterPassClientId)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasQuickRegistration",{get:function(){return this.checkoutSettings.isQuickRegistrationEnabled&&this.checkout.customer&&this.checkout.customer.isGuestCheckout},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToShipping",{get:function(){var e,t,i,s=!!(null===(e=this.checkout.billingAddress)||void 0===e?void 0:e.isValidAddress),n=!!(null===(t=this.checkout.shippingAddress)||void 0===t?void 0:t.isValidAddress);return(this.isDigitalOnly?s:this.isShowBillingAddressOnShippingStep?"address"===this.deliveryMethod&&this.useDifferentAddress?n&&s:s:n)&&(this.checkout.hasCustomer||this.checkout.hasValidCustomerEmail)&&(null===(i=this.error)||void 0===i?void 0:i.type)!==ne.NO_SHIPPING_ERROR},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToInStoreDelivery",{get:function(){var e,t,i;return!!((null===(e=this.checkout.shippingAddress)||void 0===e?void 0:e.firstName)&&(null===(t=this.checkout.shippingAddress)||void 0===t?void 0:t.lastName)&&(null===(i=this.checkout.customer)||void 0===i?void 0:i.email)&&this.checkout.stockLocationId)&&(!this.isShowBillingAddressOnShippingStep||this.canProceedToShipping)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canProceedToPayment",{get:function(){return this.canProceedToShipping&&this.isValidShippingSettings},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isValidShippingSettings",{get:function(){var e,t=this;return!!(this.isInStoreDelivery||this.isDigitalOnly||this.isManualOrderWithShippingLines)||this.checkout.shippingSettingsId&&this.checkout.shippingZoneRateId&&(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.some((function(e){return e.shippingSettingsId===t.checkout.shippingSettingsId&&e.shippingZoneRateId===t.checkout.shippingZoneRateId})))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrderWithShippingLines",{get:function(){var e,t;return this.checkout.createdBy===o.ADMIN&&(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.length)&&!(null===(t=this.checkout.availableShippingMethods)||void 0===t?void 0:t.length)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrderWithoutShippingLines",{get:function(){var e,t;return this.checkout.createdBy===o.ADMIN&&!(null===(e=this.checkout.shippingLines)||void 0===e?void 0:e.length)&&!(null===(t=this.checkout.availableShippingMethods)||void 0===t?void 0:t.length)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isInStoreDelivery",{get:function(){return!!this.checkout.stockLocationId},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"klarnaPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"KLARNA"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"klarnaPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"KLARNA"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"adyenPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"adyenPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"ADYEN_PLATFORM"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"payPalPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"PAYPAL"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"payPalPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"PAYPAL"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hepsiPayPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"HEPSIPAY"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hepsiPayPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"HEPSIPAY"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"iyzicoPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"IYZICO"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"iyzicoPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"IYZICO"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"tkPayPaymentGateway",{get:function(){var e=this.paymentGateways.findIndex((function(e){return"TK_PAY"===e.code}));if(-1!==e)return this.paymentGateways[e]},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"tkPayPaymentGatewayIndex",{get:function(){return this.paymentGateways.findIndex((function(e){return"TK_PAY"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCustomFlowStripe",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&("STRIPE"===e.code||"STRIPE_EU"===e.code)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isKlarna",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"KLARNA"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isAdyen",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"ADYEN_PLATFORM"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPayPal",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"PAYPAL"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isHepsiPay",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"HEPSIPAY"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isIyzico",{get:function(){var e=this.checkout.selectedPaymentGateway;return e&&"IYZICO"===e.code},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isTkPay",{get:function(){var e,t,i=this.checkout.selectedPaymentGateway;return i&&"TK_PAY"===i.code&&"true"===(null===(t=null===(e=i.settings)||void 0===e?void 0:e.find((function(e){return"tkpay_use_checkout_form"===e.label})))||void 0===t?void 0:t.value)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isFree",{get:function(){return 0===this.checkout.totalFinalPrice||0===this.finalPrice||this.isMilesSmilesFullPayment},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"milesSmilesRedeemValue",{get:function(){if(!this.useMilesSmiles)return 0;var e=ce[this.checkout.currencyCode];return e?(this.milesToRedeem||0)*e:0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isMilesSmilesFullPayment",{get:function(){return!!this.useMilesSmiles&&(!(this.finalPrice<=0)&&this.milesSmilesRedeemValue>=this.finalPrice)},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"store",{get:function(){return q.getInstance()},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementDefult",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.DEFAULT||null===this.checkoutSettings.couponCodeRequirement},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementOpen",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.OPEN},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeRequirementInvisible",{get:function(){return this.checkoutSettings.couponCodeRequirement===a.INVISIBLE},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCouponCodeVisible",{get:function(){return this.isCouponCodeRequirementDefult&&!this.isCouponCodeRequirementInvisible&&!(this.checkout.createdBy===o.UPSELL||this.checkout.createdBy===o.ADMIN)&&!this.isOpenEditOrderWithTransaction},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isCorporateInvoiceVisible",{get:function(){return this.checkoutSettings.corporateInvoiceRequirement!==c.INVISIBLE},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isShowBillingAddressOnShippingStep",{get:function(){return this.checkoutSettings.showBillingAddressOnShippingStep},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"canPerformPayment",{get:function(){var e,t;if(this.checkoutSettings.showTermsAndConditionsCheckbox&&!this.isTermsAndConditionsChecked)return!1;var i=this.checkout.selectedPaymentGateway,s=!!("in-store"===this.deliveryMethod)||!!this.canProceedToShipping,n=!!(null===(e=this.checkout.billingAddress)||void 0===e?void 0:e.isValidAddress),r=!!this.isFree||(!!this.mpVM.selectedCard||((null==i?void 0:i.paymentMethodType)===d.CREDIT_CARD&&i.type===u.INTERNAL?!!this.isCustomFlowStripe||(!!(this.isKlarna||this.isPayPal||this.isHepsiPay)||(null===(t=this.cardData)||void 0===t?void 0:t.isValid)):!!i));return s&&n&&r},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isDigitalOnly",{get:function(){return this.checkout.shippingMethod===l.DIGITAL_DELIVERY},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"customerAddresses",{get:function(){var t,i,s,n=this,r=null===(t=Q.getCurrentRouting())||void 0===t?void 0:t.countryCodes;return null===(s=null===(i=this.store.customerStore.customer)||void 0===i?void 0:i.addresses)||void 0===s?void 0:s.filter((function(e){var t;return!(null==r?void 0:r.length)||(null===(t=e.country)||void 0===t?void 0:t.iso2)&&r.includes(e.country.iso2)})).map((function(t){var i=new C(e({countrySettings:n.countrySettings},t));return i.checkoutSettings=n.checkoutSettings,i.shippingZones=n.shippingZones,i.getValidatedCustomerAddress(),i}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isManualOrder",{get:function(){return this.checkout.createdBy===o.ADMIN},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isUpsellOrder",{get:function(){return this.checkout.createdBy===o.UPSELL},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isOpenEditOrder",{get:function(){return this.checkout.status===h.OPEN&&!!this.checkout.orderNumber},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"stripeExpressPaymentGateway",{get:function(){return this.paymentGateways.find((function(e){return"STRIPE_EU"===e.code}))},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isOpenEditOrderWithTransaction",{get:function(){var e,t;return this.checkout.status===h.OPEN&&!!this.checkout.orderNumber&&!!(null===(e=this.openEditOrderTransaction)||void 0===e?void 0:e.chargedAmount)&&(null===(t=this.openEditOrderTransaction)||void 0===t?void 0:t.chargedAmount)>0},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isEPayKolayEnabled",{get:function(){var e=Q.getCustom();return!!e&&!!e.isEPayKolayEnabled},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"isPoweredByHidden",{get:function(){var e=Q.getCustom();return!!e&&!!e.hidePoweredBy},enumerable:!1,configurable:!0}),Object.defineProperty(re.prototype,"hasEmailError",{get:function(){return this.isErrorsVisible&&!this.checkout.hasValidCustomerEmail},enumerable:!1,configurable:!0}),re.prototype.isMilesSmilesActive=function(){return this.paymentGateways.some((function(e){var t;return null===(t=e.enabledRewardSources)||void 0===t?void 0:t.includes(F.MILES_SMILES)}))},re.prototype.setAdyenDropinElement=function(e){this.adyenDropinElement=e},re}();function ue(e,t){return e.match(new RegExp(".{1,"+t+"}","g"))||[]}function le(e){return e&&re.test(e.charAt(e.length-1))}!function(e){e.INFO="info",e.SHIPPING="shipping",e.PAYMENT="payment",e.SUCCESS="success"}(se||(se={})),function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.API_ERROR=1]="API_ERROR",e[e.STOCK_ERROR=2]="STOCK_ERROR",e[e.PAYMENT_ERROR=3]="PAYMENT_ERROR",e[e.NO_SHIPPING_ERROR=4]="NO_SHIPPING_ERROR",e[e.CUSTOMER_LOGIN_REQUIRED_ERROR=5]="CUSTOMER_LOGIN_REQUIRED_ERROR",e[e.CUSTOMER_ACCOUNT_DISABLED_ERROR=6]="CUSTOMER_ACCOUNT_DISABLED_ERROR",e[e.ARGUMENT_VALIDATION_ERROR=7]="ARGUMENT_VALIDATION_ERROR"}(ne||(ne={}));export{se as CheckoutStep,ne as ErrorType,ce as MILES_SMILES_RATE_PER_POINT,de as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import*as e from"react";import{observer as t}from"mobx-react-lite";import{IkasStorefrontConfig as i}from"@ikas/storefront-config";import{Checkbox as o}from"../../components/checkbox/index.js";import n from"../../components/error/index.js";import{PaymentGateways as r}from"./payment-gateways/index.js";import{BillingAddress as a}from"./billing-address/index.js";import{Button as s}from"../../components/button/index.js";import c from"../../components/master-pass/link-card-to-client/index.js";import{PayPal as m}from"../../components/paypal/index.js";import l from"../../components/notification-box/index.js";import{createTranslationInputData as p,useTranslation as d}from"../../../../utils/i18n.js";import y from"../../components/svg/lock.js";import u from"./style.module.scss.js";import{StoreCredit as
|
|
1
|
+
import*as e from"react";import{observer as t}from"mobx-react-lite";import{IkasStorefrontConfig as i}from"@ikas/storefront-config";import{Checkbox as o}from"../../components/checkbox/index.js";import n from"../../components/error/index.js";import{PaymentGateways as r}from"./payment-gateways/index.js";import{BillingAddress as a}from"./billing-address/index.js";import{Button as s}from"../../components/button/index.js";import c from"../../components/master-pass/link-card-to-client/index.js";import{PayPal as m}from"../../components/paypal/index.js";import l from"../../components/notification-box/index.js";import{createTranslationInputData as p,useTranslation as d}from"../../../../utils/i18n.js";import y from"../../components/svg/lock.js";import u from"./style.module.scss.js";import{StoreCredit as k}from"./payment-gateways/store-credit/index.js";import{MilesSmiles as g}from"./payment-gateways/miles-smiles/index.js";import{MilesSmilesLoginRequired as f}from"./payment-gateways/miles-smiles/login-required.js";var v=t((function(t){var v=t.vm,E=d().t,P=e.useCallback((function(e){e.stopPropagation(),v.policyModalTitle=E("checkout-page:privacyPolicy"),v.policyModalText=v.privacyPolicy}),[v,v.privacyPolicy]),C=e.useCallback((function(e){e.stopPropagation(),v.policyModalTitle=E("checkout-page:termsOfService"),v.policyModalText=v.termsOfService}),[v,v.termsOfService]),h=i.getTranslations()["checkout-page"],x=p(h.ackPoliciesSentence).map((function(t){return t.isVariable?e.createElement("span",{className:[u.TermsLabelSpan,v.isErrorsVisible&&!v.isTermsAndConditionsChecked?u.Error:""].join(" "),onClick:"{{ ackPrivacyPolicy }}"===t.value?P:C},"{{ ackPrivacyPolicy }}"===t.value?E("checkout-page:ackPrivacyPolicy"):E("checkout-page:ackTermsOfService")):t.value}));return e.createElement("div",{className:[u.StepPayment,v.isPaymentMethodVisible?"":u.Disabled].join(" ")},e.createElement(n,{vm:v}),e.createElement(k,{vm:v}),v.isMilesSmilesActive()?v.isMilesSmilesLoginRequired?e.createElement(f,{vm:v}):v.milesSmilesDetails?e.createElement(g,{vm:v}):null:null,v.isFree&&e.createElement(l,{type:"success",content:E("checkout-page:freeOrderDescription")}),!v.isFree&&e.createElement(e.Fragment,null,v.mpVM.isLinkCardToClientVisible&&e.createElement(c,{vm:v}),e.createElement(r,{vm:v})),e.createElement(a,{vm:v}),v.checkoutSettings.showTermsAndConditionsCheckbox&&(!v.isIyzico&&!v.isTkPay||v.isFree)&&e.createElement("div",{style:{marginTop:v.useDifferentAddress?"12px":"0px"}},e.createElement(o,{value:v.isTermsAndConditionsChecked,hasError:v.isErrorsVisible&&!v.isTermsAndConditionsChecked,label:e.createElement(e.Fragment,null,x),onChange:v.onTermsAndConditionsCheckedChange})),!v.isFree&&v.isPayPal?e.createElement("div",{className:u.PayPalContainer},e.createElement(m,{vm:v})):!v.isIyzico&&!v.isTkPay||v.isFree?e.createElement(s,{style:{width:"100%",marginTop:"24px"},text:E("checkout-page:actions.completeOrder"),isLoading:v.isStepLoading,onClick:v.isDigitalOnly?v.onCompleteDigitalOnlyPaymentClick:v.onCompletePaymentClick}):null,!!E("checkout-page:securePaymentTooltip")&&e.createElement("div",{className:u.SecurePaymentContainer},e.createElement("span",{className:u.Lock},e.createElement(y,null)),e.createElement("span",null,E("checkout-page:securePaymentTooltip"))))}));export{v as CheckoutStepPayment};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import*as e from"react";import{observer as t}from"mobx-react-lite";import"../../../../../models/data/blog/category/index.js";import"../../../../../models/data/blog/content/index.js";import"../../../../../models/data/blog/meta-data/index.js";import"../../../../../models/data/blog/tag/index.js";import"../../../../../models/data/blog/index.js";import"../../../../../models/data/brand/index.js";import{IkasPaymentMethodType as a,IkasPaymentGatewayTransactionFeeType as n,IkasPaymentGatewayAdditionalPriceType as o,IkasPaymentGatewayType as r}from"@ikas/storefront-models";import"mobx";import"../../../../../models/data/campaign-offer/index.js";import"../../../../../models/data/cart/campaign-offer/index.js";import"../../../../../models/data/cart/index.js";import"../../../../../models/data/category/path-item/index.js";import"../../../../../models/data/category/index.js";import"../../../../../models/data/checkout/index.js";import"../../../../../models/data/checkout-settings/index.js";import"../../../../../models/data/city/index.js";import"../../../../../models/data/country/index.js";import"../../../../../models/data/customer/address/region/index.js";import"../../../../../models/data/customer/address/index.js";import"../../../../../models/data/customer/address/ikas-localized-customer-address.js";import"../../../../../models/data/customer/attribute/index.js";import"../../../../../models/data/customer/review/summary/index.js";import"../../../../../models/data/customer/review/index.js";import"../../../../../models/data/customer/index.js";import"../../../../../models/data/customer-form-data-input/index.js";import"../../../../../models/data/district/index.js";import"../../../../../models/data/favorite-product/index.js";import"../../../../../models/data/filter-category/index.js";import"../../../../../models/data/html-meta-data/index.js";import"../../../../../models/data/image/index.js";import"../../../../../models/data/order/address/region/index.js";import"../../../../../models/data/order/address/index.js";import"../../../../../models/data/order/line-item/option/value/index.js";import"../../../../../models/data/order/line-item/variant/value/index.js";import"../../../../../models/data/order/line-item/variant/index.js";import"../../../../../models/data/order/line-item/index.js";import"../../../../../models/data/order/order-transaction-with-prices/index.js";import"../../../../../models/data/order/package/index.js";import"../../../../../models/data/order/transaction/index.js";import"../../../../../models/data/order/index.js";import"../../../../../models/data/payment-gateway/index.js";import"../../../../../models/data/product/attribute-value/index.js";import"../../../../../models/data/product/filter/index.js";import"../../../../../models/data/product/campaign-offer/index.js";import"../../../../../models/data/product/option-set/option/index.js";import"../../../../../models/data/product/option-set/index.js";import"../../../../../models/data/product/stock-location/index.js";import"../../../../../models/data/product/variant/price/index.js";import"../../../../../models/data/product/variant/index.js";import"../../../../../models/data/variant-type/index.js";import"../../../../../models/data/product/index.js";import"../../../../../models/data/raffle/index.js";import"../../../../../models/data/shipping-zone/state/city/district/region/index.js";import"../../../../../models/data/state/index.js";import"../../../../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../../../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../../../../models/data/storefront-popup/index.js";import"../../../../../models/data/theme-json/index.js";import"../../../../../models/data/theme-json/component/index.js";import"../../../../../models/data/theme-json/custom-data/index.js";import"../../../../../models/data/variant-type/variant-value/index.js";import"@ikas/localized-address";import{CreditCardForm as i}from"../../../components/credit-card-form/index.js";import{Installments as m}from"./installments/index.js";import l from"../../../components/select-box/index.js";import d from"./style.module.scss.js";import{IkasStorefrontConfig as c}from"@ikas/storefront-config";import{formatCurrency as s}from"../../../../../utils/currency.js";import{createTranslationInputData as p,useTranslation as y}from"../../../../../utils/i18n.js";import u from"../../../components/svg/external.js";import v from"next/dynamic";import P from"../../../components/credit-card-form/model.js";import x from"../../../components/master-pass/credit-card-form/index.js";import{Toggle as E}from"../../../components/toggle/index.js";import f from"../../../components/select-box/style.module.scss.js";import g from"../../../components/master-pass/payment-gateway/svg/master-card.js";import j from"../../../components/master-pass/payment-gateway/svg/troy.js";import C from"../../../components/master-pass/payment-gateway/svg/visa.js";import{Checkbox as h}from"../../../components/checkbox/index.js";import w from"../../../components/svg/info.js";import{RewardSourceEnum as k}from"@ikas/storefront-api";var G=v((function(){return import("../../../components/stripe/index.js").then((function(e){return e.default}))})),I=v((function(){return import("../../../components/adyen/index.js").then((function(e){return e.Adyen}))})),N=v((function(){return import("../../../components/klarna/index.js").then((function(e){return e.Klarna}))})),T=v((function(){return import("../../../components/hepsipay/index.js").then((function(e){return e.HepsiPay}))})),S=v((function(){return import("../../../components/iyzico/index.js").then((function(e){return e.Iyzico}))})),M=t((function(v){var M=v.vm,b=y().t,A=function(t){return e.createElement("div",{style:{display:"flex",justifyContent:"flex-end",alignItems:"center",flexWrap:"wrap"}},t.children)},R=function(t){return e.createElement("div",{className:d.AdditionalPrice},t.children)},B=function(e){return 0===e.amount?"":"".concat(e.amountType===n.AMOUNT?s(e.amount,M.checkout.currencyCode,M.checkout.currencySymbol):" %"+e.amount).concat(e.type===o.DECREMENT?" "+b("checkout-page:paymentMethodDiscount"):" "+b("checkout-page:paymentMethodAdditionalPrice"))},V=function(e){return"STRIPE"===e.code||"STRIPE_EU"===e.code},z=function(){var t,a=M.selectedPaymentGatewayIndex===M.klarnaPaymentGatewayIndex;return M.klarnaPaymentGateway?e.createElement("div",{className:f.SelectBoxContainer},e.createElement("div",{className:"".concat(f.SelectBox," ").concat(a?f.Selected:""),onClick:function(){M.setPaymentGateway(M.klarnaPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:f.TopContent},e.createElement(E,{value:a,label:M.klarnaPaymentGateway.name,removePadding:!0}),e.createElement("div",{className:f.RightContent},(null===(t=M.klarnaPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(R,null,B(M.klarnaPaymentGateway.additionalPrices[0])):e.createElement(A,null,!!M.klarnaPaymentGateway.logoUrl&&e.createElement("div",{className:d.PaymentLogoContainer},e.createElement("img",{src:M.klarnaPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(a?f.BottomContent:""," ").concat(a?"":d.Hidden)},e.createElement(N,{vm:M}),M.klarnaError&&e.createElement("div",{className:d.ErrorMessage},M.klarnaError.data)))):null},L=function(){var t,a=M.selectedPaymentGatewayIndex===M.hepsiPayPaymentGatewayIndex;return M.hepsiPayPaymentGateway?e.createElement("div",{className:f.SelectBoxContainer},e.createElement("div",{className:"".concat(f.SelectBox," ").concat(a?f.Selected:""),onClick:function(){M.setPaymentGateway(M.hepsiPayPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:f.TopContent},e.createElement(E,{value:a,label:"Kredi / Banka Kartı - Hepsipay",removePadding:!0}),e.createElement("div",{className:f.RightContent},(null===(t=M.hepsiPayPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(R,null,B(M.hepsiPayPaymentGateway.additionalPrices[0])):e.createElement(A,null,!!M.hepsiPayPaymentGateway.logoUrl&&e.createElement("div",{className:d.PaymentLogoContainer},e.createElement("img",{src:M.hepsiPayPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(a?f.BottomContent:""," ").concat(a?"":d.Hidden)},e.createElement(T,{vm:M})))):null},D=function(){var t=M.selectedPaymentGatewayIndex===M.adyenPaymentGatewayIndex;return M.adyenPaymentGateway?e.createElement("div",{className:f.SelectBoxContainer},e.createElement("div",{className:"".concat(f.SelectBox," ").concat(f.AdyenSelectBox),onClick:function(){M.setPaymentGateway(M.adyenPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:f.TopContent}),e.createElement("div",{className:"".concat(t?f.BottomContent:""," "),style:{paddingTop:0}},e.createElement(I,{vm:M,isSelected:t})))):null},U=function(){var t,a=M.selectedPaymentGatewayIndex===M.payPalPaymentGatewayIndex;return M.payPalPaymentGateway?e.createElement("div",{className:f.SelectBoxContainer},e.createElement("div",{className:"".concat(f.SelectBox," ").concat(a?f.Selected:""),onClick:function(){M.setPaymentGateway(M.payPalPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:f.TopContent},e.createElement(E,{value:a,label:M.payPalPaymentGateway.name,removePadding:!0}),e.createElement("div",{className:f.RightContent},(null===(t=M.payPalPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(R,null,B(M.payPalPaymentGateway.additionalPrices[0])):e.createElement(A,null,!!M.payPalPaymentGateway.logoUrl&&e.createElement("div",{className:d.PaymentLogoContainer},e.createElement("img",{src:M.payPalPaymentGateway.logoUrl}))))))):null},_=t((function(t){var a,n=t.vm;e.useEffect((function(){n.isTermsAndConditionsChecked&&n.setShowIyzicoContainer(!0)}),[n.isTermsAndConditionsChecked]);var o=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=b("checkout-page:privacyPolicy"),n.policyModalText=n.privacyPolicy}),[n,n.privacyPolicy]),r=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=b("checkout-page:termsOfService"),n.policyModalText=n.termsOfService}),[n,n.termsOfService]),i=c.getTranslations()["checkout-page"],m=p(i.ackPoliciesSentence).map((function(t){return t.isVariable?e.createElement("span",{className:[d.TermsLabelSpan,n.isErrorsVisible&&!n.isTermsAndConditionsChecked?d.Error:""].join(" "),onClick:"{{ ackPrivacyPolicy }}"===t.value?o:r},"{{ ackPrivacyPolicy }}"===t.value?b("checkout-page:ackPrivacyPolicy"):b("checkout-page:ackTermsOfService")):t.value})),l=n.selectedPaymentGatewayIndex===n.iyzicoPaymentGatewayIndex;return n.iyzicoPaymentGateway?e.createElement("div",{className:f.SelectBoxContainer},e.createElement("div",{className:"".concat(f.SelectBox," ").concat(l?f.Selected:""," ").concat(d.IyzicoBottomContent),onClick:function(){n.setPaymentGateway(n.iyzicoPaymentGatewayIndex),n.mpVM.selectedCard=void 0}},e.createElement("div",{className:f.TopContent},e.createElement(E,{value:l,label:b("checkout-page:creditCard"),removePadding:!0}),e.createElement("div",{className:f.RightContent},(null===(a=n.iyzicoPaymentGateway.additionalPrices)||void 0===a?void 0:a.length)?e.createElement(R,null,B(n.iyzicoPaymentGateway.additionalPrices[0])):e.createElement(A,null,!!n.iyzicoPaymentGateway.logoUrl&&e.createElement("div",{className:d.PaymentLogoContainer},e.createElement("img",{src:n.iyzicoPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(l?f.BottomContent:""," ").concat(l?"":d.Hidden," ")},e.createElement("div",{className:d.IyzicoCheckboxContainer},e.createElement(h,{value:n.isTermsAndConditionsChecked,hasError:n.isErrorsVisible&&!n.isTermsAndConditionsChecked,label:e.createElement(e.Fragment,null,m),removePadding:!0,onChange:n.onTermsAndConditionsCheckedChange})),!n.isTermsAndConditionsChecked&&e.createElement("div",{className:[d.IyzicoDescription,n.iyzicoResponse?d.WithBottomMargin:""].join(" ")},e.createElement(w,null),b("checkout-page:iyzicoDescription")),n.iyzicoResponse&&e.createElement(S,{vm:n})))):null}));return e.createElement(e.Fragment,null,!!M.mpVM.cards.length&&M.mpVM.cards.map((function(t,n){var o,i=M.paymentGateways.find((function(e){return e.id===t.paymentGatewayId})),c=e.createElement("button",{className:d.MasterPassSelectBoxDeleteButton,onClick:function(e){e.stopPropagation(),M.mpVM.deleteCard({store:M.store,checkout:M.checkout,card:t})}},b("checkout-page:masterPass.paymentGatewaySelectBox.delete")),s=function(e){return t.Value1.startsWith(e)},p=s("4"),y=s("5")||s("6"),u=s("9"),v=e.createElement("div",{style:{display:"flex",alignItems:"center"}},e.createElement("span",{className:d.MasterPassSelectBoxLabelLogo},p&&e.createElement(C,null),y&&e.createElement(g,null),u&&e.createElement(j,null)),t.Name," ",t.Value1),x=(null==i?void 0:i.id)&&i.paymentMethodType===a.CREDIT_CARD&&i.type===r.INTERNAL?M.installmentInfo&&e.createElement(m,{vm:M}):void 0;return e.createElement(l,{key:n,isSelected:(null===(o=M.mpVM.selectedCard)||void 0===o?void 0:o.UniqueId)===t.UniqueId,label:v,rightContent:c,bottomContent:x,onClick:function(){var e;(null===(e=M.mpVM.selectedCard)||void 0===e?void 0:e.UniqueId)!==t.UniqueId&&(M.checkout.selectedPaymentGateway=null,M.cardData=new P,M.installmentInfo=void 0,M.mpVM.selectedCard=t,t.Value1&&t.paymentGatewayId&&M.checkout.totalFinalPrice&&M.retrieveInstallmentInfo({input:{orderId:M.checkout.id,binNumber:t.Value1.slice(0,8),paymentGatewayId:t.paymentGatewayId,price:M.checkout.totalFinalPrice,currencyCode:M.checkout.currencyCode}}))}})})),M.paymentGateways.filter((function(e){return"in-store"!==M.deliveryMethod&&!M.isDigitalOnly||e.paymentMethodType!==a.CASH_ON_DELIVERY&&e.paymentMethodType!==a.CREDIT_CARD_ON_DELIVERY})).map((function(t,n){var o,c;if(M.useMilesSmiles&&!(null===(o=t.enabledRewardSources)||void 0===o?void 0:o.includes(k.MILES_SMILES)))return null;if(function(e){return"KLARNA"===e.code}(t)&&M.klarnaPaymentGateway)return z();if(function(e){return"ADYEN_PLATFORM"===e.code}(t)&&M.adyenPaymentGateway)return D();if(function(e){return"PAYPAL"===e.code}(t)&&M.payPalPaymentGateway)return U();if(function(e){return"HEPSIPAY"===e.code}(t)&&M.hepsiPayPaymentGateway)return L();if(function(e){return"IYZICO"===e.code}(t)&&M.iyzicoPaymentGateway)return e.createElement(_,{vm:M,key:t.id});var s=t.paymentMethodType===a.CREDIT_CARD&&t.type===r.INTERNAL?e.createElement(e.Fragment,null,V(t)?e.createElement(e.Fragment,null,e.createElement(G,{vm:M,pg:t}),M.stripeError&&e.createElement("div",{className:d.ErrorMessage},M.stripeError.data)):e.createElement("div",null,e.createElement(i,{vm:M}),M.isPaymentGatewayHasMasterPass&&e.createElement(x,{vm:M}),M.installmentInfo&&e.createElement(m,{vm:M}))):t.description?e.createElement(e.Fragment,null,t.type===r.EXTERNAL&&e.createElement("div",{style:{height:"52px",display:"flex",justifyContent:"center",margin:"24px 0"}},e.createElement(u,null)),e.createElement("div",{dangerouslySetInnerHTML:{__html:t.description}})):void 0;return e.createElement(l,{key:t.id,label:t.paymentMethodType===a.CREDIT_CARD&&t.type===r.INTERNAL?V(t)?t.name:b("checkout-page:creditCard"):t.name,isSelected:M.selectedPaymentGatewayIndex===n,rightContent:(null===(c=t.additionalPrices)||void 0===c?void 0:c.length)?e.createElement(R,null,B(t.additionalPrices[0])):e.createElement(A,null,!!t.logoUrl&&e.createElement("div",{className:d.PaymentLogoContainer},e.createElement("img",{src:t.logoUrl}))),bottomContent:s,onClick:function(){M.selectedPaymentGatewayIndex!==n&&(M.setPaymentGateway(n),M.mpVM.selectedCard=void 0)}})})))}));export{M as PaymentGateways};
|
|
1
|
+
import*as e from"react";import{observer as t}from"mobx-react-lite";import"../../../../../models/data/blog/category/index.js";import"../../../../../models/data/blog/content/index.js";import"../../../../../models/data/blog/meta-data/index.js";import"../../../../../models/data/blog/tag/index.js";import"../../../../../models/data/blog/index.js";import"../../../../../models/data/brand/index.js";import{IkasPaymentMethodType as a,IkasPaymentGatewayTransactionFeeType as n,IkasPaymentGatewayAdditionalPriceType as o,IkasPaymentGatewayType as i}from"@ikas/storefront-models";import"mobx";import"../../../../../models/data/campaign-offer/index.js";import"../../../../../models/data/cart/campaign-offer/index.js";import"../../../../../models/data/cart/index.js";import"../../../../../models/data/category/path-item/index.js";import"../../../../../models/data/category/index.js";import"../../../../../models/data/checkout/index.js";import"../../../../../models/data/checkout-settings/index.js";import"../../../../../models/data/city/index.js";import"../../../../../models/data/country/index.js";import"../../../../../models/data/customer/address/region/index.js";import"../../../../../models/data/customer/address/index.js";import"../../../../../models/data/customer/address/ikas-localized-customer-address.js";import"../../../../../models/data/customer/attribute/index.js";import"../../../../../models/data/customer/review/summary/index.js";import"../../../../../models/data/customer/review/index.js";import"../../../../../models/data/customer/index.js";import"../../../../../models/data/customer-form-data-input/index.js";import"../../../../../models/data/district/index.js";import"../../../../../models/data/favorite-product/index.js";import"../../../../../models/data/filter-category/index.js";import"../../../../../models/data/html-meta-data/index.js";import"../../../../../models/data/image/index.js";import"../../../../../models/data/order/address/region/index.js";import"../../../../../models/data/order/address/index.js";import"../../../../../models/data/order/line-item/option/value/index.js";import"../../../../../models/data/order/line-item/variant/value/index.js";import"../../../../../models/data/order/line-item/variant/index.js";import"../../../../../models/data/order/line-item/index.js";import"../../../../../models/data/order/order-transaction-with-prices/index.js";import"../../../../../models/data/order/package/index.js";import"../../../../../models/data/order/transaction/index.js";import"../../../../../models/data/order/index.js";import"../../../../../models/data/payment-gateway/index.js";import"../../../../../models/data/product/attribute-value/index.js";import"../../../../../models/data/product/filter/index.js";import"../../../../../models/data/product/campaign-offer/index.js";import"../../../../../models/data/product/option-set/option/index.js";import"../../../../../models/data/product/option-set/index.js";import"../../../../../models/data/product/stock-location/index.js";import"../../../../../models/data/product/variant/price/index.js";import"../../../../../models/data/product/variant/index.js";import"../../../../../models/data/variant-type/index.js";import"../../../../../models/data/product/index.js";import"../../../../../models/data/raffle/index.js";import"../../../../../models/data/shipping-zone/state/city/district/region/index.js";import"../../../../../models/data/state/index.js";import"../../../../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../../../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../../../../models/data/storefront-popup/index.js";import"../../../../../models/data/theme-json/index.js";import"../../../../../models/data/theme-json/component/index.js";import"../../../../../models/data/theme-json/custom-data/index.js";import"../../../../../models/data/variant-type/variant-value/index.js";import"@ikas/localized-address";import{CreditCardForm as r}from"../../../components/credit-card-form/index.js";import{Installments as c}from"./installments/index.js";import l from"../../../components/select-box/index.js";import m from"./style.module.scss.js";import{IkasStorefrontConfig as s}from"@ikas/storefront-config";import{formatCurrency as d}from"../../../../../utils/currency.js";import{createTranslationInputData as y,useTranslation as p}from"../../../../../utils/i18n.js";import u from"../../../components/svg/external.js";import v from"next/dynamic";import P from"../../../components/credit-card-form/model.js";import E from"../../../components/master-pass/credit-card-form/index.js";import{Toggle as f}from"../../../components/toggle/index.js";import g from"../../../components/select-box/style.module.scss.js";import x from"../../../components/master-pass/payment-gateway/svg/master-card.js";import C from"../../../components/master-pass/payment-gateway/svg/troy.js";import k from"../../../components/master-pass/payment-gateway/svg/visa.js";import{Checkbox as h}from"../../../components/checkbox/index.js";import j from"../../../components/svg/info.js";import{RewardSourceEnum as w}from"@ikas/storefront-api";var G=v((function(){return import("../../../components/stripe/index.js").then((function(e){return e.default}))})),T=v((function(){return import("../../../components/adyen/index.js").then((function(e){return e.Adyen}))})),N=v((function(){return import("../../../components/klarna/index.js").then((function(e){return e.Klarna}))})),I=v((function(){return import("../../../components/hepsipay/index.js").then((function(e){return e.HepsiPay}))})),S=v((function(){return import("../../../components/iyzico/index.js").then((function(e){return e.Iyzico}))})),b=v((function(){return import("../../../components/tkpay/index.js").then((function(e){return e.TkPay}))})),M=t((function(v){var M=v.vm,A=p().t,R=function(t){return e.createElement("div",{style:{display:"flex",justifyContent:"flex-end",alignItems:"center",flexWrap:"wrap"}},t.children)},B=function(t){return e.createElement("div",{className:m.AdditionalPrice},t.children)},V=function(e){return 0===e.amount?"":"".concat(e.amountType===n.AMOUNT?d(e.amount,M.checkout.currencyCode,M.checkout.currencySymbol):" %"+e.amount).concat(e.type===o.DECREMENT?" "+A("checkout-page:paymentMethodDiscount"):" "+A("checkout-page:paymentMethodAdditionalPrice"))},L=function(e){return"STRIPE"===e.code||"STRIPE_EU"===e.code},z=function(){var t,a=M.selectedPaymentGatewayIndex===M.klarnaPaymentGatewayIndex;return M.klarnaPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(a?g.Selected:""),onClick:function(){M.setPaymentGateway(M.klarnaPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent},e.createElement(f,{value:a,label:M.klarnaPaymentGateway.name,removePadding:!0}),e.createElement("div",{className:g.RightContent},(null===(t=M.klarnaPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(B,null,V(M.klarnaPaymentGateway.additionalPrices[0])):e.createElement(R,null,!!M.klarnaPaymentGateway.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:M.klarnaPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(a?g.BottomContent:""," ").concat(a?"":m.Hidden)},e.createElement(N,{vm:M}),M.klarnaError&&e.createElement("div",{className:m.ErrorMessage},M.klarnaError.data)))):null},D=function(){var t,a=M.selectedPaymentGatewayIndex===M.hepsiPayPaymentGatewayIndex;return M.hepsiPayPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(a?g.Selected:""),onClick:function(){M.setPaymentGateway(M.hepsiPayPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent},e.createElement(f,{value:a,label:"Kredi / Banka Kartı - Hepsipay",removePadding:!0}),e.createElement("div",{className:g.RightContent},(null===(t=M.hepsiPayPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(B,null,V(M.hepsiPayPaymentGateway.additionalPrices[0])):e.createElement(R,null,!!M.hepsiPayPaymentGateway.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:M.hepsiPayPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(a?g.BottomContent:""," ").concat(a?"":m.Hidden)},e.createElement(I,{vm:M})))):null},U=function(){var t=M.selectedPaymentGatewayIndex===M.adyenPaymentGatewayIndex;return M.adyenPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(g.AdyenSelectBox),onClick:function(){M.setPaymentGateway(M.adyenPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent}),e.createElement("div",{className:"".concat(t?g.BottomContent:""," "),style:{paddingTop:0}},e.createElement(T,{vm:M,isSelected:t})))):null},_=function(){var t,a=M.selectedPaymentGatewayIndex===M.payPalPaymentGatewayIndex;return M.payPalPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(a?g.Selected:""),onClick:function(){M.setPaymentGateway(M.payPalPaymentGatewayIndex),M.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent},e.createElement(f,{value:a,label:M.payPalPaymentGateway.name,removePadding:!0}),e.createElement("div",{className:g.RightContent},(null===(t=M.payPalPaymentGateway.additionalPrices)||void 0===t?void 0:t.length)?e.createElement(B,null,V(M.payPalPaymentGateway.additionalPrices[0])):e.createElement(R,null,!!M.payPalPaymentGateway.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:M.payPalPaymentGateway.logoUrl}))))))):null},O=t((function(t){var a,n=t.vm;e.useEffect((function(){n.isTermsAndConditionsChecked&&n.setShowIyzicoContainer(!0)}),[n.isTermsAndConditionsChecked]);var o=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=A("checkout-page:privacyPolicy"),n.policyModalText=n.privacyPolicy}),[n,n.privacyPolicy]),i=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=A("checkout-page:termsOfService"),n.policyModalText=n.termsOfService}),[n,n.termsOfService]),r=s.getTranslations()["checkout-page"],c=y(r.ackPoliciesSentence).map((function(t){return t.isVariable?e.createElement("span",{className:[m.TermsLabelSpan,n.isErrorsVisible&&!n.isTermsAndConditionsChecked?m.Error:""].join(" "),onClick:"{{ ackPrivacyPolicy }}"===t.value?o:i},"{{ ackPrivacyPolicy }}"===t.value?A("checkout-page:ackPrivacyPolicy"):A("checkout-page:ackTermsOfService")):t.value})),l=n.selectedPaymentGatewayIndex===n.iyzicoPaymentGatewayIndex;return n.iyzicoPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(l?g.Selected:""," ").concat(m.IyzicoBottomContent),onClick:function(){n.setPaymentGateway(n.iyzicoPaymentGatewayIndex),n.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent},e.createElement(f,{value:l,label:A("checkout-page:creditCard"),removePadding:!0}),e.createElement("div",{className:g.RightContent},(null===(a=n.iyzicoPaymentGateway.additionalPrices)||void 0===a?void 0:a.length)?e.createElement(B,null,V(n.iyzicoPaymentGateway.additionalPrices[0])):e.createElement(R,null,!!n.iyzicoPaymentGateway.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:n.iyzicoPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(l?g.BottomContent:""," ").concat(l?"":m.Hidden," ")},e.createElement("div",{className:m.IyzicoCheckboxContainer},e.createElement(h,{value:n.isTermsAndConditionsChecked,hasError:n.isErrorsVisible&&!n.isTermsAndConditionsChecked,label:e.createElement(e.Fragment,null,c),removePadding:!0,onChange:n.onTermsAndConditionsCheckedChange})),!n.isTermsAndConditionsChecked&&e.createElement("div",{className:[m.IyzicoDescription,n.iyzicoResponse?m.WithBottomMargin:""].join(" ")},e.createElement(j,null),A("checkout-page:iyzicoDescription")),n.iyzicoResponse&&e.createElement(S,{vm:n})))):null})),H=t((function(t){var a,n=t.vm;e.useEffect((function(){n.isTermsAndConditionsChecked&&n.setShowTkPayContainer(!0)}),[n.isTermsAndConditionsChecked]);var o=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=A("checkout-page:privacyPolicy"),n.policyModalText=n.privacyPolicy}),[n,n.privacyPolicy]),i=e.useCallback((function(e){e.stopPropagation(),n.policyModalTitle=A("checkout-page:termsOfService"),n.policyModalText=n.termsOfService}),[n,n.termsOfService]),r=s.getTranslations()["checkout-page"],c=y(r.ackPoliciesSentence).map((function(t){return t.isVariable?e.createElement("span",{className:[m.TermsLabelSpan,n.isErrorsVisible&&!n.isTermsAndConditionsChecked?m.Error:""].join(" "),onClick:"{{ ackPrivacyPolicy }}"===t.value?o:i},"{{ ackPrivacyPolicy }}"===t.value?A("checkout-page:ackPrivacyPolicy"):A("checkout-page:ackTermsOfService")):t.value})),l=n.selectedPaymentGatewayIndex===n.tkPayPaymentGatewayIndex;return n.tkPayPaymentGateway?e.createElement("div",{className:g.SelectBoxContainer},e.createElement("div",{className:"".concat(g.SelectBox," ").concat(l?g.Selected:""," ").concat(m.TkPayBottomContent),onClick:function(){n.setPaymentGateway(n.tkPayPaymentGatewayIndex),n.mpVM.selectedCard=void 0}},e.createElement("div",{className:g.TopContent},e.createElement(f,{value:l,label:n.tkPayPaymentGateway.name,removePadding:!0}),e.createElement("div",{className:g.RightContent},(null===(a=n.tkPayPaymentGateway.additionalPrices)||void 0===a?void 0:a.length)?e.createElement(B,null,V(n.tkPayPaymentGateway.additionalPrices[0])):e.createElement(R,null,!!n.tkPayPaymentGateway.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:n.tkPayPaymentGateway.logoUrl}))))),e.createElement("div",{className:"".concat(l?g.BottomContent:""," ").concat(l?"":m.Hidden," ")},e.createElement("div",{className:m.TkPayCheckboxContainer},e.createElement(h,{value:n.isTermsAndConditionsChecked,hasError:n.isErrorsVisible&&!n.isTermsAndConditionsChecked,label:e.createElement(e.Fragment,null,c),removePadding:!0,onChange:n.onTermsAndConditionsCheckedChange})),!n.isTermsAndConditionsChecked&&e.createElement("div",{className:[m.TkPayDescription,n.tkPayResponse?m.WithBottomMargin:""].join(" ")},e.createElement(j,null),A("checkout-page:tkPayDescription")),n.tkPayResponse&&e.createElement(b,{vm:n})))):null}));return e.createElement(e.Fragment,null,!!M.mpVM.cards.length&&M.mpVM.cards.map((function(t,n){var o,r=M.paymentGateways.find((function(e){return e.id===t.paymentGatewayId})),s=e.createElement("button",{className:m.MasterPassSelectBoxDeleteButton,onClick:function(e){e.stopPropagation(),M.mpVM.deleteCard({store:M.store,checkout:M.checkout,card:t})}},A("checkout-page:masterPass.paymentGatewaySelectBox.delete")),d=function(e){return t.Value1.startsWith(e)},y=d("4"),p=d("5")||d("6"),u=d("9"),v=e.createElement("div",{style:{display:"flex",alignItems:"center"}},e.createElement("span",{className:m.MasterPassSelectBoxLabelLogo},y&&e.createElement(k,null),p&&e.createElement(x,null),u&&e.createElement(C,null)),t.Name," ",t.Value1),E=(null==r?void 0:r.id)&&r.paymentMethodType===a.CREDIT_CARD&&r.type===i.INTERNAL?M.installmentInfo&&e.createElement(c,{vm:M}):void 0;return e.createElement(l,{key:n,isSelected:(null===(o=M.mpVM.selectedCard)||void 0===o?void 0:o.UniqueId)===t.UniqueId,label:v,rightContent:s,bottomContent:E,onClick:function(){var e;(null===(e=M.mpVM.selectedCard)||void 0===e?void 0:e.UniqueId)!==t.UniqueId&&(M.checkout.selectedPaymentGateway=null,M.cardData=new P,M.installmentInfo=void 0,M.mpVM.selectedCard=t,t.Value1&&t.paymentGatewayId&&M.checkout.totalFinalPrice&&M.retrieveInstallmentInfo({input:{orderId:M.checkout.id,binNumber:t.Value1.slice(0,8),paymentGatewayId:t.paymentGatewayId,price:M.checkout.totalFinalPrice,currencyCode:M.checkout.currencyCode}}))}})})),M.paymentGateways.filter((function(e){return"in-store"!==M.deliveryMethod&&!M.isDigitalOnly||e.paymentMethodType!==a.CASH_ON_DELIVERY&&e.paymentMethodType!==a.CREDIT_CARD_ON_DELIVERY})).map((function(t,n){var o,s;if(M.useMilesSmiles&&!(null===(o=t.enabledRewardSources)||void 0===o?void 0:o.includes(w.MILES_SMILES)))return null;if(function(e){return"KLARNA"===e.code}(t)&&M.klarnaPaymentGateway)return z();if(function(e){return"ADYEN_PLATFORM"===e.code}(t)&&M.adyenPaymentGateway)return U();if(function(e){return"PAYPAL"===e.code}(t)&&M.payPalPaymentGateway)return _();if(function(e){return"HEPSIPAY"===e.code}(t)&&M.hepsiPayPaymentGateway)return D();if(function(e){return"IYZICO"===e.code}(t)&&M.iyzicoPaymentGateway)return e.createElement(O,{vm:M,key:t.id});if(function(e){var t,a;return"TK_PAY"===e.code&&"true"===(null===(a=null===(t=e.settings)||void 0===t?void 0:t.find((function(e){return"tkpay_use_checkout_form"===e.label})))||void 0===a?void 0:a.value)}(t)&&M.tkPayPaymentGateway)return e.createElement(H,{vm:M,key:t.id});var d=t.paymentMethodType===a.CREDIT_CARD&&t.type===i.INTERNAL?e.createElement(e.Fragment,null,L(t)?e.createElement(e.Fragment,null,e.createElement(G,{vm:M,pg:t}),M.stripeError&&e.createElement("div",{className:m.ErrorMessage},M.stripeError.data)):e.createElement("div",null,e.createElement(r,{vm:M}),M.isPaymentGatewayHasMasterPass&&e.createElement(E,{vm:M}),M.installmentInfo&&e.createElement(c,{vm:M}))):t.description?e.createElement(e.Fragment,null,t.type===i.EXTERNAL&&e.createElement("div",{style:{height:"52px",display:"flex",justifyContent:"center",margin:"24px 0"}},e.createElement(u,null)),e.createElement("div",{dangerouslySetInnerHTML:{__html:t.description}})):void 0;return e.createElement(l,{key:t.id,label:t.paymentMethodType===a.CREDIT_CARD&&t.type===i.INTERNAL?L(t)?t.name:A("checkout-page:creditCard"):t.name,isSelected:M.selectedPaymentGatewayIndex===n,rightContent:(null===(s=t.additionalPrices)||void 0===s?void 0:s.length)?e.createElement(B,null,V(t.additionalPrices[0])):e.createElement(R,null,!!t.logoUrl&&e.createElement("div",{className:m.PaymentLogoContainer},e.createElement("img",{src:t.logoUrl}))),bottomContent:d,onClick:function(){M.selectedPaymentGatewayIndex!==n&&(M.setPaymentGateway(n),M.mpVM.selectedCard=void 0)}})})))}));export{M as PaymentGateways};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import e from'./../../../../../ext/style-inject/dist/style-inject.es.js';var
|
|
1
|
+
import e from'./../../../../../ext/style-inject/dist/style-inject.es.js';var o={PaymentLogoContainer:"style-module_PaymentLogoContainer__h4VF0",AdditionalPrice:"style-module_AdditionalPrice__42TO1",MasterPassSelectBoxDeleteButton:"style-module_MasterPassSelectBoxDeleteButton__J1RSJ",MasterPassSelectBoxLabelLogo:"style-module_MasterPassSelectBoxLabelLogo__fIhG7",Hidden:"style-module_Hidden__5-IfX",ErrorMessage:"style-module_ErrorMessage__nCpW4",TermsLabelSpan:"style-module_TermsLabelSpan__JUlDd",Error:"style-module_Error__-TdLv",IyzicoDescription:"style-module_IyzicoDescription__eN-pP",TkPayDescription:"style-module_TkPayDescription__spvVL",WithBottomMargin:"style-module_WithBottomMargin__Wwm6R",IyzicoLoader:"style-module_IyzicoLoader__40O8l",TkPayLoader:"style-module_TkPayLoader__om86k",load8:"style-module_load8__LStqF",IyzicoLoaderContainer:"style-module_IyzicoLoaderContainer__TNm4N",TkPayLoaderContainer:"style-module_TkPayLoaderContainer__V5TCY",IyzicoBottomContent:"style-module_IyzicoBottomContent__AMo4Q",TkPayBottomContent:"style-module_TkPayBottomContent__-deCh",IyzicoCheckboxContainer:"style-module_IyzicoCheckboxContainer__dvYnN",TkPayCheckboxContainer:"style-module_TkPayCheckboxContainer__LEW1Q"};e(".style-module_PaymentLogoContainer__h4VF0 {\n margin-left: 10px;\n font-size: 0.7em;\n}\n.style-module_PaymentLogoContainer__h4VF0 img {\n height: 20px;\n}\n\n.style-module_AdditionalPrice__42TO1 {\n color: var(--checkout-primary-text-color);\n font-weight: 600;\n}\n\n.style-module_MasterPassSelectBoxDeleteButton__J1RSJ {\n font-size: 14px;\n line-height: 20px;\n color: var(--checkout-primary-text-color);\n padding: 4px 8px;\n margin-right: -8px;\n background-color: transparent;\n border: none;\n outline: none;\n cursor: pointer;\n}\n.style-module_MasterPassSelectBoxDeleteButton__J1RSJ:hover {\n text-decoration: underline;\n}\n\n.style-module_MasterPassSelectBoxLabelLogo__fIhG7 {\n display: inline-flex;\n margin-right: 12px;\n width: 32px;\n}\n.style-module_MasterPassSelectBoxLabelLogo__fIhG7 svg {\n width: 100%;\n height: 100%;\n}\n\n.style-module_Hidden__5-IfX {\n display: none;\n}\n\n.style-module_ErrorMessage__nCpW4 {\n font-size: 14px;\n color: var(--checkout-error-color);\n}\n\n.style-module_TermsLabelSpan__JUlDd {\n color: var(--checkout-primary-text-color);\n font-weight: 500;\n}\n.style-module_TermsLabelSpan__JUlDd:hover {\n text-decoration: underline;\n}\n.style-module_TermsLabelSpan__JUlDd.style-module_Error__-TdLv {\n color: var(--checkout-error-color);\n}\n\n.style-module_IyzicoDescription__eN-pP,\n.style-module_TkPayDescription__spvVL {\n color: var(--checkout-primary-text-color);\n font-size: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 12px;\n flex-direction: column;\n font-weight: 400;\n line-height: 24px;\n width: 75%;\n margin: 0 auto;\n text-align: center;\n padding: 24px;\n}\n@media only screen and (max-width: 1280px) {\n .style-module_IyzicoDescription__eN-pP,\n.style-module_TkPayDescription__spvVL {\n width: 100%;\n }\n}\n.style-module_IyzicoDescription__eN-pP.style-module_WithBottomMargin__Wwm6R,\n.style-module_TkPayDescription__spvVL.style-module_WithBottomMargin__Wwm6R {\n margin-bottom: 12px;\n}\n\n.style-module_IyzicoLoader__40O8l,\n.style-module_IyzicoLoader__40O8l:after,\n.style-module_TkPayLoader__om86k,\n.style-module_TkPayLoader__om86k:after {\n border-radius: 50%;\n width: 5em;\n height: 5em;\n}\n\n.style-module_IyzicoLoader__40O8l,\n.style-module_TkPayLoader__om86k {\n font-size: 6px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid rgba(255, 255, 255, 0.2);\n border-right: 0.5em solid rgba(255, 255, 255, 0.2);\n border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);\n border-left: 0.5em solid var(--checkout-primary-text-color);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: style-module_load8__LStqF 1.1s infinite linear;\n animation: style-module_load8__LStqF 1.1s infinite linear;\n}\n\n@keyframes style-module_load8__LStqF {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.style-module_IyzicoLoaderContainer__TNm4N,\n.style-module_TkPayLoaderContainer__V5TCY {\n display: flex;\n justify-content: center;\n align-items: center;\n margin-top: 12px;\n}\n\n.style-module_IyzicoBottomContent__AMo4Q,\n.style-module_TkPayBottomContent__-deCh {\n background-color: var(--checkout-primary-bg-color) !important;\n}\n\n.style-module_IyzicoCheckboxContainer__dvYnN,\n.style-module_TkPayCheckboxContainer__LEW1Q {\n margin-bottom: 16px;\n}");export{o as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__awaiter as t,__generator as n}from'./../../../ext/tslib/tslib.es6.js';import*as e from"react";import{StorefrontWidgetSettingsStatusEnum as r,getStorefrontWidgetSettings as i,listEarningMethods as o,listLoyaltyProgramTiers as a,listSpendingMethodsByCartId as s,getLoyaltyCustomerInfo as u,listLoyaltyProgramPointHistory as c,useLoyaltyPoints as d,removeLoyaltyPointsFromCart as l}from"@ikas/storefront-api";import{IkasStorefrontConfig as v}from"@ikas/storefront-config";import{IkasBaseStore as f}from"../../../store/base.js";import"../../../store/customer/index.js";import"../../../store/cart/index.js";import g from"../../../store/product/index.js";import m from"../../../store/category/index.js";import h from"../../../store/brand/index.js";import{resolveStoreUrl as y}from"./common.js";import{formatCurrency as p}from"../../../utils/currency.js";import"lodash/get";function w(e){var r,y=this,w=f.getInstance(),I=function(){var t;return null===(t=w.cartStore.cart)||void 0===t?void 0:t.id},S=function(){var t;return!!(null===(t=w.customerStore.customer)||void 0===t?void 0:t.id)},b=function(t){var n,e=null!==(n=null==t?void 0:t.themeSettingsJson)&&void 0!==n?n:t;if(!e)throw new Error("Loyalty widget settings not found");if("string"==typeof e)try{return JSON.parse(e)}catch(t){throw new Error("Loyalty widget settings format is invalid")}return e};return{getLoyaltyWidget:function(){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return e?[2,b(e)]:[4,i()];case 1:if((t=n.sent()).isSuccess&&t.data)return[2,b(t.data)];throw new Error("Loyalty widget settings not found")}}))}))},subscribeToMarketingNotifications:function(){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return[4,f.getInstance().customerStore.createEmailSubscription((null===(t=f.getInstance().customerStore.customer)||void 0===t?void 0:t.email)||"")];case 1:return[2,n.sent()]}}))}))},listEarningMethods:function(){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,o()];case 1:return[2,t.sent().data||[]]}}))}))},listLoyaltyProgramTier:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,a()];case 1:return[2,t.sent().data||[]]}}))}))},listSpendingMethodsByCartId:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return S()?[4,s({cartId:e||I()})]:[2,[]];case 1:return[2,t.sent().data||[]]}}))}))},getLoyaltyCustomerInfo:function(){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return S()?[4,u({cartId:I()||null})]:[2,null];case 1:return[2,t.sent().data||null]}}))}))},listLoyaltyProgramPointHistory:function(e){return t(y,void 0,void 0,(function(){var t,r;return n(this,(function(n){switch(n.label){case 0:return S()?(t={},(r=null==e?void 0:e.type)&&(t.type=Array.isArray(r)?{in:r}:{eq:r}),[4,c(t)]):[2,[]];case 1:return[2,n.sent().data||[]]}}))}))},useLoyaltyPoints:function(e){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return S()?[4,d({input:e})]:[2,!1];case 1:return(t=n.sent()).isSuccess?(r=e.loyaltySpendingMethodId,[4,w.cartStore.getCart()]):[3,3];case 2:n.sent(),n.label=3;case 3:return[2,!!t.isSuccess]}}))}))},removeLoyaltyPointsFromCart:function(){return t(y,void 0,void 0,(function(){var t,e,i,o,a;return n(this,(function(n){switch(n.label){case 0:return S()?(t=I(),e=r||(null===(a=null===(o=null===(i=w.cartStore.cart)||void 0===i?void 0:i.loyaltyLines)||void 0===o?void 0:o[0])||void 0===a?void 0:a.loyaltySpendingMethodId),t&&e?[4,l({cartId:t,loyaltySpendingMethodId:e})]:[2]):[2];case 1:return n.sent().isSuccess?[4,w.cartStore.getCart()]:[3,3];case 2:n.sent(),n.label=3;case 3:return[2]}}))}))},getProducts:function(e){return t(y,void 0,void 0,(function(){var t,r;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?[4,g.searchProducts({input:{productIdList:e,page:1,perPage:e.length,priceListId:v.getPriceListId(),salesChannelId:v.getSalesChannelId()}},[])]:[2,[]];case 1:return t=n.sent(),[2,((null===(r=t.data)||void 0===r?void 0:r.data)||[]).map((function(t){var n,e,r,i,o,a,s;return{id:t.id,name:t.name,mainImageSrc:(null===(o=null===(i=null===(r=null===(e=null===(n=t.variants)||void 0===n?void 0:n[0])||void 0===e?void 0:e.images)||void 0===r?void 0:r.find((function(t){return t.isMain})))||void 0===i?void 0:i.image)||void 0===o?void 0:o.thumbnailSrc)||null,variants:(null===(a=t.variants)||void 0===a?void 0:a.map((function(t){var n,e,r,i;return{id:t.id,mainImageSrc:(null===(r=null===(e=null===(n=t.images)||void 0===n?void 0:n.find((function(t){return t.isMain})))||void 0===e?void 0:e.image)||void 0===r?void 0:r.thumbnailSrc)||null,variantText:(null===(i=t.variantValues)||void 0===i?void 0:i.map((function(t){return t.name})).join(" / "))||null}})))||[],url:null===(s=t.metaData)||void 0===s?void 0:s.slug}}))]}}))}))},getCategories:function(e){return t(y,void 0,void 0,(function(){var t,r,i;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?(t={id:{in:e},pagination:{limit:e.length,page:1}},[4,m.listCategory(t)]):[2,[]];case 1:return r=n.sent(),[2,(null===(i=r.data)||void 0===i?void 0:i.data)||[]]}}))}))},getBrands:function(e){return t(y,void 0,void 0,(function(){var t,r,i;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?(t={id:{in:e},pagination:{limit:e.length,page:1}},[4,h.listProductBrand(t)]):[2,[]];case 1:return r=n.sent(),[2,(null===(i=r.data)||void 0===i?void 0:i.data)||[]]}}))}))},getTags:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){return[2,[]]}))}))},formatCurrency:function(t){return p(t,v.getDefaultCurrencyCode()||"TRY",v.getDefaultCurrencySymbol()||"TRY")}}}var I=function(){e.useEffect((function(){if("undefined"!=typeof window&&"undefined"!=typeof document){var e=!1,o=function(t){if("function"==typeof window.startIkasLoyaltyWidget)try{window.startIkasLoyaltyWidget(t)}catch(t){console.error("[@ikas/storefront] Failed to start loyalty widget",t)}},a=function(t){var n=window.location.href.includes("http://localhost:3333/")?"http://localhost:3000/storefront-widget-script-injector.iife.js":"/sf/assets/popup/storefront-widget-script-injector.iife.js";if(
|
|
1
|
+
import{__awaiter as t,__generator as n}from'./../../../ext/tslib/tslib.es6.js';import*as e from"react";import{StorefrontWidgetSettingsStatusEnum as r,getStorefrontWidgetSettings as i,listEarningMethods as o,listLoyaltyProgramTiers as a,listSpendingMethodsByCartId as s,getLoyaltyCustomerInfo as u,listLoyaltyProgramPointHistory as c,useLoyaltyPoints as d,removeLoyaltyPointsFromCart as l}from"@ikas/storefront-api";import{IkasStorefrontConfig as v}from"@ikas/storefront-config";import{IkasBaseStore as f}from"../../../store/base.js";import"../../../store/customer/index.js";import"../../../store/cart/index.js";import g from"../../../store/product/index.js";import m from"../../../store/category/index.js";import h from"../../../store/brand/index.js";import{resolveStoreUrl as y}from"./common.js";import{formatCurrency as p}from"../../../utils/currency.js";import"lodash/get";function w(e){var r,y=this,w=f.getInstance(),I=function(){var t;return null===(t=w.cartStore.cart)||void 0===t?void 0:t.id},S=function(){var t;return!!(null===(t=w.customerStore.customer)||void 0===t?void 0:t.id)},b=function(t){var n,e=null!==(n=null==t?void 0:t.themeSettingsJson)&&void 0!==n?n:t;if(!e)throw new Error("Loyalty widget settings not found");if("string"==typeof e)try{return JSON.parse(e)}catch(t){throw new Error("Loyalty widget settings format is invalid")}return e};return{getLoyaltyWidget:function(){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return e?[2,b(e)]:[4,i()];case 1:if((t=n.sent()).isSuccess&&t.data)return[2,b(t.data)];throw new Error("Loyalty widget settings not found")}}))}))},subscribeToMarketingNotifications:function(){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return[4,f.getInstance().customerStore.createEmailSubscription((null===(t=f.getInstance().customerStore.customer)||void 0===t?void 0:t.email)||"")];case 1:return[2,n.sent()]}}))}))},listEarningMethods:function(){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,o()];case 1:return[2,t.sent().data||[]]}}))}))},listLoyaltyProgramTier:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return[4,a()];case 1:return[2,t.sent().data||[]]}}))}))},listSpendingMethodsByCartId:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return S()?[4,s({cartId:e||I()})]:[2,[]];case 1:return[2,t.sent().data||[]]}}))}))},getLoyaltyCustomerInfo:function(){return t(y,void 0,void 0,(function(){return n(this,(function(t){switch(t.label){case 0:return S()?[4,u({cartId:I()||null})]:[2,null];case 1:return[2,t.sent().data||null]}}))}))},listLoyaltyProgramPointHistory:function(e){return t(y,void 0,void 0,(function(){var t,r;return n(this,(function(n){switch(n.label){case 0:return S()?(t={},(r=null==e?void 0:e.type)&&(t.type=Array.isArray(r)?{in:r}:{eq:r}),[4,c(t)]):[2,[]];case 1:return[2,n.sent().data||[]]}}))}))},useLoyaltyPoints:function(e){return t(y,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return S()?[4,d({input:e})]:[2,!1];case 1:return(t=n.sent()).isSuccess?(r=e.loyaltySpendingMethodId,[4,w.cartStore.getCart()]):[3,3];case 2:n.sent(),n.label=3;case 3:return[2,!!t.isSuccess]}}))}))},removeLoyaltyPointsFromCart:function(){return t(y,void 0,void 0,(function(){var t,e,i,o,a;return n(this,(function(n){switch(n.label){case 0:return S()?(t=I(),e=r||(null===(a=null===(o=null===(i=w.cartStore.cart)||void 0===i?void 0:i.loyaltyLines)||void 0===o?void 0:o[0])||void 0===a?void 0:a.loyaltySpendingMethodId),t&&e?[4,l({cartId:t,loyaltySpendingMethodId:e})]:[2]):[2];case 1:return n.sent().isSuccess?[4,w.cartStore.getCart()]:[3,3];case 2:n.sent(),n.label=3;case 3:return[2]}}))}))},getProducts:function(e){return t(y,void 0,void 0,(function(){var t,r;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?[4,g.searchProducts({input:{productIdList:e,page:1,perPage:e.length,priceListId:v.getPriceListId(),salesChannelId:v.getSalesChannelId()}},[])]:[2,[]];case 1:return t=n.sent(),[2,((null===(r=t.data)||void 0===r?void 0:r.data)||[]).map((function(t){var n,e,r,i,o,a,s;return{id:t.id,name:t.name,mainImageSrc:(null===(o=null===(i=null===(r=null===(e=null===(n=t.variants)||void 0===n?void 0:n[0])||void 0===e?void 0:e.images)||void 0===r?void 0:r.find((function(t){return t.isMain})))||void 0===i?void 0:i.image)||void 0===o?void 0:o.thumbnailSrc)||null,variants:(null===(a=t.variants)||void 0===a?void 0:a.map((function(t){var n,e,r,i;return{id:t.id,mainImageSrc:(null===(r=null===(e=null===(n=t.images)||void 0===n?void 0:n.find((function(t){return t.isMain})))||void 0===e?void 0:e.image)||void 0===r?void 0:r.thumbnailSrc)||null,variantText:(null===(i=t.variantValues)||void 0===i?void 0:i.map((function(t){return t.name})).join(" / "))||null}})))||[],url:null===(s=t.metaData)||void 0===s?void 0:s.slug}}))]}}))}))},getCategories:function(e){return t(y,void 0,void 0,(function(){var t,r,i;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?(t={id:{in:e},pagination:{limit:e.length,page:1}},[4,m.listCategory(t)]):[2,[]];case 1:return r=n.sent(),[2,(null===(i=r.data)||void 0===i?void 0:i.data)||[]]}}))}))},getBrands:function(e){return t(y,void 0,void 0,(function(){var t,r,i;return n(this,(function(n){switch(n.label){case 0:return(null==e?void 0:e.length)?(t={id:{in:e},pagination:{limit:e.length,page:1}},[4,h.listProductBrand(t)]):[2,[]];case 1:return r=n.sent(),[2,(null===(i=r.data)||void 0===i?void 0:i.data)||[]]}}))}))},getTags:function(e){return t(y,void 0,void 0,(function(){return n(this,(function(t){return[2,[]]}))}))},formatCurrency:function(t){return p(t,v.getDefaultCurrencyCode()||"TRY",v.getDefaultCurrencySymbol()||"TRY")}}}var I=function(){e.useEffect((function(){if("undefined"!=typeof window&&"undefined"!=typeof document){var e=!1,o=function(t){if("function"==typeof window.startIkasLoyaltyWidget)try{window.startIkasLoyaltyWidget(t)}catch(t){console.error("[@ikas/storefront] Failed to start loyalty widget",t)}},a=function(t){var n,r=(n=Date.now(),[window.location.href.includes("http://localhost:3333/")?"http://localhost:3000/storefront-widget-script-injector.iife.js":"".concat("/sf/assets/popup/storefront-widget-script-injector.iife.js","?v=").concat(n)])[0];if(r){var i=document.querySelector('script[data-ikas-loyalty-widget="true"]');if(i)"true"===i.dataset.loaded?o(t):i.addEventListener("load",(function(){return o(t)}),{once:!0});else{var a=document.createElement("script");a.src=r,a.defer=!0,a.setAttribute("data-ikas-loyalty-widget","true"),a.addEventListener("load",(function(){a.dataset.loaded="true",e||o(t)}),{once:!0}),a.addEventListener("error",(function(t){console.error("[@ikas/storefront] Failed to load loyalty widget script",r,t)}),{once:!0}),document.body.appendChild(a)}}};return t(void 0,void 0,void 0,(function(){var e,o,s,u,c,d;return n(this,(function(l){switch(l.label){case 0:return l.trys.push([0,3,,4]),(e=v.getLoyaltyPrograms()).length?(o=v.getStorefrontRoutingId(),s=[],e.forEach((function(t){var n;null===(n=t.salesChannels)||void 0===n||n.forEach((function(t){var n;null===(n=t.routingIds)||void 0===n||n.forEach((function(t){s.push(t)}))}))})),e.length>0&&o&&!s.some((function(t){return t===o}))?[2]:[4,i()]):[2];case 1:return(null==(u=l.sent())?void 0:u.isSuccess)&&u.data&&u.data.status===r.ACTIVE?[4,(g=u.data,t(void 0,void 0,void 0,(function(){var e,r,i,o,a,s,u;return n(this,(function(c){switch(c.label){case 0:return e={cdnURL:v.getCdnUrl()||"",merchantId:(null===(a=v.getMerchantSettings())||void 0===a?void 0:a.merchantId)||"",currency:v.getDefaultCurrencySymbol()||"TRY",callbacks:w(g),position:"fixed",storeURL:y()},[4,new Promise((function(t){var n=setInterval((function(){var e=v.getSessionId();e&&(clearInterval(n),t(e))}),100)}))];case 1:return c.sent(),[4,t(void 0,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return(t=f.getInstance().cartStore).isCartLoadFinished?[2]:t.isLoadingCart?[4,new Promise((function(n){var e=setInterval((function(){t.isCartLoadFinished&&(clearInterval(e),n(null))}),100)}))]:[3,2];case 1:case 3:return n.sent(),[2];case 2:return[4,t.getCart()]}}))}))];case 2:return c.sent(),r=f.getInstance(),(i=null===(s=r.cartStore.cart)||void 0===s?void 0:s.id)&&(e.cartId=i),[4,r.customerStore.waitUntilInitialized()];case 3:return c.sent(),(o=null===(u=r.customerStore.customer)||void 0===u?void 0:u.id)&&(e.userId=o),g&&(e.widgetSettings=g),[2,e]}}))})))]:[2];case 2:return c=l.sent(),window.ikasLoyaltyWidgetConfig=c,a(c),[3,4];case 3:return d=l.sent(),console.error("[@ikas/storefront] Failed to initialize loyalty widget",d),[3,4];case 4:return[2]}var g}))})),function(){e=!0}}}),[])};export{I as useLoyaltyWidget};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { APIResponse } from "@ikas/fe-api-client";
|
|
2
|
-
import { CheckStocksQueryParams, CreateKlarnaClientTokenParams, CreateSaleTransactionQueryParams, CreateStripePaymentIntentParams, GetAvailableShippingCountriesQueryParams, GetAvailableStockLocationQueryParams, ListCheckoutSettingsQueryParams, ListPaymentGatewayQueryParams, ListProductFileQueryParams, ListStockLocationQueryParams, RetrieveInstallmentInfoQueryParams, GetPayPalClientIdTokenParams, CreatePayPalOrderParams, GetDigitalProductFileDownloadUrlQueryParams, CheckCartStocksQueryParams, CreateAdyenBalancePlatformPaymentParams, UpdatePayPalOrderParams, HepsipayFrameInitParams, CreateIyzicoCheckoutFormParams, CreateStripeExpressCheckoutSessionParams, UpdateStripeExpressCheckoutSessionParams, GetOrderInvoicePdfUrlQueryParams } from "@ikas/storefront-api";
|
|
2
|
+
import { CheckStocksQueryParams, CreateKlarnaClientTokenParams, CreateSaleTransactionQueryParams, CreateStripePaymentIntentParams, GetAvailableShippingCountriesQueryParams, GetAvailableStockLocationQueryParams, ListCheckoutSettingsQueryParams, ListPaymentGatewayQueryParams, ListProductFileQueryParams, ListStockLocationQueryParams, RetrieveInstallmentInfoQueryParams, GetPayPalClientIdTokenParams, CreatePayPalOrderParams, GetDigitalProductFileDownloadUrlQueryParams, CheckCartStocksQueryParams, CreateAdyenBalancePlatformPaymentParams, UpdatePayPalOrderParams, HepsipayFrameInitParams, CreateIyzicoCheckoutFormParams, CreateStripeExpressCheckoutSessionParams, UpdateStripeExpressCheckoutSessionParams, GetOrderInvoicePdfUrlQueryParams, CreateTkPayCheckoutFormParams } from "@ikas/storefront-api";
|
|
3
3
|
import { IkasAvailableStockLocation, IkasCheckoutSettings, IkasPaymentGateway, IkasStockLocation, IkasProductFile } from "../../models/data";
|
|
4
4
|
export default class CheckoutStore {
|
|
5
5
|
static createSaleTransactionWithCart(params: CreateSaleTransactionQueryParams): Promise<APIResponse<import("@ikas/storefront-api").TransactionResponse> | APIResponse<undefined>>;
|
|
@@ -25,4 +25,5 @@ export default class CheckoutStore {
|
|
|
25
25
|
static createIyzicoCheckoutForm(params: CreateIyzicoCheckoutFormParams): Promise<APIResponse<import("@ikas/storefront-api").CreateIyzicoCheckoutFormResponse>>;
|
|
26
26
|
static createStripeExpressCheckoutSession(params: CreateStripeExpressCheckoutSessionParams): Promise<APIResponse<import("@ikas/storefront-api/build/__api/types").CreateStripeExpressCheckoutSessionResponse>>;
|
|
27
27
|
static updateStripeExpressCheckoutSession(params: UpdateStripeExpressCheckoutSessionParams): Promise<APIResponse<import("@ikas/storefront-api/build/__api/types").StripeExpressCheckoutSessionContextResponse>>;
|
|
28
|
+
static createTkPayCheckoutForm(params: CreateTkPayCheckoutFormParams): Promise<APIResponse<import("@ikas/storefront-api").CreateTkPayCheckoutFormResponse>>;
|
|
28
29
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from'./../../ext/@ikas/fe-api-client/build/utils/api.js';import'./../../ext/axios/index.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js';import{createSaleTransactionWithCart as i,listPaymentGateway as n,getStoreCreditBalance as o,listProductFile as a,getDigitalProductFileDownloadUrl as s,getOrderInvoicePdfUrl as d,retrieveInstallmentInfo as u,checkStocks as c,checkCartStocks as l,listCheckoutSettings as m,getAvailableShippingCountries as p,listStockLocations as f,getAvailableStockLocations as h,createStripePaymentIntent as v,createKlarnaClientToken as j,createAdyenBalancePlatformPaymentSession as x,getPayPalClientId as g,createPayPalOrder as w,updatePaypalOrder as b,hepsipayFrameInit as k,createIyzicoCheckoutForm as y,createStripeExpressCheckoutSession as E,updateStripeExpressCheckoutSession as L}from"@ikas/storefront-api";import"../../models/data/blog/category/index.js";import"../../models/data/blog/content/index.js";import"../../models/data/blog/meta-data/index.js";import"../../models/data/blog/tag/index.js";import"../../models/data/blog/index.js";import"../../models/data/brand/index.js";import"@ikas/storefront-models";import"mobx";import"../../models/data/campaign-offer/index.js";import"../../models/data/cart/campaign-offer/index.js";import"../../models/data/cart/index.js";import"../../models/data/category/path-item/index.js";import"../../models/data/category/index.js";import"../../models/data/checkout/index.js";import{IkasCheckoutSettings as Q}from"../../models/data/checkout-settings/index.js";import"../../models/data/city/index.js";import"../../models/data/country/index.js";import"../../models/data/customer/address/region/index.js";import"../../models/data/customer/address/index.js";import"../../models/data/customer/address/ikas-localized-customer-address.js";import"../../models/data/customer/attribute/index.js";import"../../models/data/customer/review/summary/index.js";import"../../models/data/customer/review/index.js";import"../../models/data/customer/index.js";import"../../models/data/customer-form-data-input/index.js";import"../../models/data/district/index.js";import"../../models/data/favorite-product/index.js";import"../../models/data/filter-category/index.js";import"../../models/data/html-meta-data/index.js";import"../../models/data/image/index.js";import"../../models/data/order/address/region/index.js";import"../../models/data/order/address/index.js";import"../../models/data/order/line-item/option/value/index.js";import"../../models/data/order/line-item/variant/value/index.js";import"../../models/data/order/line-item/variant/index.js";import"../../models/data/order/line-item/index.js";import"../../models/data/order/order-transaction-with-prices/index.js";import"../../models/data/order/package/index.js";import"../../models/data/order/transaction/index.js";import"../../models/data/order/index.js";import{IkasPaymentGateway as P}from"../../models/data/payment-gateway/index.js";import"../../models/data/product/attribute-value/index.js";import"../../models/data/product/filter/index.js";import"../../models/data/product/campaign-offer/index.js";import"../../models/data/product/option-set/option/index.js";import"../../models/data/product/option-set/index.js";import"../../models/data/product/stock-location/index.js";import"../../models/data/product/variant/price/index.js";import"../../models/data/product/variant/index.js";import"../../models/data/variant-type/index.js";import"../../models/data/product/index.js";import{IkasProductFile as S}from"../../models/data/product-file/index.js";import"../../models/data/raffle/index.js";import"../../models/data/shipping-zone/state/city/district/region/index.js";import"../../models/data/state/index.js";import{IkasAvailableStockLocation as _}from"../../models/data/stock-location/available/index.js";import{IkasStockLocation as C}from"../../models/data/stock-location/index.js";import"../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../models/data/storefront-popup/index.js";import"../../models/data/theme-json/index.js";import"../../models/data/theme-json/component/index.js";import"../../models/data/theme-json/custom-data/index.js";import"../../models/data/variant-type/variant-value/index.js";import"@ikas/localized-address";var I=function(){function I(){}return I.createSaleTransactionWithCart=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,i(r)];case 1:return[2,t.sent()]}}))}))},I.listPaymentGateway=function(i){var o;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,n(i)];case 1:return t=e.sent(),[2,new r(null===(o=t.data)||void 0===o?void 0:o.map((function(t){return new P(t)})),t.graphQLErrors)]}}))}))},I.getStoreCreditBalance=function(){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,o()];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.listProductFile=function(i){var n;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,a(i)];case 1:return t=e.sent(),[2,new r(null===(n=t.data)||void 0===n?void 0:n.map((function(t){return new S(t)})),t.graphQLErrors)]}}))}))},I.getDigitalProductFileDownloadUrl=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,s(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.getOrderInvoicePdfUrl=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,d(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.retrieveInstallmentInfo=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,u(r)];case 1:return[2,t.sent()]}}))}))},I.checkStocks=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,c(r)];case 1:return[2,t.sent()]}}))}))},I.checkCartStocks=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,l(r)];case 1:return[2,t.sent()]}}))}))},I.listCheckoutSettings=function(i){var n;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,m(i)];case 1:return t=e.sent(),[2,new r(null===(n=t.data)||void 0===n?void 0:n.map((function(t){return new Q(t)})),t.graphQLErrors)]}}))}))},I.getAvailableShippingCountries=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,p(r)];case 1:return[2,t.sent()]}}))}))},I.listStockLocation=function(i){var n;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,f(i)];case 1:return t=e.sent(),[2,new r(null===(n=t.data)||void 0===n?void 0:n.map((function(t){return new C(t)})),t.graphQLErrors)]}}))}))},I.getAvailableStockLocations=function(i){var n;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,h(i)];case 1:return t=e.sent(),[2,new r(null===(n=t.data)||void 0===n?void 0:n.map((function(t){return new _(t)})),t.graphQLErrors)]}}))}))},I.createStripePaymentIntent=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,v(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.createKlarnaClientToken=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,j(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.createAdyenBalancePlatformPaymentSession=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,x(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.getPayPalClientId=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,g(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.createPayPalOrder=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,w(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.updatePaypalOrder=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,b(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.hepsipayFrameInit=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,k(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.createIyzicoCheckoutForm=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,y(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.createStripeExpressCheckoutSession=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,E(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I.updateStripeExpressCheckoutSession=function(i){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,L(i)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},I}();export{I as default};
|
|
1
|
+
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from'./../../ext/@ikas/fe-api-client/build/utils/api.js';import'./../../ext/axios/index.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js';import'./../../ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js';import{createSaleTransactionWithCart as n,listPaymentGateway as i,getStoreCreditBalance as o,listProductFile as a,getDigitalProductFileDownloadUrl as s,getOrderInvoicePdfUrl as d,retrieveInstallmentInfo as u,checkStocks as c,checkCartStocks as l,listCheckoutSettings as m,getAvailableShippingCountries as p,listStockLocations as f,getAvailableStockLocations as h,createStripePaymentIntent as v,createKlarnaClientToken as j,createAdyenBalancePlatformPaymentSession as x,getPayPalClientId as g,createPayPalOrder as w,updatePaypalOrder as b,hepsipayFrameInit as k,createIyzicoCheckoutForm as y,createStripeExpressCheckoutSession as E,updateStripeExpressCheckoutSession as L,createTkPayCheckoutForm as Q}from"@ikas/storefront-api";import"../../models/data/blog/category/index.js";import"../../models/data/blog/content/index.js";import"../../models/data/blog/meta-data/index.js";import"../../models/data/blog/tag/index.js";import"../../models/data/blog/index.js";import"../../models/data/brand/index.js";import"@ikas/storefront-models";import"mobx";import"../../models/data/campaign-offer/index.js";import"../../models/data/cart/campaign-offer/index.js";import"../../models/data/cart/index.js";import"../../models/data/category/path-item/index.js";import"../../models/data/category/index.js";import"../../models/data/checkout/index.js";import{IkasCheckoutSettings as P}from"../../models/data/checkout-settings/index.js";import"../../models/data/city/index.js";import"../../models/data/country/index.js";import"../../models/data/customer/address/region/index.js";import"../../models/data/customer/address/index.js";import"../../models/data/customer/address/ikas-localized-customer-address.js";import"../../models/data/customer/attribute/index.js";import"../../models/data/customer/review/summary/index.js";import"../../models/data/customer/review/index.js";import"../../models/data/customer/index.js";import"../../models/data/customer-form-data-input/index.js";import"../../models/data/district/index.js";import"../../models/data/favorite-product/index.js";import"../../models/data/filter-category/index.js";import"../../models/data/html-meta-data/index.js";import"../../models/data/image/index.js";import"../../models/data/order/address/region/index.js";import"../../models/data/order/address/index.js";import"../../models/data/order/line-item/option/value/index.js";import"../../models/data/order/line-item/variant/value/index.js";import"../../models/data/order/line-item/variant/index.js";import"../../models/data/order/line-item/index.js";import"../../models/data/order/order-transaction-with-prices/index.js";import"../../models/data/order/package/index.js";import"../../models/data/order/transaction/index.js";import"../../models/data/order/index.js";import{IkasPaymentGateway as S}from"../../models/data/payment-gateway/index.js";import"../../models/data/product/attribute-value/index.js";import"../../models/data/product/filter/index.js";import"../../models/data/product/campaign-offer/index.js";import"../../models/data/product/option-set/option/index.js";import"../../models/data/product/option-set/index.js";import"../../models/data/product/stock-location/index.js";import"../../models/data/product/variant/price/index.js";import"../../models/data/product/variant/index.js";import"../../models/data/variant-type/index.js";import"../../models/data/product/index.js";import{IkasProductFile as C}from"../../models/data/product-file/index.js";import"../../models/data/raffle/index.js";import"../../models/data/shipping-zone/state/city/district/region/index.js";import"../../models/data/state/index.js";import{IkasAvailableStockLocation as _}from"../../models/data/stock-location/available/index.js";import{IkasStockLocation as I}from"../../models/data/stock-location/index.js";import"../../models/data/storefront-popup/storefront-popup-display-settings/index.js";import"../../models/data/storefront-popup/storefront-popup-page-filter/index.js";import"../../models/data/storefront-popup/index.js";import"../../models/data/theme-json/index.js";import"../../models/data/theme-json/component/index.js";import"../../models/data/theme-json/custom-data/index.js";import"../../models/data/variant-type/variant-value/index.js";import"@ikas/localized-address";var T=function(){function T(){}return T.createSaleTransactionWithCart=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,n(r)];case 1:return[2,t.sent()]}}))}))},T.listPaymentGateway=function(n){var o;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,i(n)];case 1:return t=e.sent(),[2,new r(null===(o=t.data)||void 0===o?void 0:o.map((function(t){return new S(t)})),t.graphQLErrors)]}}))}))},T.getStoreCreditBalance=function(){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,o()];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.listProductFile=function(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,a(n)];case 1:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.map((function(t){return new C(t)})),t.graphQLErrors)]}}))}))},T.getDigitalProductFileDownloadUrl=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,s(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.getOrderInvoicePdfUrl=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,d(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.retrieveInstallmentInfo=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,u(r)];case 1:return[2,t.sent()]}}))}))},T.checkStocks=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,c(r)];case 1:return[2,t.sent()]}}))}))},T.checkCartStocks=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,l(r)];case 1:return[2,t.sent()]}}))}))},T.listCheckoutSettings=function(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,m(n)];case 1:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.map((function(t){return new P(t)})),t.graphQLErrors)]}}))}))},T.getAvailableShippingCountries=function(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,p(r)];case 1:return[2,t.sent()]}}))}))},T.listStockLocation=function(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,f(n)];case 1:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.map((function(t){return new I(t)})),t.graphQLErrors)]}}))}))},T.getAvailableStockLocations=function(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,h(n)];case 1:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.map((function(t){return new _(t)})),t.graphQLErrors)]}}))}))},T.createStripePaymentIntent=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,v(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createKlarnaClientToken=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,j(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createAdyenBalancePlatformPaymentSession=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,x(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.getPayPalClientId=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,g(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createPayPalOrder=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,w(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.updatePaypalOrder=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,b(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.hepsipayFrameInit=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,k(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createIyzicoCheckoutForm=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,y(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createStripeExpressCheckoutSession=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,E(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.updateStripeExpressCheckoutSession=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,L(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T.createTkPayCheckoutForm=function(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,Q(n)];case 1:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))},T}();export{T as default};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront",
|
|
3
|
-
"version": "6.1.0-beta.
|
|
3
|
+
"version": "6.1.0-beta.353",
|
|
4
4
|
"description": "Storefront functionality for ikas storefront themes.",
|
|
5
5
|
"author": "ikas",
|
|
6
6
|
"license": "ISC",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"swiper": "11.0.6"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@ikas/storefront-api": "^6.1.0-beta.
|
|
27
|
-
"@ikas/storefront-config": "^6.1.0-beta.
|
|
28
|
-
"@ikas/storefront-model-functions": "^6.1.0-beta.
|
|
29
|
-
"@ikas/storefront-models": "^6.1.0-beta.
|
|
30
|
-
"@ikas/storefront-providers": "^6.1.0-beta.
|
|
26
|
+
"@ikas/storefront-api": "^6.1.0-beta.353",
|
|
27
|
+
"@ikas/storefront-config": "^6.1.0-beta.353",
|
|
28
|
+
"@ikas/storefront-model-functions": "^6.1.0-beta.353",
|
|
29
|
+
"@ikas/storefront-models": "^6.1.0-beta.353",
|
|
30
|
+
"@ikas/storefront-providers": "^6.1.0-beta.353",
|
|
31
31
|
"@ikas/localized-address": "1.0.0-beta.6",
|
|
32
32
|
"@adyen/adyen-web": "^5.57.0",
|
|
33
33
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@ikas/localized-address": "1.0.0-beta.6",
|
|
65
|
-
"@ikas/storefront-api": "^6.1.0-beta.
|
|
66
|
-
"@ikas/storefront-config": "^6.1.0-beta.
|
|
67
|
-
"@ikas/storefront-model-functions": "^6.1.0-beta.
|
|
68
|
-
"@ikas/storefront-models": "^6.1.0-beta.
|
|
69
|
-
"@ikas/storefront-providers": "^6.1.0-beta.
|
|
65
|
+
"@ikas/storefront-api": "^6.1.0-beta.353",
|
|
66
|
+
"@ikas/storefront-config": "^6.1.0-beta.353",
|
|
67
|
+
"@ikas/storefront-model-functions": "^6.1.0-beta.353",
|
|
68
|
+
"@ikas/storefront-models": "^6.1.0-beta.353",
|
|
69
|
+
"@ikas/storefront-providers": "^6.1.0-beta.353",
|
|
70
70
|
"mobx": "^6.1.3",
|
|
71
71
|
"mobx-react-lite": "^3.1.5",
|
|
72
72
|
"next": "12.2.0",
|