{"version":3,"names":["document","querySelector","CustomSlider","constructor","element","this","slider","track","slides","Array","from","children","nextButton","prevButton","nextEl","prevEl","pagination","currentIndex","slidesCount","length","slideWidth","isTransitioning","numberOfClones","isLooping","isDragging","startPos","currentTranslate","prevTranslate","dragThreshold","init","originalSlides","i","endClone","cloneNode","appendChild","startClone","insertBefore","firstChild","setupPagination","setupEventListeners","setTimeout","calculateDimensions","updateSlidePosition","setActiveSlide","style","opacity","addEventListener","nextSlide","prevSlide","forEach","slide","index","classList","contains","handleTransitionEnd","window","e","startDragging","drag","stopDragging","preventDefault","innerHTML","actualSlidesCount","dot","createElement","add","goToSlide","paginationDots","containerWidth","offsetWidth","tempSlide","remove","inactiveSlideWidth","activeSlideWidth","offset","arguments","undefined","transition","position","transform","concat","width","activeSlide","actualIndex","toggle","offsetHeight","getPositionX","diff","parseFloat","replace","getCurrentPosition","Math","abs","type","includes","pageX","touches","clientX","getElementById"],"sources":["slider.js"],"sourcesContent":["if (document.querySelector('#customSlider')) {\n class CustomSlider {\n constructor(element) {\n this.slider = element;\n this.track = element.querySelector('.slider-track');\n this.slides = Array.from(this.track.children);\n this.nextButton = element.querySelector('.slider-nav.next');\n this.prevButton = element.querySelector('.slider-nav.prev');\n this.nextEl = element.querySelector('.gradient-overlay.next');\n this.prevEl = element.querySelector('.gradient-overlay.prev');\n this.pagination = element.querySelector('.slider-pagination');\n \n this.currentIndex = 0;\n this.slidesCount = this.slides.length;\n this.slideWidth = 0;\n this.isTransitioning = false;\n this.numberOfClones = 4;\n this.isLooping = false;\n \n this.isDragging = false;\n this.startPos = 0;\n this.currentTranslate = 0;\n this.prevTranslate = 0;\n this.dragThreshold = 50; // minimum distance for a swipe\n \n this.init();\n }\n \n init() {\n // Clone slides for infinite loop\n const originalSlides = [...this.slides];\n \n // Add clones to both ends\n for (let i = 0; i < this.numberOfClones; i++) {\n const endClone = originalSlides[i % originalSlides.length].cloneNode(true);\n this.track.appendChild(endClone);\n \n const startClone = originalSlides[originalSlides.length - 1 - (i % originalSlides.length)].cloneNode(true);\n this.track.insertBefore(startClone, this.track.firstChild);\n }\n \n // Update slides array with clones\n this.slides = Array.from(this.track.children);\n this.slidesCount = this.slides.length;\n \n // Set initial position\n this.currentIndex = this.numberOfClones;\n \n // Create pagination\n this.setupPagination();\n \n // Setup event listeners\n this.setupEventListeners();\n \n // Initial setup\n setTimeout(() => {\n this.calculateDimensions();\n this.updateSlidePosition(false);\n this.setActiveSlide(this.currentIndex);\n this.slider.style.opacity = '1';\n }, 100);\n }\n \n setupEventListeners() {\n // Navigation buttons and overlays\n this.nextButton.addEventListener('click', () => this.nextSlide());\n this.prevButton.addEventListener('click', () => this.prevSlide());\n this.nextEl.addEventListener('click', () => this.nextSlide());\n this.prevEl.addEventListener('click', () => this.prevSlide());\n \n // Add click listeners to slides\n this.slides.forEach((slide, index) => {\n slide.addEventListener('click', () => {\n if (!slide.classList.contains('active') && !this.isTransitioning && !this.isLooping) {\n // If clicking a slide to the right of the active slide, go next\n if (index > this.currentIndex) {\n this.nextSlide();\n }\n // If clicking a slide to the left of the active slide, go previous\n else if (index < this.currentIndex) {\n this.prevSlide();\n }\n }\n });\n });\n \n // Transition end\n this.track.addEventListener('transitionend', () => this.handleTransitionEnd());\n \n // Window resize\n window.addEventListener('resize', () => {\n this.calculateDimensions();\n this.setActiveSlide(this.currentIndex);\n this.updateSlidePosition(false);\n });\n\n // Add touch/mouse event listeners\n this.track.addEventListener('mousedown', (e) => this.startDragging(e));\n this.track.addEventListener('touchstart', (e) => this.startDragging(e));\n \n window.addEventListener('mousemove', (e) => this.drag(e));\n window.addEventListener('touchmove', (e) => this.drag(e));\n \n window.addEventListener('mouseup', () => this.stopDragging());\n window.addEventListener('touchend', () => this.stopDragging());\n \n // Prevent context menu on long press\n this.track.addEventListener('contextmenu', (e) => e.preventDefault());\n }\n \n setupPagination() {\n // Clear existing pagination\n this.pagination.innerHTML = '';\n \n // Calculate number of actual slides (excluding clones)\n const actualSlidesCount = this.slidesCount - (this.numberOfClones * 2);\n \n // Create pagination dots\n for (let i = 0; i < actualSlidesCount; i++) {\n const dot = document.createElement('div');\n dot.classList.add('dot');\n dot.addEventListener('click', () => {\n if (!this.isTransitioning && !this.isLooping) {\n this.goToSlide(i + this.numberOfClones);\n }\n });\n this.pagination.appendChild(dot);\n }\n \n this.paginationDots = Array.from(this.pagination.children);\n }\n \n calculateDimensions() {\n const containerWidth = this.slider.offsetWidth;\n this.containerWidth = containerWidth;\n \n // Get the actual slide widths from CSS\n const tempSlide = this.slides[0];\n tempSlide.classList.remove('active');\n this.inactiveSlideWidth = tempSlide.offsetWidth;\n tempSlide.classList.add('active');\n this.activeSlideWidth = tempSlide.offsetWidth;\n tempSlide.classList.remove('active');\n \n // Calculate the offset to center the active slide\n this.offset = (containerWidth - this.activeSlideWidth) / 2;\n } \n \n updateSlidePosition(animate = true) {\n if (animate && !this.isLooping) {\n this.track.style.transition = 'transform 700ms ease-out';\n } else {\n this.track.style.transition = 'none';\n }\n \n let position = 0;\n // Calculate total width of slides before the current one\n for (let i = 0; i < this.currentIndex; i++) {\n position += this.slides[i].offsetWidth;\n }\n \n // Center the active slide\n position = -position + this.offset;\n \n this.track.style.transform = `translateX(${position}px)`;\n }\n \n setActiveSlide(index) {\n if (this.isLooping) return;\n \n this.slides.forEach(slide => {\n slide.style.width = `${this.inactiveSlideWidth}px`;\n slide.classList.remove('active');\n });\n \n const activeSlide = this.slides[index];\n if (activeSlide) {\n activeSlide.style.width = `${this.activeSlideWidth}px`;\n activeSlide.classList.add('active');\n }\n \n const actualIndex = index - this.numberOfClones;\n this.paginationDots.forEach((dot, i) => {\n dot.classList.toggle('active', i === actualIndex);\n });\n }\n \n goToSlide(index) {\n if (this.isTransitioning) return;\n this.isTransitioning = true;\n this.currentIndex = index;\n this.setActiveSlide(this.currentIndex);\n this.updateSlidePosition();\n }\n \n nextSlide() {\n if (this.isTransitioning || this.isLooping) return;\n \n // Check if we need to loop\n if (this.currentIndex >= this.slidesCount - this.numberOfClones - 1) {\n // Prepare for loop\n this.isLooping = true;\n \n // Disable transitions\n this.track.style.transition = 'none';\n this.slides.forEach(slide => {\n slide.style.transition = 'none';\n });\n \n // Reset to first real slide\n this.currentIndex = this.numberOfClones - 1;\n this.updateSlidePosition(false);\n \n // Force reflow\n this.track.offsetHeight;\n \n // Re-enable transitions\n this.track.style.transition = 'transform 700ms ease-out';\n this.slides.forEach(slide => {\n slide.style.transition = 'width 700ms ease-out';\n });\n \n this.isLooping = false;\n }\n \n // Proceed with normal slide change\n this.isTransitioning = true;\n this.currentIndex++;\n this.setActiveSlide(this.currentIndex);\n this.updateSlidePosition(true);\n }\n \n prevSlide() {\n if (this.isTransitioning || this.isLooping) return;\n \n // Check if we need to loop\n if (this.currentIndex <= this.numberOfClones) {\n // Prepare for loop\n this.isLooping = true;\n \n // Disable transitions\n this.track.style.transition = 'none';\n this.slides.forEach(slide => {\n slide.style.transition = 'none';\n });\n \n // Reset to last real slide\n this.currentIndex = this.slidesCount - this.numberOfClones;\n this.updateSlidePosition(false);\n \n // Force reflow\n this.track.offsetHeight;\n \n // Re-enable transitions\n this.track.style.transition = 'transform 700ms ease-out';\n this.slides.forEach(slide => {\n slide.style.transition = 'width 700ms ease-out';\n });\n \n this.isLooping = false;\n }\n \n // Proceed with normal slide change\n this.isTransitioning = true;\n this.currentIndex--;\n this.setActiveSlide(this.currentIndex);\n this.updateSlidePosition(true);\n }\n \n handleTransitionEnd() {\n this.isTransitioning = false;\n }\n\n startDragging(e) {\n if (this.isTransitioning || this.isLooping) return;\n \n this.isDragging = true;\n this.startPos = this.getPositionX(e);\n this.track.style.transition = 'none';\n this.slides.forEach(slide => {\n slide.style.transition = 'none';\n });\n }\n \n drag(e) {\n if (!this.isDragging) return;\n \n const currentPosition = this.getPositionX(e);\n const diff = currentPosition - this.startPos;\n \n // Calculate current position of track\n let position = 0;\n for (let i = 0; i < this.currentIndex; i++) {\n position += this.slides[i].offsetWidth;\n }\n position = -position + this.offset;\n \n // Update track position while dragging\n this.track.style.transform = `translateX(${position + diff}px)`;\n }\n \n stopDragging() {\n if (!this.isDragging) return;\n \n this.isDragging = false;\n const currentPosition = parseFloat(this.track.style.transform.replace('translateX(', ''));\n const diff = currentPosition - (-this.getCurrentPosition() + this.offset);\n \n // Re-enable transitions\n this.track.style.transition = 'transform 700ms ease-out';\n this.slides.forEach(slide => {\n slide.style.transition = 'width 700ms ease-out';\n });\n \n // Determine if we should move to next/prev slide\n if (Math.abs(diff) > this.dragThreshold) {\n if (diff > 0) {\n this.prevSlide();\n } else {\n this.nextSlide();\n }\n } else {\n // Snap back to current slide\n this.updateSlidePosition(true);\n }\n }\n \n getPositionX(e) {\n return e.type.includes('mouse') ? e.pageX : e.touches[0].clientX;\n }\n \n getCurrentPosition() {\n let position = 0;\n for (let i = 0; i < this.currentIndex; i++) {\n position += this.slides[i].offsetWidth;\n }\n return position;\n }\n }\n \n // Initialize the slider\n document.addEventListener('DOMContentLoaded', () => {\n const slider = new CustomSlider(document.getElementById('customSlider'));\n });\n}"],"mappings":"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","ignoreList":[]}