define(['jquery','mage/translate','mage/mage','Magento_Catalog/js/price-utils','catalogAddToCart'],function($,$t,mage,priceUtils,catalogAddToCart){'use strict';return function(widget){$.widget('mage.SwatchRenderer',widget,{_EventListener:function(){var response=this._super();return response;},_init:function(){if(_.isEmpty(this.options.jsonConfig.images)){this.options.useAjax=true;this._debouncedLoadProductMedia=_.debounce(this._LoadProductMedia.bind(this),500);} if(this.options.jsonConfig!==''&&this.options.jsonSwatchConfig!==''){this.options.jsonConfig.mappedAttributes=_.clone(this.options.jsonConfig.attributes);this._sortAttributes();this._RenderControls();if(this.options.jsonConfig.attributes.length>0){var selectswatch=this.element.find('.'+this.options.classes.attributeClass+' .'+this.options.classes.attributeOptionsWrapper);$.each(selectswatch,function(index,item){var swatchOption=$(item).find('div.swatch-option').first();if(swatchOption.length&&!$(item).find('div.swatch-option').hasClass('selected')){swatchOption.trigger('click');}});} this._setPreSelectedGallery();$(this.element).trigger('swatch.initialized');}else{console.log('SwatchRenderer: No input data received');} this.options.tierPriceTemplate=$(this.options.tierPriceTemplateSelector).html();},_OnClick:function($this,$widget){var response=this._super($this,$widget);this.updateButtonText();return response;},_OnChange:function($this,$widget){var response=this._super($this,$widget);this.updateButtonText();return response;},updateButtonText:function(){var $widget=this,result=$widget._getNewPrices();var submitForm=$('#product_addtocart_form');var cartButton=submitForm.find('#product-addtocart-button');var productId=submitForm.find('input[name="product"]').val();var priceText=$('.product-info-price #product-price-'+productId);var title='Add to Cart';var price=result.finalPrice.amount;var qty=submitForm.find('input[name="qty"]').val()??1;var finalPrice=qty*price;priceText.data('price-amount',finalPrice);var finalPriceFormat=this.getFormattedPrice(finalPrice);var finalPriceText=finalPriceFormat+' | '+$t(title);cartButton.find('span').text(finalPriceText);cartButton.attr('title',finalPriceText);submitForm.catalogAddToCart({bindSubmit:false,addToCartButtonTextWhileAdding:finalPriceFormat+' | '+$t('adding..'),addToCartButtonTextDefault:finalPriceText,addToCartButtonTextAdded:finalPriceFormat+' | '+$t('added'),});},getFormattedPrice:function(price){var priceFormat={decimalSymbol:'.',groupLength:3,groupSymbol:",",integerRequired:false,pattern:this.options.jsonConfig.currencyFormat,precision:2,requiredPrecision:2};return priceUtils.formatPrice(price,priceFormat);},_RenderSwatchOptions:function(config,controlId){var optionConfig=this.options.jsonSwatchConfig[config.id],optionJsonConfig=this.options.jsonConfig.salable[config.id]||[],optionClass=this.options.classes.optionClass,sizeConfig=this.options.jsonSwatchImageSizeConfig,moreLimit=parseInt(this.options.numberToShow,10),moreClass=this.options.classes.moreButton,moreText=this.options.moreButtonText,countAttributes=0,html='';if(!this.options.jsonSwatchConfig.hasOwnProperty(config.id)){return'';} $.each(config.options,function(index){var id,type,value,thumb,label,width,height,attr,swatchImageWidth,swatchImageHeight;if(!optionConfig.hasOwnProperty(this.id)){return'';} if(moreLimit===countAttributes++){html+=''+moreText+'';} id=this.id;type=parseInt(optionConfig[id].type,10);value=optionConfig[id].hasOwnProperty('value')?$('').text(optionConfig[id].value).html():'';thumb=optionConfig[id].hasOwnProperty('thumb')?optionConfig[id].thumb:'';width=_.has(sizeConfig,'swatchThumb')?sizeConfig.swatchThumb.width:110;height=_.has(sizeConfig,'swatchThumb')?sizeConfig.swatchThumb.height:90;label=this.label?$('').text(this.label).html():'';attr=' id="'+controlId+'-item-'+id+'"'+' index="'+index+'"'+' aria-checked="false"'+' aria-describedby="'+controlId+'"'+' tabindex="0"'+' data-option-type="'+type+'"'+' data-option-id="'+id+'"'+' data-option-label="'+label+'"'+' aria-label="'+label+'"'+' role="option"'+' data-thumb-width="'+width+'"'+' data-thumb-height="'+height+'"';attr+=thumb!==''?' data-option-tooltip-thumb="'+thumb+'"':'';attr+=value!==''?' data-option-tooltip-value="'+value+'"':'';swatchImageWidth=_.has(sizeConfig,'swatchImage')?sizeConfig.swatchImage.width:30;swatchImageHeight=_.has(sizeConfig,'swatchImage')?sizeConfig.swatchImage.height:20;if(!this.hasOwnProperty('products')||this.products.length<=0||optionJsonConfig[this.id]==undefined||optionJsonConfig[this.id].length<=0){attr+=' data-option-empty="true"';} if(type===0){html+='