{"version":3,"file":"js/frontend-header.95a8b4d0.js","mappings":";YAuDA,SAASA,sBAER,MAAMC,EAAMC,SAASC,eAAe,wBAC9BC,EAAMF,SAASC,eAAe,0BAC9BE,EAAOH,SAASC,eAAe,sCAGrC,GAAIF,GAAOG,GAAOC,EAAM,CAOvB,OALAJ,EAAIK,UAAUC,IAAI,YAClBH,EAAIE,UAAUC,IAAI,YAClBF,EAAKC,UAAUC,IAAI,aAhDrB,SAASC,uBAER,MAAMC,EAAgBP,SAASQ,gBAAgBC,YAMzCC,EAAkB,CAAC,MAAO,KAAM,KAAM,KAAM,KAAM,MAIxD,IAAK,IAAIC,KAAQD,EAYhB,GAAIH,GAPqBK,SACxBC,iBAAiBb,SAASc,MAAMC,iBAC/B,oBAAsBJ,IAOvB,MAIF,OAAOA,CACR,CAoBUL,IACP,IAAK,KACL,IAAK,KACL,IAAK,KAEJH,EAAKa,QAAQd,GACb,MACD,IAAK,KACL,IAAK,KACL,IAAK,MAEJH,EAAIkB,MAAMf,GASZ,GAJAA,EAAIE,UAAUc,OAAO,UACrBhB,EAAIE,UAAUC,IAAI,aAGbc,OAAOC,+BAUXlB,EAAIE,UAAUc,OAAO,WAAY,cAVU,CAC3C,MAAMG,EAAanB,EAAIoB,UAAUC,MAAM,KAGrCF,EAAWG,SAAS,aACpBH,EAAWG,SAAS,WAErBtB,EAAIE,UAAUC,IAAI,WAAY,SAEhC,CAKAc,OAAOC,gCAAiC,CACzC,CACD,CAEApB,SAASyB,iBAAiB,mBAAoB3B,qBAG9CqB,OAAOM,iBAAiB,SAAU3B","sources":["webpack://BSUwp/./assets/src/js/frontend-header/frontend-header.js"],"sourcesContent":["/*!\nThe Custom Frontend JS (loads in HEADER)\n\nBe very selective of what you load here, only things that NEED to be loaded in the header.\n*/\n\n/*\n * ***\n * Begin page-top manipulation\n * ***\n */\n\n/**\n * Gets the current Bootstrap breakpoint based on viewport size and breakpoint pixel sizes set in\n * the theme.\n *\n * @return {string} The detected breakpoint ('xxl', 'xl', 'lg', 'md', 'sm', or 'xs').\n */\nfunction getCurrentBreakpoint() {\n\t// Get the vieport width at the time of this function running.\n\tconst viewportWidth = document.documentElement.clientWidth;\n\n\t/**\n\t * Define responsive breakpoints in descending order. The breakpoint ranges will be generated\n\t * based on CSS vars that are computed during the build process.\n\t */\n\tconst breakpointSizes = ['xxl', 'xl', 'lg', 'md', 'sm', 'xs'];\n\n\t// Loop over each breakpoint size. Using var so that size can break out the scope of the loop.\n\t// eslint-disable-next-line no-var\n\tfor (var size of breakpointSizes) {\n\t\t/**\n\t\t * Gets the Bootstrap breakpoint size of the current breakpoint being checked in the loop.\n\t\t * Using parseInt() to convert NNNpx to NNN.\n\t\t */\n\t\tconst bsBreakpointSize = parseInt(\n\t\t\tgetComputedStyle(document.body).getPropertyValue(\n\t\t\t\t'--mdb-breakpoint-' + size\n\t\t\t)\n\t\t);\n\n\t\t// Check if the element is hidden for the current breakpoint.\n\t\tif (viewportWidth >= bsBreakpointSize) {\n\t\t\t// Break out of the loop. Now size will be left at the current breakpoint.\n\t\t\tbreak;\n\t\t}\n\t}\n\n\treturn size;\n}\n\n/**\n * Moves the 'bsu-page-top-secondary' element around the DOM based on the responsive breakpoints.\n * Ensures proper placement and styling for page-top elements.\n */\nfunction bsuPageTopPlacement() {\n\t// Get references to the required page top elements\n\tconst pt1 = document.getElementById('bsu-page-top-primary');\n\tconst pt2 = document.getElementById('bsu-page-top-secondary');\n\tconst pt2p = document.getElementById('bsu-page-top-secondary-placeholder');\n\n\t// Ensure the necessary page top elements exist\n\tif (pt1 && pt2 && pt2p) {\n\t\t// Add classes for styling when JavaScript is enabled\n\t\tpt1.classList.add('col-lg-7');\n\t\tpt2.classList.add('col-lg-5');\n\t\tpt2p.classList.add('d-lg-none');\n\n\t\t// Update the DOM based on the responsive breakpoint to place 'page-top-secondary'\n\t\tswitch (getCurrentBreakpoint()) {\n\t\t\tcase 'xs':\n\t\t\tcase 'sm':\n\t\t\tcase 'md':\n\t\t\t\t// Place 'page-top-secondary' inside the placeholder for smaller breakpoints\n\t\t\t\tpt2p.prepend(pt2);\n\t\t\t\tbreak;\n\t\t\tcase 'lg':\n\t\t\tcase 'xl':\n\t\t\tcase 'xxl':\n\t\t\t\t// Place 'page-top-secondary' inside 'page-top' after 'page-top-primary' for larger breakpoints\n\t\t\t\tpt1.after(pt2);\n\t\t\t\tbreak;\n\t\t}\n\n\t\t// Make CTA buttons visible\n\t\tpt2.classList.remove('d-none');\n\t\tpt2.classList.add('d-sm-flex');\n\n\t\t// Apply animation only on page load\n\t\tif (!window.page_top_placement_already_ran) {\n\t\t\tconst pt2Classes = pt2.className.split(' ');\n\n\t\t\tif (\n\t\t\t\t!pt2Classes.includes('animated') ||\n\t\t\t\t!pt2Classes.includes('fadeIn')\n\t\t\t) {\n\t\t\t\tpt2.classList.add('animated', 'fadeIn');\n\t\t\t}\n\t\t} else {\n\t\t\tpt2.classList.remove('animated', 'fadeIn');\n\t\t}\n\n\t\t// Indicate that the function has already run once\n\t\twindow.page_top_placement_already_ran = true;\n\t}\n}\n// Run asap before CSS and images are done.\ndocument.addEventListener('DOMContentLoaded', bsuPageTopPlacement);\n\n// Run on resize.\nwindow.addEventListener('resize', bsuPageTopPlacement);\n\n/*\n * ***\n * End page-top manipulation\n * ***\n */\n"],"names":["bsuPageTopPlacement","pt1","document","getElementById","pt2","pt2p","classList","add","getCurrentBreakpoint","viewportWidth","documentElement","clientWidth","breakpointSizes","size","parseInt","getComputedStyle","body","getPropertyValue","prepend","after","remove","window","page_top_placement_already_ran","pt2Classes","className","split","includes","addEventListener"],"sourceRoot":""}