(function($){
var pathArray=window.location.pathname.split('/').filter(Boolean);
var currPage=pathArray[0];
if(currPage!=="contato"){
return;
}
var host=window.location.protocol + "//" + window.location.host;
var action=host + "/wp-json/wp/v2/lojas?per_page=1&";
if(window.location.hostname=='localhost'){
action=host + "/_ativos/daycambio.com.br/wp-json/wp/v2/lojas?per_page=1&";
}
var selectedLoja=$("#selectedLoja").val();
if(selectedLoja&&selectedLoja!=="0"){
action +="loja_codigo=" + selectedLoja;
}else{
console.log("Galeria Contato: Nenhuma loja selecionada no modal.");
return;
}
console.log("Iniciando carregamento da galeria de contato: " + action);
$.getJSON(action, function(data){
if(!data||data.length===0||!data[0].loja_imagens_galeria){
console.log("Galeria Contato: Nenhuma imagem encontrada para esta loja.");
return;
}
var i=0;
var html='<h2 class="bold700">Galeria de Fotos</h2><div class="loja-galeria"><div id="gallery-container-pic">';
$.each(data[0].loja_imagens_galeria, function(key, val){
html +='<div class="gallery-item" data-exthumbimage="'+val+'" data-src="'+val+'"><img src="'+val+'"></div>';
i++;
});
html +='</div></div>';
if(i > 0){
var $target=$("#loja-galeria");
if($target.length===0){
if($(".contato-loja-info").length > 0){
$(".contato-loja-info").append('<div id="loja-galeria"></div>');
$target=$("#loja-galeria");
}else{
return;
}}
$target.html(html);
if(typeof lightGallery==='function'){
lightGallery(document.getElementById("loja-galeria"), {
speed: 500,
selector: '.gallery-item',
exThumbImage: 'data-exthumbimage',
appendSubHtmlTo: ".lg-item",
subHtmlSelectorRelative: true,
slideDelay: 400
});
}}
});
})(jQuery);