From 2a5872ba6d54521eb69a8fc481a566b4a11ec966 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Fri, 19 Jul 2024 09:28:21 +0200 Subject: [PATCH] removing single conseils --- resources/js/single-conseil.js | 88 ---------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 resources/js/single-conseil.js diff --git a/resources/js/single-conseil.js b/resources/js/single-conseil.js deleted file mode 100644 index 8663a96..0000000 --- a/resources/js/single-conseil.js +++ /dev/null @@ -1,88 +0,0 @@ -export default function singleConseil() { - const hasChapterIndex = document.querySelector('.chapter_index__list'); - if (!hasChapterIndex) return; - - let chapterIndex = document.querySelector('.chapter_index'); - let questionBlocks = document.querySelectorAll('.questions-container-block'); - - function handleLinkScrollToTarget(e) { - e.preventDefault(); - let target = e.target.getAttribute('href'); - let targetBlock = document.querySelector(target); - - targetBlock.setAttribute('tabindex', '-1'); - targetBlock.scrollIntoView({ - behavior: 'smooth', - }); - targetBlock.focus({ preventScroll: true }); - } - function handleChapterIndicatorPosition(targetLink) { - const targetPosition = targetLink.offsetTop; - const targetHeight = targetLink.offsetHeight; - let chapterIndicator = document.querySelector('.chapter_index__position-indicator'); - chapterIndicator.style.top = targetPosition + 'px'; - chapterIndicator.style.height = targetHeight + 'px'; - } - - let chapterLinks = document.querySelectorAll('.chapter_index__link'); - - chapterLinks.forEach((link) => { - link.addEventListener('click', (e) => { - handleLinkScrollToTarget(e); - handleChapterIndicatorPosition(e.target.offsetTop); - }); - }); - - // CHAPTER IntersectionObserver - const chapterProgressionObserver = new IntersectionObserver( - (entries) => { - entries.forEach((entry) => { - const blockId = entry.target.getAttribute('id'); - const relatedChapterLink = document.querySelector(`a[href="#${blockId}"]`); - relatedChapterLink.classList.remove('active'); - - if (entry.isIntersecting) { - // Add 'active' class if observation target is inside viewport - handleChapterIndicatorPosition(relatedChapterLink); - entry.target.classList.add('active'); - relatedChapterLink.classList.add('active'); - } else { - // Remove 'active' class otherwise - // entry.target.classList.remove('active'); - } - }); - }, - { - rootMargin: '-10% 0px -70% 0px', - } - ); - - function buildAllBlocksToObserve() { - const postsContainerBlocks = document.querySelectorAll('.post-content-container'); - const questionsContainerBlocks = document.querySelectorAll('.questions-container-block'); - const chapitresThematiques = document.querySelectorAll('.homegrade-blocks-chapitre-thematique'); - const vocabulaireSummaryBlock = document.querySelector('.homegrade-blocks-vocabulaire-summary'); - const plusLoinBlock = document.querySelector('#aller-plus-loin'); - const helpHomegradeBlock = document.querySelector('#homegrade-vous-aide'); - const partnersOtherServices = document.querySelector('#partenaires-autres-services'); - - let allBlocks = []; - - if (vocabulaireSummaryBlock) allBlocks.push(vocabulaireSummaryBlock); - if (plusLoinBlock) allBlocks.push(plusLoinBlock); - if (helpHomegradeBlock) allBlocks.push(helpHomegradeBlock); - if (partnersOtherServices) allBlocks.push(partnersOtherServices); - if (questionsContainerBlocks.length > 0) - allBlocks = [...allBlocks, ...questionsContainerBlocks]; - if (postsContainerBlocks.length > 0) allBlocks = [...allBlocks, ...postsContainerBlocks]; - if (chapitresThematiques.length > 0) allBlocks = [...allBlocks, ...chapitresThematiques]; - - return allBlocks; - } - - allBlocks = buildAllBlocksToObserve(); - - allBlocks.forEach((block) => { - chapterProgressionObserver.observe(block); - }); -}