Skip to content
Snippets Groups Projects
main.js 6.92 KiB
Newer Older
  • Learn to ignore specific revisions
  • (function ($) {
    
        let Search = class {
            static selector() {
                return '.js-search-toggle';
            }
    
            constructor(node, searchForm) {
                this.node = node;
                this.searchForm = searchForm;
                this.bindEventListeners();
            }
    
            bindEventListeners() {
                this.node.click(this.toggle.bind(this));
            }
    
            toggle() {
                // show the search
                this.searchForm[0].classList.toggle('is-visible');
    
                // swap the icons
                this.node[0].querySelector('.header__icon--open-search').classList.toggle('is-hidden');
                this.node[0].querySelector('.header__icon--close-search').classList.toggle('is-unhidden');
    
                // add modifier to header to be able to change header icon colours
                document.querySelector('.header').classList.toggle('search-open');
            }
        };
    
        let MobileMenu = class {
            static selector() {
                return '.js-mobile-menu-toggle';
            }
    
            constructor(node, closeButton, mobileMenu, search) {
                this.node = node;
                this.closeButton = closeButton;
                this.mobileMenu = mobileMenu;
                this.search = search;
    
                this.bindEventListeners();
            }
    
            bindEventListeners() {
                this.node.click(this.toggle.bind(this));
                this.closeButton.click(this.toggle.bind(this));
            }
    
            toggle() {
                // toggle mobile menu
                this.mobileMenu[0].classList.toggle('is-visible');
    
                // check if search exists
                if (document.body.contains(this.search[0])) {
                    // reset the search whenever the mobile menu is toggled
    
                    if (this.search[0].classList.contains('is-visible')) {
    
                        this.search[0].classList.toggle('is-visible');
                        document.querySelector('.header__inner--menu-open').classList.toggle('header__inner--search-open');
                    }
                }
    
                // reset the search show/hide icons
    
                if (this.mobileMenu[0].classList.contains('is-visible') && document.body.contains(this.search[0])) {
    
                    document.querySelector('.header__icon--open-search-menu-closed').classList.remove('is-hidden');
                    document.querySelector('.header__icon--close-search-menu-closed').classList.remove('is-unhidden');
                }
            }
        };
    
        let MobileSearch = class {
            static selector() {
                return '.js-mobile-search-toggle';
            }
    
            constructor(node, mobileMenu, searchForm, searchToggleButton) {
                this.node = node;
                this.mobileMenu = mobileMenu[0];
                this.searchForm = searchForm[0];
                this.searchToggleButton = searchToggleButton[0];
                this.bindEventListeners();
            }
    
            bindEventListeners() {
                this.node.click(this.toggle.bind(this));
            }
    
            toggle() {
                // hide the mobile menu
                this.mobileMenu.classList.remove('is-visible');
    
                // wait for the mobile menu to close
                setTimeout(() => {
                    // open the search
                    this.searchForm.classList.add('is-visible');
    
                    // swap the icons
                    this.searchToggleButton.querySelector('.header__icon--open-search').classList.add('is-hidden');
                    this.searchToggleButton.querySelector('.header__icon--close-search').classList.add('is-unhidden');
                }, 250);
            }
        };
    
    
        // Replace no-js with js class if js is enabled.
        document.querySelector('html').classList.replace('no-js', 'js');
    
    
        $(MobileMenu.selector()).each((index, el) => {
            new MobileMenu($(el), $('.js-mobile-menu-close'), $('.header__menus--mobile'), $('.header__search'));
        });
    
        $(Search.selector()).each((index, el) => {
            new Search($(el), $('.header__search'));
        });
    
        $(MobileSearch.selector()).each((index, el) => {
            new MobileSearch($(el), $('.header__menus--mobile'), $('.header__search'), $('.js-search-toggle'));
    
        // Close the message
        $('.js-close-message').click((e) => {
            e.preventDefault();
            var message = e.target.closest('.js-message');
            message.classList.add('messages__text--hide');
        });
    
    
        // Add active class to select2 checkboxes after page has been filtered
        document.addEventListener('DOMContentLoaded', () => {
            // If there are clear buttons in the dom, it means the filters have been applied
            const clearButtons = document.querySelectorAll('.select2-selection__clear');
            clearButtons.forEach(clearButton => {
                clearButton.parentElement.parentElement.classList.add('is-active');
            });
        });
    
    
        // reset mobile filters if they're open past the tablet breakpoint
    
        $(window).resize(function resize() {
    
            if ($(window).width() < 768) {
                $('.select2').on('click', (e) => {
    
                    mobileFilterPadding(e.target);
    
                $('body').removeClass('no-scroll');
    
    Todd Dembrey's avatar
    Todd Dembrey committed
                $('.js-filter-wrapper').removeClass('is-open');
                $('.js-filter-list').removeClass('form__filters--mobile');
    
                $('.js-actions-toggle').removeClass('is-active');
                $('.js-actions-sidebar').removeClass('is-visible');
    
                $('.tr--parent.is-expanded').removeClass('is-expanded');
    
    
        function mobileFilterPadding(element) {
            const expanded = 'expanded-filter-element';
            const dropdown = $(element).closest('.select2');
            const openDropdown = $('.select2 .' + expanded);
            let dropdownMargin = 0;
    
            if (openDropdown.length > 0 && !openDropdown.hasClass('select2-container--open')) {
                // reset the margin of the select we previously worked
                openDropdown.removeClass(expanded);
                // store the offset to adjust the new select box (elements above the old dropdown unaffected)
    
                if (dropdown.position().top > openDropdown.position().top) {
    
                    dropdownMargin = parseInt(openDropdown.css('marginBottom'));
                }
                openDropdown.css('margin-bottom', '0px');
            }
    
            if (dropdown.hasClass('select2-container--open')) {
                dropdown.addClass(expanded);
                const dropdownID = $(element).closest('.select2-selection').attr('aria-owns');
                // Element which has the height of the select dropdown
                const match = $(`ul#${dropdownID}`);
                const dropdownHeight = match.outerHeight(true);
    
                // Element which has the position of the dropdown
                const positionalMatch = match.closest('.select2-container');
    
                // Pad the bottom of the select box
                dropdown.css('margin-bottom', `${dropdownHeight}px`);
    
                // bump up the dropdown options by height of closed elements
                positionalMatch.css('top', positionalMatch.position().top - dropdownMargin);
            }
        }
    
    
    })(jQuery);