';viewBtn.setAttribute('aria-label','View image');viewBtn.setAttribute('title','View image');viewBtn.addEventListener('click',(e)=>{e.stopPropagation();this.openLightbox(item)});actionsContainer.appendChild(viewBtn);if(link&&link.trim()!==''){const linkBtn=document.createElement('div');linkBtn.className='fg_action-btn fg_link-btn';linkBtn.innerHTML='';linkBtn.setAttribute('aria-label','Visit link');linkBtn.setAttribute('title','Visit link');linkBtn.addEventListener('click',(e)=>{e.stopPropagation();window.location.href=link});actionsContainer.appendChild(linkBtn)} item.appendChild(actionsContainer);if('ontouchstart' in window){item.addEventListener('touchstart',function(e){document.querySelectorAll('.fg_item.active-touch').forEach(activeItem=>{if(activeItem!==this){activeItem.classList.remove('active-touch')}});this.classList.toggle('active-touch')})}})} createTagFilters(){const allTags=new Set();const tagCounts={};this.items.forEach(item=>{const tagAttr=item.getAttribute('data-tag');if(tagAttr){const tags=tagAttr.split(',').map(tag=>tag.trim());tags.forEach(tag=>{allTags.add(tag);tagCounts[tag]=(tagCounts[tag]||0)+1})}});const allFilter=document.querySelector('[data-filter="all"]');if(allFilter){const currentText=allFilter.textContent;allFilter.textContent=`${currentText} (${this.items.length})`} allTags.forEach(tag=>{const li=document.createElement('li');li.setAttribute('data-filter',tag);li.textContent=`${tag} (${tagCounts[tag]})`;this.filterList.appendChild(li)})} bindEvents(){const filterItems=this.filterList.querySelectorAll('li');filterItems.forEach(item=>{item.addEventListener('click',()=>{filterItems.forEach(filter=>filter.classList.remove('active'));item.classList.add('active');const filter=item.getAttribute('data-filter');this.filterGallery(filter)})});this.items.forEach(item=>{const link=item.getAttribute('data-link');if((!link||link.trim()==='')||!this.isBypassGallery){item.addEventListener('click',(e)=>{if(!e.target.closest('.fg_action-btn')){e.preventDefault();this.openLightbox(item)}})}else if(this.isBypassGallery&&link&&link.trim()!==''){item.addEventListener('click',(e)=>{if(!e.target.closest('.fg_view-btn')){e.preventDefault();window.location.href=link}})}});this.lightboxClose.addEventListener('click',(e)=>{e.stopPropagation();this.closeLightbox()});this.lightboxPrev.addEventListener('click',(e)=>{e.stopPropagation();this.navigateLightbox('prev')});this.lightboxNext.addEventListener('click',(e)=>{e.stopPropagation();this.navigateLightbox('next')});document.addEventListener('keydown',(e)=>{if(!this.lightbox.classList.contains('fg_active'))return;if(e.key==='Escape')this.closeLightbox();if(e.key==='ArrowLeft')this.navigateLightbox('prev');if(e.key==='ArrowRight')this.navigateLightbox('next');});this.lightbox.addEventListener('click',(e)=>{if(e.target===this.lightbox){this.closeLightbox()}});window.addEventListener('resize',()=>{this.refreshLayout()});document.addEventListener('touchstart',(e)=>{if(!e.target.closest('.fg_item')){document.querySelectorAll('.fg_item.active-touch').forEach(item=>{item.classList.remove('active-touch')})}})} filterGallery(filter){if(this.activeFilter===filter)return;this.activeFilter=filter;if(this.loadingIndicator){this.loadingIndicator.style.display='block'} this.items.forEach(item=>{item.classList.remove('fg_show')});setTimeout(()=>{this.items.forEach((item,index)=>{if(filter==='all'){item.classList.remove('fg_hide');setTimeout(()=>{item.classList.add('fg_show')},index*30)}else{const tags=item.getAttribute('data-tag');if(tags&&tags.split(',').map(t=>t.trim()).includes(filter)){item.classList.remove('fg_hide');setTimeout(()=>{item.classList.add('fg_show')},index*30)}else{item.classList.add('fg_hide');item.classList.remove('fg_show')}}});this.filteredItems=this.items.filter(item=>!item.classList.contains('fg_hide'));setTimeout(()=>{if(this.loadingIndicator){this.loadingIndicator.style.display='none'}},this.items.length*30+100)},300)} refreshLayout(){} openLightbox(clickedItem){if(this.isAnimating)return;this.isAnimating=!0;this.currentIndex=this.filteredItems.findIndex(item=>item===clickedItem);if(this.currentIndex===-1){this.isAnimating=!1;return} this.lightbox.style.display='flex';document.querySelectorAll('.fg_lightbox.fg_active').forEach(box=>{if(box!==this.lightbox){box.classList.remove('fg_active');setTimeout(()=>{box.style.display='none'},300)}});this.setLightboxImage(this.currentIndex,()=>{this.lightbox.classList.add('fg_active');setTimeout(()=>{this.isAnimating=!1},300)})} closeLightbox(){if(this.isAnimating)return;this.isAnimating=!0;this.lightbox.classList.remove('fg_active');setTimeout(()=>{this.lightbox.style.display='none';this.lightboxImg.setAttribute('src','');this.isAnimating=!1},300)} navigateLightbox(direction){if(this.isAnimating||this.filteredItems.length<=1)return;this.isAnimating=!0;this.lightboxImg.style.opacity='0';let newIndex;if(direction==='prev'){newIndex=(this.currentIndex-1+this.filteredItems.length)%this.filteredItems.length}else{newIndex=(this.currentIndex+1)%this.filteredItems.length} setTimeout(()=>{this.currentIndex=newIndex;this.setLightboxImage(newIndex,()=>{this.lightboxImg.style.opacity='1';setTimeout(()=>{this.isAnimating=!1},300)})},300)} setLightboxImage(index,callback){const item=this.filteredItems[index];const img=item.querySelector('img');const title=item.getAttribute('data-title');this.showLightboxLoading();const imageSrc=img.getAttribute('data-src')||img.src;this.lightboxImg.setAttribute('alt',title);this.lightboxTitle.textContent=title;this.lightboxImg.onload=()=>{this.hideLightboxLoading();if(callback)callback();};this.lightboxImg.onerror=()=>{this.hideLightboxLoading();if(callback)callback();};this.lightboxImg.setAttribute('src',imageSrc)} showLightboxLoading(){this.lightboxLoading.style.display='block'} hideLightboxLoading(){this.lightboxLoading.style.display='none'}} document.addEventListener('DOMContentLoaded',()=>{const filterGalleryModules=document.querySelectorAll('.modul-filter-gallery');filterGalleryModules.forEach(module=>{new FilterGallery(module)})});const DEFAULT_OPTIONS={rootMargin:'0px',threshold:0.1};class ImageLazyLoader{constructor(options={}){this.options={...DEFAULT_OPTIONS,...options};this.images=[];this.observer=null;this.loadedImages=new WeakSet();this.init()} static isIntersectionObserverSupported(){return'IntersectionObserver' in window&&'IntersectionObserverEntry' in window&&'intersectionRatio' in window.IntersectionObserverEntry.prototype} init(){if(ImageLazyLoader.isIntersectionObserverSupported()){this.observer=new IntersectionObserver(this.onIntersection.bind(this),{rootMargin:this.options.rootMargin,threshold:this.options.threshold})} this.loadImages()} loadImages(){this.images=Array.from(document.querySelectorAll('img[data-src]'));if(this.observer){this.images.forEach(img=>{if(!this.loadedImages.has(img)){this.observer.observe(img)}})}else{this.loadAllImages()}} onIntersection(entries){entries.forEach(entry=>{if(entry.isIntersecting){this.loadImage(entry.target);this.observer.unobserve(entry.target)}})} loadImage(img){if(!this.loadedImages.has(img)){const src=img.getAttribute('data-src');if(src){img.src=src;img.removeAttribute('data-src');this.loadedImages.add(img)}}} loadAllImages(){this.images.forEach(img=>this.loadImage(img))}} document.addEventListener('DOMContentLoaded',()=>{new ImageLazyLoader()});(()=>{'use strict';const tooltip=document.createElement('div');tooltip.classList.add('statusbar-tooltip');document.body.appendChild(tooltip);const getFullUrl=(path)=>{try{return new URL(path,window.location.href).href}catch{return window.location.origin+path}};const handleClick=(event,url)=>{if(event.ctrlKey||event.metaKey){window.open(url,'_blank')}else{window.location.href=url} event.preventDefault()};const handleMouseUp=(event,url)=>{if(event.button===1){window.open(url,'_blank');event.preventDefault()}};const showTooltip=(event,url)=>{const fullUrl=getFullUrl(url);tooltip.style.display='block';tooltip.textContent=fullUrl};const hideTooltip=()=>{tooltip.style.display='none'};const addListeners=(element)=>{const url=element.dataset.clicktogo;if(!url)return;const fullUrl=getFullUrl(url);element.addEventListener('click',(e)=>handleClick(e,fullUrl));element.addEventListener('mouseup',(e)=>handleMouseUp(e,fullUrl));element.addEventListener('mouseover',(e)=>showTooltip(e,url));element.addEventListener('mouseout',hideTooltip);element.addEventListener('focus',(e)=>showTooltip(e,url));element.addEventListener('blur',hideTooltip)};document.querySelectorAll('.clicktogo').forEach(addListeners)})()