{"version":3,"file":"../blocks/latest_news/latest-news.min.js","mappings":"mBAEAA,SAASC,iBAAiB,oBAAoB,WAC1C,IAAMC,EAAYF,SAASG,iBAAiB,qBACtCC,EAAeJ,SAASK,eAAe,mBAG7C,GAAIH,EAAUI,OAAS,EAAG,CACtB,IAAMC,EAAiBL,EAAU,GAAGM,aAAa,kBACjDJ,EAAaK,MAAMC,gBAAkB,OAAHC,OAAUJ,EAAc,IAC9D,CAEAL,EAAUU,SAAQ,SAAAC,GACdA,EAAKZ,iBAAiB,SAAS,WAE3BC,EAAUU,SAAQ,SAAAE,GAAC,OAAIA,EAAEC,UAAUC,OAAO,SAAS,IAGnDd,EAAUU,SAAQ,SAAAE,GAAC,OAAIA,EAAEG,cAAc,wBAAwBR,MAAMS,QAAU,MAAM,IAGrFC,KAAKJ,UAAUK,IAAI,UAGnBD,KAAKF,cAAc,wBAAwBR,MAAMS,QAAU,QAG3Dd,EAAaK,MAAMC,gBAAkB,OAAHC,OAAUQ,KAAKX,aAAa,kBAAiB,IACnF,GACJ,GACJ,G","sources":["webpack://gedc/./blocks/latest_news/latest-news.js"],"sourcesContent":["import './latest-news.scss';\n\ndocument.addEventListener('DOMContentLoaded', function () {\n const newsItems = document.querySelectorAll('.latest-news-item');\n const newsImageDiv = document.getElementById('latest-news-img');\n\n // Set the default background image for the first item\n if (newsItems.length > 0) {\n const firstItemImage = newsItems[0].getAttribute('data-image-src');\n newsImageDiv.style.backgroundImage = `url(${firstItemImage})`;\n }\n\n newsItems.forEach(item => {\n item.addEventListener('click', function () {\n // Remove active class from all items\n newsItems.forEach(i => i.classList.remove('active'));\n \n // Hide all excerpts\n newsItems.forEach(i => i.querySelector('.latest-news-excerpt').style.display = 'none');\n \n // Add active class to clicked item\n this.classList.add('active');\n \n // Show the corresponding excerpt\n this.querySelector('.latest-news-excerpt').style.display = 'block';\n\n // Change the background image to the clicked item's data-image-src\n newsImageDiv.style.backgroundImage = `url(${this.getAttribute('data-image-src')})`;\n });\n });\n});\n"],"names":["document","addEventListener","newsItems","querySelectorAll","newsImageDiv","getElementById","length","firstItemImage","getAttribute","style","backgroundImage","concat","forEach","item","i","classList","remove","querySelector","display","this","add"],"sourceRoot":""}