{"version":3,"file":"/scripts/text-blocks.js","mappings":"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","sources":["webpack://evolve-boilerplate/./src/scripts/components/_scrollto.ts","webpack://evolve-boilerplate/webpack/bootstrap","webpack://evolve-boilerplate/./src/scripts/modules/text-blocks.ts"],"sourcesContent":["const easeInOutQuad = (t: number, b: number, c: number, d: number) => {\n if ((t /= d / 2 ) < 1) return c / 2 * t * t + b;\n\n return -c / 2 * ((--t) * (t - 2) - 1) + b;\n};\n\nconst requestAnimFrame = (\n () => window.requestAnimationFrame ||\n window.webkitRequestAnimationFrame || (callback => window.setTimeout(callback, 1000 / 60))\n)();\n\nexport function scrollTo(to: number, offset = 0, duration = 800, callback: any = null): void {\n const move = (amount: number) => {\n document.documentElement.scrollTop = amount;\n (document.body.parentNode as HTMLElement).scrollTop = amount;\n document.body.scrollTop = amount;\n };\n const start = document.documentElement.scrollTop ||\n (document.body.parentNode as HTMLElement).scrollTop ||\n document.body.scrollTop;\n const change = to - start + 10 - offset;\n const increment = 20;\n let currentTime = 0;\n\n const animateScroll = () => {\n currentTime += increment;\n const val = easeInOutQuad(currentTime, start, change, duration);\n move(val);\n if (currentTime < duration) {\n requestAnimFrame(animateScroll);\n } else if (typeof callback === 'function') {\n callback();\n }\n };\n animateScroll();\n}\n\nexport function scrollToElement(selectior: string, offset = 0, duration = 800): void {\n const element = document.querySelector(selectior) as HTMLElement;\n if (!element) return;\n\n scrollTo(element.offsetTop, offset, duration);\n}","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","import { scrollToElement } from \"../components/_scrollto\";\n\nclass TBC {\n sections: NodeListOf\n\n constructor() {\n this.sections = document.querySelectorAll('.tbc')\n const list = document.querySelector('.tbc_list')\n const content = document.querySelector('.tbc_content')\n\n if (list && content) {\n this.anchorsScroll();\n this.generateList();\n }\n }\n\n generateList() {\n if(!this.sections) return\n\n this.sections.forEach(section => {\n const titles = section.querySelectorAll('.tbc_content h1, .tbc_content h2, .tbc_content h3, .tbc_content h4, .tbc_content h5, .tbc_content h6')\n const listsContainer = section.querySelector('.tbc_list') as HTMLDivElement\n \n if(titles && listsContainer) {\n const list = document.createElement('ul')\n\n window.addEventListener('scroll', () => {\n \n titles.forEach((title, index) => {\n let listItems = list.children\n let rect = title.getBoundingClientRect().y\n\n if (rect < window.innerHeight * 0.1) {\n Array.from(listItems).forEach((item) => item.classList.remove('active'));\n listItems[index].classList.add('active');\n }\n })\n });\n\n titles.forEach(title => {\n title.setAttribute('id', title.textContent.toLowerCase().replace(' ', ''))\n list.insertAdjacentHTML('beforeend', `
  • ${title.textContent}
  • `);\n })\n\n listsContainer.appendChild(list)\n }\n\n })\n }\n\n anchorsScroll() {\n const anchors = document.querySelectorAll('.js-anchor');\n \n anchors.forEach(anchor =>\n anchor.addEventListener('click', (e) => {\n const href = (anchor as HTMLLinkElement).getAttribute('href');\n const element = document.querySelector(href);\n if (element) {\n e.preventDefault();\n // this.body.classList.remove('mso');\n scrollToElement(href);\n }\n })\n );\n }\n}\n\nnew TBC;"],"names":["easeInOutQuad","t","b","c","d","requestAnimFrame","window","requestAnimationFrame","webkitRequestAnimationFrame","callback","setTimeout","scrollTo","to","offset","duration","start","document","documentElement","scrollTop","body","parentNode","change","currentTime","animateScroll","amount","val","exports","selectior","element","querySelector","offsetTop","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","module","__webpack_modules__","this","sections","querySelectorAll","list","content","anchorsScroll","generateList","forEach","section","titles","listsContainer","createElement","addEventListener","title","index","listItems","children","getBoundingClientRect","y","innerHeight","Array","from","item","classList","remove","add","setAttribute","textContent","toLowerCase","replace","insertAdjacentHTML","appendChild","anchor","e","href","getAttribute","preventDefault","scrollToElement"],"sourceRoot":""}