jQuery(function($) { var hotinfo_config = {"id":"143","0":"143","shop_id":"c9d157608b04ea2f02795211e29bcd2483b2d94a","1":"c9d157608b04ea2f02795211e29bcd2483b2d94a","enabled":"0","2":"0","fixed":"0","3":"0","clientdisable":"1","4":"1","timeshowed":"3000","5":"3000","bottom_position":"0","6":"0","bg_color":"rgb(255, 70, 0)","7":"rgb(255, 70, 0)","text_color":"rgb(255, 255, 255)","8":"rgb(255, 255, 255)","date_created":"2019-12-24 08:14:04","9":"2019-12-24 08:14:04"}; var hotinfo_phrases = []; //przygotowanie zmiennych konfiguracyjnych var enabled = null; var fixed = null; var clientdisable = null; var bg_color = null; var text_color = null; var bottom_position = null; var timeshowed = null; $.each(hotinfo_config, function(index, value){ //each po tablicy z konfiguracja if(index == 'enabled')enabled=value; if(index == 'fixed')fixed=value; if(index == 'clientdisable')clientdisable=value; if(index == 'bg_color')bg_color=value; if(index == 'text_color')text_color=value; if(index == 'bottom_position')bottom_position=value; if(index == 'timeshowed')timeshowed=value; }); if(enabled == 1){ //jesli dodatek jest wlaczony //tworzenie elementu hotinfo i ustawienie podstawowej konfiguracji var hotinfo_element = $('
').attr( { 'data-name': "maxsote_hotinfo" }).css( { "width": "100%", "padding": "10px 0", "color": text_color, "background": bg_color, "font-size": "11pt", "text-align": "center", "font-weight": "600", "z-index": "99999", "top": "0", "cursor": "pointer", "height": "20px", "position" : "relative", "box-sizing" : "initial" } ); //sprawdzenie czy istnieje w cookie zmienna sygnalizujaca wylaczenie przez uzytkownika var client_disabled = $.cookie("hotinfo_clientdisabled"); if(typeof client_disabled == 'undefined'){ client_disabled = false; } //ustalenie pozycji statycznej hotinfo (gora czy dol strony) if(client_disabled==0 || clientdisable==0){ //jesli uzytkownik nie wylaczyl hotinfo lub nie ma mozliwosci wylaczenia przez uzytkownika if(bottom_position == 1) { hotinfo_element.appendTo("body"); } else { hotinfo_element.prependTo("body"); } } //ustalenie css czy hotinfo ma byc fixed if(fixed && fixed==1 && client_disabled==0){ if(bottom_position == 1) //jesli na dole to fixed od dolu { hotinfo_element.css({ "position" : "fixed", "bottom": "0px", "left" : "0px", "top" : "inherit" }); $("body").css("padding-bottom","40px"); }else{ //jesli u gory to fixed od gory hotinfo_element.css({ "position" : "fixed", "top": "0px", "left" : "0px" }); $("body").css("padding-top","40px"); //fix basket-contain if($(".basket-contain").length){ var topval = parseInt($(".basket-contain").css('top')); topval += 40; //console.log(topval); $(".basket-contain").css('top',topval+"px"); } } } //ustalenie czy hotinfo moze zostac wylaczone przez uzytkownika if(clientdisable==1){ //jesli jest taka mozliwosc, dodaj przycisk zamknij $('').css( { "display" : "innline-block", "cursor" : "pointer", "color" : text_color, "font-size" : "11pt", "position" : "absolute", "top" : "8px", "right" : "8px", "font-weight" : "bold", "border" : "2px solid", "border-color" : text_color, "padding" : "2px 6px", "padding-top" : "1px", "border-radius" : "100%" } ).text("X").attr("title","Wyłącz ten pasek na 1 dzień").appendTo('#MX_hotinfo'); $("#hotinfo_close").click(function(){ $("#MX_hotinfo").slideUp(); $("body").css("padding-bottom","0"); $("body").css("padding-top","0"); //fix basket-contain if($(".basket-contain").length && bottom_position!=1){ var topval = parseInt($(".basket-contain").css('top')); topval -= 40; $(".basket-contain").css('top',topval+"px"); } $.cookie('hotinfo_clientdisabled',1,{path: '/', expires : 1}); }); } //pobieranie szerokości okna i ustalenie maksymalnej szerokosci fraz //var width = $(".container").outerWidth(); //if(!width || width==0 || width=='undefined'){ // width = 1200; //} $('').css( { "width" : "88%", "margin" : "0 6%", "text-align" : "center", "white-space" : "nowrap", "text-overflow" : "ellipsis", "overflow" : "hidden", "max-height" : "21px" } ).appendTo('#MX_hotinfo'); //obsługa RWD if($(window).width() < 600){ $("#MX_phrases").css({ "width" : "78%", "margin" : "0 11%" }); } //populacja hotinfo frazami //pobranie obecnego jezyka function APIloader() { if(!window.frontAPI) { setTimeout(APIloader,0); } else { var current_lang = frontAPI.getLang(); $.each(hotinfo_phrases, function(index, value){ //each po tablicy z konfiguracja if(value['phrase_active']==1 && value['phrase_lang_id']==current_lang){ $('').text(value['phrase_text']).css("color",text_color).addClass("hotinfo_phrase_"+index).appendTo('#MX_phrases'); } if(!value['phrase_link']==""){ //jesli link nie jest pusty $(".hotinfo_phrase_"+index).attr({ "href": value['phrase_link'] }) } if(!value['phrase_link']=="" && value['phrase_targetblank']==1){ //jesli link nie jest pusty i ma otworzyc w nowej karcie $(".hotinfo_phrase_"+index).attr({ "target": "_blank" }) } }); } } APIloader(); //obsluga a'la slick var checkExist = setInterval(function() { if ($('.k_phrases > a:first').length) { $('.k_phrases > a:first').show(); //pokaz pierwszy element var counter = 0; $(".k_phrase").each(function(){ //sprawdz ile jest elementow hotinfo counter++; }); if(counter>1){ //jesli jest wiecej niz 1 element to uruchom karuzele setInterval(function() { $('.k_phrases > a:first') .fadeOut(200) .next() .delay(200) .fadeIn(200) .end() .appendTo('.k_phrases'); }, timeshowed); } clearInterval(checkExist); } }, 100); } //end if enabled });