define(["knockout","CCi18n","pubsub","ccRestClient","ccConstants","notifier","spinner","navigation"],function(e,t,n,r,i,s,o,u){"use strict";return{WIDGET_ID:"Frigelar_Add_Items_to_Cart_by_URL",intervalToAddEachProductToCart_ms:e.observable(2e3),errorMessageGettingProductsUrlParams:e.observable("Error gettings products by url param"),errorMessageGettingProductsOccRequest:e.observable("Error gettings products by occ request"),errorMessageGettingExpecificProductData:e.observable("Error gettings expecific product data: "),spinnerOptions:{customSelector:".cart"},onLoad:function(e){var t=e;$.Topic(n.topicNames.PAGE_PARAMETERS).subscribe(function(){var e=this.parameters;e["add-to-cart"]&&t.addItemsToCart(e)})},beforeAppear:function(e){},addItemsToCart:function(e){var t=this;window.location.pathname=="/"?t.doValidationsBeforeAdd(e):setTimeout(function(){t.addToCartFlow(e)},1e3)},doValidationsBeforeAdd:function(e){var t=this,n=t.user&&t.user()&&t.user().loggedIn&&t.user().loggedIn();setTimeout(function(){n?t.genereteCartAndRedirectUser(e):$("#frigelar-login").click()},1500)},genereteCartAndRedirectUser:function(e){var t=this,n=t.cart().allItems(),r=t.getProductsByPageParams(e);if(r&&r.length>0){if(n.length>=0){var i=[];r.forEach(function(e){var t=n.filter(function(t){return e.sku===t.productId});if(t&&t.length>0){var r=e.qtd-t[0].quantity();r>0&&(e.qtd=r,i.push(e))}else i.push(e)}),r=i}var s=t.genereteAbandonCartUrl(r);u.goTo(s)}else t.sendErrorMessage(t.errorMessageGettingProductsUrlParams())},addToCartFlow:function(e){var t=this;o.create(t.spinnerOptions);var n=t.getProductsByPageParams(e);n&&n.length>0?t.getProductsBySku(n):t.sendErrorMessage(t.errorMessageGettingProductsUrlParams()),window.history.replaceState(null,null,window.location.pathname)},getProductsByPageParams:function(e){var t=[];if(e["add-to-cart"]){var n=e.items?e.items.split(";"):[];n.forEach(function(e){if(!e||e=="null"||e=="undefined ")return;var n=e.split(",");t.push({productData:null,sku:n[0],qtd:n[1]?n[1]:1})})}return t},genereteAbandonCartUrl:function(e){var t="/cart";return e.length>0&&(t+="?add-to-cart=true&items=",e.forEach(function(n,r){t+=""+n.sku+","+n.qtd+(r+1==e.length?"":";")})),t},getProductsBySku:function(e){var t=this,n=i.ENDPOINT_PRODUCTS_LIST_PRODUCTS,s={q:null},o="",u=function(n){n.items&&n.items.length>0&&n.items.forEach(function(t){e.find(function(e){return e.sku==t.id}).productData=t}),t.handleItemsListToAddToCart(e)},a=function(e){t.sendErrorMessage(t.errorMessageGettingProductsOccRequest())};e.forEach(function(e){o!=""&&(o+=" or "),o+='id eq "'+e.sku+'"'}),s.q=o,r.request(n,s,u,a)},handleItemsListToAddToCart:function(e){var t=this;setTimeout(function(){o.destroy(t.spinnerOptions)},(e.length+1)*t.intervalToAddEachProductToCart_ms()),e.forEach(function(e,n){setTimeout(function(){o.create(t.spinnerOptions),e.productData?t.handleAddToCart(e.productData,e.qtd):t.sendErrorMessage(t.errorMessageGettingExpecificProductData()+e.sku)},n*t.intervalToAddEachProductToCart_ms())})},handleAddToCart:function(e,t){var n=this;if(e){var r={repositoryId:"no-warranty"};n.addItemToCart(e,r,t)}},addItemToCart:function(e,t,r){if(e){var i=$.extend(!0,{},e);i.orderQuantity=r?Math.round(r):1,i.catRefId=e.childSKUs[0].repositoryId,i.selectedAddOnProducts=[];if(t){var s=e.addOnProducts.find(function(e){return e.addOnOptions[0].product.repositoryId==t.repositoryId});s&&(s.addOnOptions[0].product=t,s.addOnOptions[0].quantity=1,i.selectedAddOnProducts.push(s))}$.Topic(n.topicNames.CART_ADD).publishWith(i,[{message:"success"}])}},sendSuccessMessage:function(e){var t=this;s.sendMessage(t.WIDGET_ID,e,"success",!0,!1,null,null,null)},sendErrorMessage:function(e){var t=this;s.sendError(t.WIDGET_ID,e,!0)},getProductStock:function(){var e={products:"kit4374",catalogId:"cloudCatalog"};r.request(i.ENDPOINT_PRODUCTS_AVAILABILITY,e,function(e){},function(e){})}}})