(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery'), require('popper.js')) : typeof define === 'function' && define.amd ? define(['jquery', 'popper.js'], factory) : (global = global || self, factory(global.jQuery, global.Popper)); }(this, function ($, Popper$1) { 'use strict'; $ = $ && $.hasOwnProperty('default') ? $['default'] : $; Popper$1 = Popper$1 && Popper$1.hasOwnProperty('default') ? Popper$1['default'] : Popper$1; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): util.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Private TransitionEnd Helpers * ------------------------------------------------------------------------ */ const TRANSITION_END = 'transitionend'; const MAX_UID = 1000000; const MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) function toType(obj) { return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase() } function getSpecialTransitionEndEvent() { return { bindType: TRANSITION_END, delegateType: TRANSITION_END, handle(event) { if ($(event.target).is(this)) { return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params } return undefined // eslint-disable-line no-undefined } } } function transitionEndEmulator(duration) { let called = false; $(this).one(Util.TRANSITION_END, () => { called = true; }); setTimeout(() => { if (!called) { Util.triggerTransitionEnd(this); } }, duration); return this } function setTransitionEndSupport() { $.fn.emulateTransitionEnd = transitionEndEmulator; $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); } /** * -------------------------------------------------------------------------- * Public Util Api * -------------------------------------------------------------------------- */ const Util = { TRANSITION_END: 'bsTransitionEnd', getUID(prefix) { do { // eslint-disable-next-line no-bitwise prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here } while (document.getElementById(prefix)) return prefix }, getSelectorFromElement(element) { let selector = element.getAttribute('data-target'); if (!selector || selector === '#') { const hrefAttr = element.getAttribute('href'); selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''; } try { return document.querySelector(selector) ? selector : null } catch (err) { return null } }, getTransitionDurationFromElement(element) { if (!element) { return 0 } // Get transition-duration of the element let transitionDuration = $(element).css('transition-duration'); let transitionDelay = $(element).css('transition-delay'); const floatTransitionDuration = parseFloat(transitionDuration); const floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found if (!floatTransitionDuration && !floatTransitionDelay) { return 0 } // If multiple durations are defined, take the first transitionDuration = transitionDuration.split(',')[0]; transitionDelay = transitionDelay.split(',')[0]; return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER }, reflow(element) { return element.offsetHeight }, triggerTransitionEnd(element) { $(element).trigger(TRANSITION_END); }, // TODO: Remove in v5 supportsTransitionEnd() { return Boolean(TRANSITION_END) }, isElement(obj) { return (obj[0] || obj).nodeType }, typeCheckConfig(componentName, config, configTypes) { for (const property in configTypes) { if (Object.prototype.hasOwnProperty.call(configTypes, property)) { const expectedTypes = configTypes[property]; const value = config[property]; const valueType = value && Util.isElement(value) ? 'element' : toType(value); if (!new RegExp(expectedTypes).test(valueType)) { throw new Error( `${componentName.toUpperCase()}: ` + `Option "${property}" provided type "${valueType}" ` + `but expected type "${expectedTypes}".`) } } } }, findShadowRoot(element) { if (!document.documentElement.attachShadow) { return null } // Can find the shadow root otherwise it'll return the document if (typeof element.getRootNode === 'function') { const root = element.getRootNode(); return root instanceof ShadowRoot ? root : null } if (element instanceof ShadowRoot) { return element } // when we don't find a shadow root if (!element.parentNode) { return null } return Util.findShadowRoot(element.parentNode) } }; setTransitionEndSupport(); /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): alert.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME = 'alert'; const VERSION = '4.3.1'; const DATA_KEY = 'bs.alert'; const EVENT_KEY = `.${DATA_KEY}`; const DATA_API_KEY = '.data-api'; const JQUERY_NO_CONFLICT = $.fn[NAME]; const Selector = { DISMISS : '[data-dismiss="alert"]' }; const Event = { CLOSE : `close${EVENT_KEY}`, CLOSED : `closed${EVENT_KEY}`, CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}` }; const ClassName = { ALERT : 'alert', FADE : 'fade', SHOW : 'show' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Alert { constructor(element) { this._element = element; } // Getters static get VERSION() { return VERSION } // Public close(element) { let rootElement = this._element; if (element) { rootElement = this._getRootElement(element); } const customEvent = this._triggerCloseEvent(rootElement); if (customEvent.isDefaultPrevented()) { return } this._removeElement(rootElement); } dispose() { $.removeData(this._element, DATA_KEY); this._element = null; } // Private _getRootElement(element) { const selector = Util.getSelectorFromElement(element); let parent = false; if (selector) { parent = document.querySelector(selector); } if (!parent) { parent = $(element).closest(`.${ClassName.ALERT}`)[0]; } return parent } _triggerCloseEvent(element) { const closeEvent = $.Event(Event.CLOSE); $(element).trigger(closeEvent); return closeEvent } _removeElement(element) { $(element).removeClass(ClassName.SHOW); if (!$(element).hasClass(ClassName.FADE)) { this._destroyElement(element); return } const transitionDuration = Util.getTransitionDurationFromElement(element); $(element) .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event)) .emulateTransitionEnd(transitionDuration); } _destroyElement(element) { $(element) .detach() .trigger(Event.CLOSED) .remove(); } // Static static _jQueryInterface(config) { return this.each(function () { const $element = $(this); let data = $element.data(DATA_KEY); if (!data) { data = new Alert(this); $element.data(DATA_KEY, data); } if (config === 'close') { data[config](this); } }) } static _handleDismiss(alertInstance) { return function (event) { if (event) { event.preventDefault(); } alertInstance.close(this); } } } /** * ------------------------------------------------------------------------ * Data Api implementation * ------------------------------------------------------------------------ */ $(document).on( Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert()) ); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME] = Alert._jQueryInterface; $.fn[NAME].Constructor = Alert; $.fn[NAME].noConflict = () => { $.fn[NAME] = JQUERY_NO_CONFLICT; return Alert._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): button.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$1 = 'button'; const VERSION$1 = '4.3.1'; const DATA_KEY$1 = 'bs.button'; const EVENT_KEY$1 = `.${DATA_KEY$1}`; const DATA_API_KEY$1 = '.data-api'; const JQUERY_NO_CONFLICT$1 = $.fn[NAME$1]; const ClassName$1 = { ACTIVE : 'active', BUTTON : 'btn', FOCUS : 'focus' }; const Selector$1 = { DATA_TOGGLE_CARROT : '[data-toggle^="button"]', DATA_TOGGLE : '[data-toggle="buttons"]', INPUT : 'input:not([type="hidden"])', ACTIVE : '.active', BUTTON : '.btn' }; const Event$1 = { CLICK_DATA_API : `click${EVENT_KEY$1}${DATA_API_KEY$1}`, FOCUS_BLUR_DATA_API : `focus${EVENT_KEY$1}${DATA_API_KEY$1} ` + `blur${EVENT_KEY$1}${DATA_API_KEY$1}` }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Button { constructor(element) { this._element = element; } // Getters static get VERSION() { return VERSION$1 } // Public toggle() { let triggerChangeEvent = true; let addAriaPressed = true; const rootElement = $(this._element).closest( Selector$1.DATA_TOGGLE )[0]; if (rootElement) { const input = this._element.querySelector(Selector$1.INPUT); if (input) { if (input.type === 'radio') { if (input.checked && this._element.classList.contains(ClassName$1.ACTIVE)) { triggerChangeEvent = false; } else { const activeElement = rootElement.querySelector(Selector$1.ACTIVE); if (activeElement) { $(activeElement).removeClass(ClassName$1.ACTIVE); } } } if (triggerChangeEvent) { if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) { return } input.checked = !this._element.classList.contains(ClassName$1.ACTIVE); $(input).trigger('change'); } input.focus(); addAriaPressed = false; } } if (addAriaPressed) { this._element.setAttribute('aria-pressed', !this._element.classList.contains(ClassName$1.ACTIVE)); } if (triggerChangeEvent) { $(this._element).toggleClass(ClassName$1.ACTIVE); } } dispose() { $.removeData(this._element, DATA_KEY$1); this._element = null; } // Static static _jQueryInterface(config) { return this.each(function () { let data = $(this).data(DATA_KEY$1); if (!data) { data = new Button(this); $(this).data(DATA_KEY$1, data); } if (config === 'toggle') { data[config](); } }) } } /** * ------------------------------------------------------------------------ * Data Api implementation * ------------------------------------------------------------------------ */ $(document) .on(Event$1.CLICK_DATA_API, Selector$1.DATA_TOGGLE_CARROT, (event) => { event.preventDefault(); let button = event.target; if (!$(button).hasClass(ClassName$1.BUTTON)) { button = $(button).closest(Selector$1.BUTTON); } Button._jQueryInterface.call($(button), 'toggle'); }) .on(Event$1.FOCUS_BLUR_DATA_API, Selector$1.DATA_TOGGLE_CARROT, (event) => { const button = $(event.target).closest(Selector$1.BUTTON)[0]; $(button).toggleClass(ClassName$1.FOCUS, /^focus(in)?$/.test(event.type)); }); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$1] = Button._jQueryInterface; $.fn[NAME$1].Constructor = Button; $.fn[NAME$1].noConflict = () => { $.fn[NAME$1] = JQUERY_NO_CONFLICT$1; return Button._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): carousel.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$2 = 'carousel'; const VERSION$2 = '4.3.1'; const DATA_KEY$2 = 'bs.carousel'; const EVENT_KEY$2 = `.${DATA_KEY$2}`; const DATA_API_KEY$2 = '.data-api'; const JQUERY_NO_CONFLICT$2 = $.fn[NAME$2]; const ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key const ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key const TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch const SWIPE_THRESHOLD = 40; const Default = { interval : 5000, keyboard : true, slide : false, pause : 'hover', wrap : true, touch : true }; const DefaultType = { interval : '(number|boolean)', keyboard : 'boolean', slide : '(boolean|string)', pause : '(string|boolean)', wrap : 'boolean', touch : 'boolean' }; const Direction = { NEXT : 'next', PREV : 'prev', LEFT : 'left', RIGHT : 'right' }; const Event$2 = { SLIDE : `slide${EVENT_KEY$2}`, SLID : `slid${EVENT_KEY$2}`, KEYDOWN : `keydown${EVENT_KEY$2}`, MOUSEENTER : `mouseenter${EVENT_KEY$2}`, MOUSELEAVE : `mouseleave${EVENT_KEY$2}`, TOUCHSTART : `touchstart${EVENT_KEY$2}`, TOUCHMOVE : `touchmove${EVENT_KEY$2}`, TOUCHEND : `touchend${EVENT_KEY$2}`, POINTERDOWN : `pointerdown${EVENT_KEY$2}`, POINTERUP : `pointerup${EVENT_KEY$2}`, DRAG_START : `dragstart${EVENT_KEY$2}`, LOAD_DATA_API : `load${EVENT_KEY$2}${DATA_API_KEY$2}`, CLICK_DATA_API : `click${EVENT_KEY$2}${DATA_API_KEY$2}` }; const ClassName$2 = { CAROUSEL : 'carousel', ACTIVE : 'active', SLIDE : 'slide', RIGHT : 'carousel-item-right', LEFT : 'carousel-item-left', NEXT : 'carousel-item-next', PREV : 'carousel-item-prev', ITEM : 'carousel-item', POINTER_EVENT : 'pointer-event' }; const Selector$2 = { ACTIVE : '.active', ACTIVE_ITEM : '.active.carousel-item', ITEM : '.carousel-item', ITEM_IMG : '.carousel-item img', NEXT_PREV : '.carousel-item-next, .carousel-item-prev', INDICATORS : '.carousel-indicators', DATA_SLIDE : '[data-slide], [data-slide-to]', DATA_RIDE : '[data-ride="carousel"]' }; const PointerType = { TOUCH : 'touch', PEN : 'pen' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Carousel { constructor(element, config) { this._items = null; this._interval = null; this._activeElement = null; this._isPaused = false; this._isSliding = false; this.touchTimeout = null; this.touchStartX = 0; this.touchDeltaX = 0; this._config = this._getConfig(config); this._element = element; this._indicatorsElement = this._element.querySelector(Selector$2.INDICATORS); this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0; this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent); this._addEventListeners(); } // Getters static get VERSION() { return VERSION$2 } static get Default() { return Default } // Public next() { if (!this._isSliding) { this._slide(Direction.NEXT); } } nextWhenVisible() { // Don't call next when the page isn't visible // or the carousel or its parent isn't visible if (!document.hidden && ($(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden')) { this.next(); } } prev() { if (!this._isSliding) { this._slide(Direction.PREV); } } pause(event) { if (!event) { this._isPaused = true; } if (this._element.querySelector(Selector$2.NEXT_PREV)) { Util.triggerTransitionEnd(this._element); this.cycle(true); } clearInterval(this._interval); this._interval = null; } cycle(event) { if (!event) { this._isPaused = false; } if (this._interval) { clearInterval(this._interval); this._interval = null; } if (this._config.interval && !this._isPaused) { this._interval = setInterval( (document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval ); } } to(index) { this._activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); const activeIndex = this._getItemIndex(this._activeElement); if (index > this._items.length - 1 || index < 0) { return } if (this._isSliding) { $(this._element).one(Event$2.SLID, () => this.to(index)); return } if (activeIndex === index) { this.pause(); this.cycle(); return } const direction = index > activeIndex ? Direction.NEXT : Direction.PREV; this._slide(direction, this._items[index]); } dispose() { $(this._element).off(EVENT_KEY$2); $.removeData(this._element, DATA_KEY$2); this._items = null; this._config = null; this._element = null; this._interval = null; this._isPaused = null; this._isSliding = null; this._activeElement = null; this._indicatorsElement = null; } // Private _getConfig(config) { config = { ...Default, ...config }; Util.typeCheckConfig(NAME$2, config, DefaultType); return config } _handleSwipe() { const absDeltax = Math.abs(this.touchDeltaX); if (absDeltax <= SWIPE_THRESHOLD) { return } const direction = absDeltax / this.touchDeltaX; // swipe left if (direction > 0) { this.prev(); } // swipe right if (direction < 0) { this.next(); } } _addEventListeners() { if (this._config.keyboard) { $(this._element) .on(Event$2.KEYDOWN, (event) => this._keydown(event)); } if (this._config.pause === 'hover') { $(this._element) .on(Event$2.MOUSEENTER, (event) => this.pause(event)) .on(Event$2.MOUSELEAVE, (event) => this.cycle(event)); } if (this._config.touch) { this._addTouchEventListeners(); } } _addTouchEventListeners() { if (!this._touchSupported) { return } const start = (event) => { if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { this.touchStartX = event.originalEvent.clientX; } else if (!this._pointerEvent) { this.touchStartX = event.originalEvent.touches[0].clientX; } }; const move = (event) => { // ensure swiping with one touch and not pinching if (event.originalEvent.touches && event.originalEvent.touches.length > 1) { this.touchDeltaX = 0; } else { this.touchDeltaX = event.originalEvent.touches[0].clientX - this.touchStartX; } }; const end = (event) => { if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { this.touchDeltaX = event.originalEvent.clientX - this.touchStartX; } this._handleSwipe(); if (this._config.pause === 'hover') { // If it's a touch-enabled device, mouseenter/leave are fired as // part of the mouse compatibility events on first tap - the carousel // would stop cycling until user tapped out of it; // here, we listen for touchend, explicitly pause the carousel // (as if it's the second time we tap on it, mouseenter compat event // is NOT fired) and after a timeout (to allow for mouse compatibility // events to fire) we explicitly restart cycling this.pause(); if (this.touchTimeout) { clearTimeout(this.touchTimeout); } this.touchTimeout = setTimeout((event) => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval); } }; $(this._element.querySelectorAll(Selector$2.ITEM_IMG)).on(Event$2.DRAG_START, (e) => e.preventDefault()); if (this._pointerEvent) { $(this._element).on(Event$2.POINTERDOWN, (event) => start(event)); $(this._element).on(Event$2.POINTERUP, (event) => end(event)); this._element.classList.add(ClassName$2.POINTER_EVENT); } else { $(this._element).on(Event$2.TOUCHSTART, (event) => start(event)); $(this._element).on(Event$2.TOUCHMOVE, (event) => move(event)); $(this._element).on(Event$2.TOUCHEND, (event) => end(event)); } } _keydown(event) { if (/input|textarea/i.test(event.target.tagName)) { return } switch (event.which) { case ARROW_LEFT_KEYCODE: event.preventDefault(); this.prev(); break case ARROW_RIGHT_KEYCODE: event.preventDefault(); this.next(); break default: } } _getItemIndex(element) { this._items = element && element.parentNode ? [].slice.call(element.parentNode.querySelectorAll(Selector$2.ITEM)) : []; return this._items.indexOf(element) } _getItemByDirection(direction, activeElement) { const isNextDirection = direction === Direction.NEXT; const isPrevDirection = direction === Direction.PREV; const activeIndex = this._getItemIndex(activeElement); const lastItemIndex = this._items.length - 1; const isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex; if (isGoingToWrap && !this._config.wrap) { return activeElement } const delta = direction === Direction.PREV ? -1 : 1; const itemIndex = (activeIndex + delta) % this._items.length; return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex] } _triggerSlideEvent(relatedTarget, eventDirectionName) { const targetIndex = this._getItemIndex(relatedTarget); const fromIndex = this._getItemIndex(this._element.querySelector(Selector$2.ACTIVE_ITEM)); const slideEvent = $.Event(Event$2.SLIDE, { relatedTarget, direction: eventDirectionName, from: fromIndex, to: targetIndex }); $(this._element).trigger(slideEvent); return slideEvent } _setActiveIndicatorElement(element) { if (this._indicatorsElement) { const indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector$2.ACTIVE)); $(indicators) .removeClass(ClassName$2.ACTIVE); const nextIndicator = this._indicatorsElement.children[ this._getItemIndex(element) ]; if (nextIndicator) { $(nextIndicator).addClass(ClassName$2.ACTIVE); } } } _slide(direction, element) { const activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); const activeElementIndex = this._getItemIndex(activeElement); const nextElement = element || activeElement && this._getItemByDirection(direction, activeElement); const nextElementIndex = this._getItemIndex(nextElement); const isCycling = Boolean(this._interval); let directionalClassName; let orderClassName; let eventDirectionName; if (direction === Direction.NEXT) { directionalClassName = ClassName$2.LEFT; orderClassName = ClassName$2.NEXT; eventDirectionName = Direction.LEFT; } else { directionalClassName = ClassName$2.RIGHT; orderClassName = ClassName$2.PREV; eventDirectionName = Direction.RIGHT; } if (nextElement && $(nextElement).hasClass(ClassName$2.ACTIVE)) { this._isSliding = false; return } const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName); if (slideEvent.isDefaultPrevented()) { return } if (!activeElement || !nextElement) { // Some weirdness is happening, so we bail return } this._isSliding = true; if (isCycling) { this.pause(); } this._setActiveIndicatorElement(nextElement); const slidEvent = $.Event(Event$2.SLID, { relatedTarget: nextElement, direction: eventDirectionName, from: activeElementIndex, to: nextElementIndex }); if ($(this._element).hasClass(ClassName$2.SLIDE)) { $(nextElement).addClass(orderClassName); Util.reflow(nextElement); $(activeElement).addClass(directionalClassName); $(nextElement).addClass(directionalClassName); const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10); if (nextElementInterval) { this._config.defaultInterval = this._config.defaultInterval || this._config.interval; this._config.interval = nextElementInterval; } else { this._config.interval = this._config.defaultInterval || this._config.interval; } const transitionDuration = Util.getTransitionDurationFromElement(activeElement); $(activeElement) .one(Util.TRANSITION_END, () => { $(nextElement) .removeClass(`${directionalClassName} ${orderClassName}`) .addClass(ClassName$2.ACTIVE); $(activeElement).removeClass(`${ClassName$2.ACTIVE} ${orderClassName} ${directionalClassName}`); this._isSliding = false; setTimeout(() => $(this._element).trigger(slidEvent), 0); }) .emulateTransitionEnd(transitionDuration); } else { $(activeElement).removeClass(ClassName$2.ACTIVE); $(nextElement).addClass(ClassName$2.ACTIVE); this._isSliding = false; $(this._element).trigger(slidEvent); } if (isCycling) { this.cycle(); } } // Static static _jQueryInterface(config) { return this.each(function () { let data = $(this).data(DATA_KEY$2); let _config = { ...Default, ...$(this).data() }; if (typeof config === 'object') { _config = { ..._config, ...config }; } const action = typeof config === 'string' ? config : _config.slide; if (!data) { data = new Carousel(this, _config); $(this).data(DATA_KEY$2, data); } if (typeof config === 'number') { data.to(config); } else if (typeof action === 'string') { if (typeof data[action] === 'undefined') { throw new TypeError(`No method named "${action}"`) } data[action](); } else if (_config.interval && _config.ride) { data.pause(); data.cycle(); } }) } static _dataApiClickHandler(event) { const selector = Util.getSelectorFromElement(this); if (!selector) { return } const target = $(selector)[0]; if (!target || !$(target).hasClass(ClassName$2.CAROUSEL)) { return } const config = { ...$(target).data(), ...$(this).data() }; const slideIndex = this.getAttribute('data-slide-to'); if (slideIndex) { config.interval = false; } Carousel._jQueryInterface.call($(target), config); if (slideIndex) { $(target).data(DATA_KEY$2).to(slideIndex); } event.preventDefault(); } } /** * ------------------------------------------------------------------------ * Data Api implementation * ------------------------------------------------------------------------ */ $(document) .on(Event$2.CLICK_DATA_API, Selector$2.DATA_SLIDE, Carousel._dataApiClickHandler); $(window).on(Event$2.LOAD_DATA_API, () => { const carousels = [].slice.call(document.querySelectorAll(Selector$2.DATA_RIDE)); for (let i = 0, len = carousels.length; i < len; i++) { const $carousel = $(carousels[i]); Carousel._jQueryInterface.call($carousel, $carousel.data()); } }); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$2] = Carousel._jQueryInterface; $.fn[NAME$2].Constructor = Carousel; $.fn[NAME$2].noConflict = () => { $.fn[NAME$2] = JQUERY_NO_CONFLICT$2; return Carousel._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): collapse.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$3 = 'collapse'; const VERSION$3 = '4.3.1'; const DATA_KEY$3 = 'bs.collapse'; const EVENT_KEY$3 = `.${DATA_KEY$3}`; const DATA_API_KEY$3 = '.data-api'; const JQUERY_NO_CONFLICT$3 = $.fn[NAME$3]; const Default$1 = { toggle : true, parent : '' }; const DefaultType$1 = { toggle : 'boolean', parent : '(string|element)' }; const Event$3 = { SHOW : `show${EVENT_KEY$3}`, SHOWN : `shown${EVENT_KEY$3}`, HIDE : `hide${EVENT_KEY$3}`, HIDDEN : `hidden${EVENT_KEY$3}`, CLICK_DATA_API : `click${EVENT_KEY$3}${DATA_API_KEY$3}` }; const ClassName$3 = { SHOW : 'show', COLLAPSE : 'collapse', COLLAPSING : 'collapsing', COLLAPSED : 'collapsed' }; const Dimension = { WIDTH : 'width', HEIGHT : 'height' }; const Selector$3 = { ACTIVES : '.show, .collapsing', DATA_TOGGLE : '[data-toggle="collapse"]' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Collapse { constructor(element, config) { this._isTransitioning = false; this._element = element; this._config = this._getConfig(config); this._triggerArray = [].slice.call(document.querySelectorAll( `[data-toggle="collapse"][href="#${element.id}"],` + `[data-toggle="collapse"][data-target="#${element.id}"]` )); const toggleList = [].slice.call(document.querySelectorAll(Selector$3.DATA_TOGGLE)); for (let i = 0, len = toggleList.length; i < len; i++) { const elem = toggleList[i]; const selector = Util.getSelectorFromElement(elem); const filterElement = [].slice.call(document.querySelectorAll(selector)) .filter((foundElem) => foundElem === element); if (selector !== null && filterElement.length > 0) { this._selector = selector; this._triggerArray.push(elem); } } this._parent = this._config.parent ? this._getParent() : null; if (!this._config.parent) { this._addAriaAndCollapsedClass(this._element, this._triggerArray); } if (this._config.toggle) { this.toggle(); } } // Getters static get VERSION() { return VERSION$3 } static get Default() { return Default$1 } // Public toggle() { if ($(this._element).hasClass(ClassName$3.SHOW)) { this.hide(); } else { this.show(); } } show() { if (this._isTransitioning || $(this._element).hasClass(ClassName$3.SHOW)) { return } let actives; let activesData; if (this._parent) { actives = [].slice.call(this._parent.querySelectorAll(Selector$3.ACTIVES)) .filter((elem) => { if (typeof this._config.parent === 'string') { return elem.getAttribute('data-parent') === this._config.parent } return elem.classList.contains(ClassName$3.COLLAPSE) }); if (actives.length === 0) { actives = null; } } if (actives) { activesData = $(actives).not(this._selector).data(DATA_KEY$3); if (activesData && activesData._isTransitioning) { return } } const startEvent = $.Event(Event$3.SHOW); $(this._element).trigger(startEvent); if (startEvent.isDefaultPrevented()) { return } if (actives) { Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide'); if (!activesData) { $(actives).data(DATA_KEY$3, null); } } const dimension = this._getDimension(); $(this._element) .removeClass(ClassName$3.COLLAPSE) .addClass(ClassName$3.COLLAPSING); this._element.style[dimension] = 0; if (this._triggerArray.length) { $(this._triggerArray) .removeClass(ClassName$3.COLLAPSED) .attr('aria-expanded', true); } this.setTransitioning(true); const complete = () => { $(this._element) .removeClass(ClassName$3.COLLAPSING) .addClass(ClassName$3.COLLAPSE) .addClass(ClassName$3.SHOW); this._element.style[dimension] = ''; this.setTransitioning(false); $(this._element).trigger(Event$3.SHOWN); }; const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); const scrollSize = `scroll${capitalizedDimension}`; const transitionDuration = Util.getTransitionDurationFromElement(this._element); $(this._element) .one(Util.TRANSITION_END, complete) .emulateTransitionEnd(transitionDuration); this._element.style[dimension] = `${this._element[scrollSize]}px`; } hide() { if (this._isTransitioning || !$(this._element).hasClass(ClassName$3.SHOW)) { return } const startEvent = $.Event(Event$3.HIDE); $(this._element).trigger(startEvent); if (startEvent.isDefaultPrevented()) { return } const dimension = this._getDimension(); this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`; Util.reflow(this._element); $(this._element) .addClass(ClassName$3.COLLAPSING) .removeClass(ClassName$3.COLLAPSE) .removeClass(ClassName$3.SHOW); const triggerArrayLength = this._triggerArray.length; if (triggerArrayLength > 0) { for (let i = 0; i < triggerArrayLength; i++) { const trigger = this._triggerArray[i]; const selector = Util.getSelectorFromElement(trigger); if (selector !== null) { const $elem = $([].slice.call(document.querySelectorAll(selector))); if (!$elem.hasClass(ClassName$3.SHOW)) { $(trigger).addClass(ClassName$3.COLLAPSED) .attr('aria-expanded', false); } } } } this.setTransitioning(true); const complete = () => { this.setTransitioning(false); $(this._element) .removeClass(ClassName$3.COLLAPSING) .addClass(ClassName$3.COLLAPSE) .trigger(Event$3.HIDDEN); }; this._element.style[dimension] = ''; const transitionDuration = Util.getTransitionDurationFromElement(this._element); $(this._element) .one(Util.TRANSITION_END, complete) .emulateTransitionEnd(transitionDuration); } setTransitioning(isTransitioning) { this._isTransitioning = isTransitioning; } dispose() { $.removeData(this._element, DATA_KEY$3); this._config = null; this._parent = null; this._element = null; this._triggerArray = null; this._isTransitioning = null; } // Private _getConfig(config) { config = { ...Default$1, ...config }; config.toggle = Boolean(config.toggle); // Coerce string values Util.typeCheckConfig(NAME$3, config, DefaultType$1); return config } _getDimension() { const hasWidth = $(this._element).hasClass(Dimension.WIDTH); return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT } _getParent() { let parent; if (Util.isElement(this._config.parent)) { parent = this._config.parent; // It's a jQuery object if (typeof this._config.parent.jquery !== 'undefined') { parent = this._config.parent[0]; } } else { parent = document.querySelector(this._config.parent); } const selector = `[data-toggle="collapse"][data-parent="${this._config.parent}"]`; const children = [].slice.call(parent.querySelectorAll(selector)); $(children).each((i, element) => { this._addAriaAndCollapsedClass( Collapse._getTargetFromElement(element), [element] ); }); return parent } _addAriaAndCollapsedClass(element, triggerArray) { const isOpen = $(element).hasClass(ClassName$3.SHOW); if (triggerArray.length) { $(triggerArray) .toggleClass(ClassName$3.COLLAPSED, !isOpen) .attr('aria-expanded', isOpen); } } // Static static _getTargetFromElement(element) { const selector = Util.getSelectorFromElement(element); return selector ? document.querySelector(selector) : null } static _jQueryInterface(config) { return this.each(function () { const $this = $(this); let data = $this.data(DATA_KEY$3); const _config = { ...Default$1, ...$this.data(), ...typeof config === 'object' && config ? config : {} }; if (!data && _config.toggle && /show|hide/.test(config)) { _config.toggle = false; } if (!data) { data = new Collapse(this, _config); $this.data(DATA_KEY$3, data); } if (typeof config === 'string') { if (typeof data[config] === 'undefined') { throw new TypeError(`No method named "${config}"`) } data[config](); } }) } } /** * ------------------------------------------------------------------------ * Data Api implementation * ------------------------------------------------------------------------ */ $(document).on(Event$3.CLICK_DATA_API, Selector$3.DATA_TOGGLE, function (event) { // preventDefault only for elements (which change the URL) not inside the collapsible element if (event.currentTarget.tagName === 'A') { event.preventDefault(); } const $trigger = $(this); const selector = Util.getSelectorFromElement(this); const selectors = [].slice.call(document.querySelectorAll(selector)); $(selectors).each(function () { const $target = $(this); const data = $target.data(DATA_KEY$3); const config = data ? 'toggle' : $trigger.data(); Collapse._jQueryInterface.call($target, config); }); }); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$3] = Collapse._jQueryInterface; $.fn[NAME$3].Constructor = Collapse; $.fn[NAME$3].noConflict = () => { $.fn[NAME$3] = JQUERY_NO_CONFLICT$3; return Collapse._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): modal.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$4 = 'modal'; const VERSION$4 = '4.3.1'; const DATA_KEY$4 = 'bs.modal'; const EVENT_KEY$4 = `.${DATA_KEY$4}`; const DATA_API_KEY$4 = '.data-api'; const JQUERY_NO_CONFLICT$4 = $.fn[NAME$4]; const ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key const Default$2 = { backdrop : true, keyboard : true, focus : true, show : true }; const DefaultType$2 = { backdrop : '(boolean|string)', keyboard : 'boolean', focus : 'boolean', show : 'boolean' }; const Event$4 = { HIDE : `hide${EVENT_KEY$4}`, HIDDEN : `hidden${EVENT_KEY$4}`, SHOW : `show${EVENT_KEY$4}`, SHOWN : `shown${EVENT_KEY$4}`, FOCUSIN : `focusin${EVENT_KEY$4}`, RESIZE : `resize${EVENT_KEY$4}`, CLICK_DISMISS : `click.dismiss${EVENT_KEY$4}`, KEYDOWN_DISMISS : `keydown.dismiss${EVENT_KEY$4}`, MOUSEUP_DISMISS : `mouseup.dismiss${EVENT_KEY$4}`, MOUSEDOWN_DISMISS : `mousedown.dismiss${EVENT_KEY$4}`, CLICK_DATA_API : `click${EVENT_KEY$4}${DATA_API_KEY$4}` }; const ClassName$4 = { SCROLLABLE : 'modal-dialog-scrollable', SCROLLBAR_MEASURER : 'modal-scrollbar-measure', BACKDROP : 'modal-backdrop', OPEN : 'modal-open', FADE : 'fade', SHOW : 'show' }; const Selector$4 = { DIALOG : '.modal-dialog', MODAL_BODY : '.modal-body', DATA_TOGGLE : '[data-toggle="modal"]', DATA_DISMISS : '[data-dismiss="modal"]', FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', STICKY_CONTENT : '.sticky-top' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Modal { constructor(element, config) { this._config = this._getConfig(config); this._element = element; this._dialog = element.querySelector(Selector$4.DIALOG); this._backdrop = null; this._isShown = false; this._isBodyOverflowing = false; this._ignoreBackdropClick = false; this._isTransitioning = false; this._scrollbarWidth = 0; } // Getters static get VERSION() { return VERSION$4 } static get Default() { return Default$2 } // Public toggle(relatedTarget) { return this._isShown ? this.hide() : this.show(relatedTarget) } show(relatedTarget) { if (this._isShown || this._isTransitioning) { return } if ($(this._element).hasClass(ClassName$4.FADE)) { this._isTransitioning = true; } const showEvent = $.Event(Event$4.SHOW, { relatedTarget }); $(this._element).trigger(showEvent); if (this._isShown || showEvent.isDefaultPrevented()) { return } this._isShown = true; this._checkScrollbar(); this._setScrollbar(); this._adjustDialog(); this._setEscapeEvent(); this._setResizeEvent(); $(this._element).on( Event$4.CLICK_DISMISS, Selector$4.DATA_DISMISS, (event) => this.hide(event) ); $(this._dialog).on(Event$4.MOUSEDOWN_DISMISS, () => { $(this._element).one(Event$4.MOUSEUP_DISMISS, (event) => { if ($(event.target).is(this._element)) { this._ignoreBackdropClick = true; } }); }); this._showBackdrop(() => this._showElement(relatedTarget)); } hide(event) { if (event) { event.preventDefault(); } if (!this._isShown || this._isTransitioning) { return } const hideEvent = $.Event(Event$4.HIDE); $(this._element).trigger(hideEvent); if (!this._isShown || hideEvent.isDefaultPrevented()) { return } this._isShown = false; const transition = $(this._element).hasClass(ClassName$4.FADE); if (transition) { this._isTransitioning = true; } this._setEscapeEvent(); this._setResizeEvent(); $(document).off(Event$4.FOCUSIN); $(this._element).removeClass(ClassName$4.SHOW); $(this._element).off(Event$4.CLICK_DISMISS); $(this._dialog).off(Event$4.MOUSEDOWN_DISMISS); if (transition) { const transitionDuration = Util.getTransitionDurationFromElement(this._element); $(this._element) .one(Util.TRANSITION_END, (event) => this._hideModal(event)) .emulateTransitionEnd(transitionDuration); } else { this._hideModal(); } } dispose() { [window, this._element, this._dialog] .forEach((htmlElement) => $(htmlElement).off(EVENT_KEY$4)); /** * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API` * Do not move `document` in `htmlElements` array * It will remove `Event.CLICK_DATA_API` event that should remain */ $(document).off(Event$4.FOCUSIN); $.removeData(this._element, DATA_KEY$4); this._config = null; this._element = null; this._dialog = null; this._backdrop = null; this._isShown = null; this._isBodyOverflowing = null; this._ignoreBackdropClick = null; this._isTransitioning = null; this._scrollbarWidth = null; } handleUpdate() { this._adjustDialog(); } // Private _getConfig(config) { config = { ...Default$2, ...config }; Util.typeCheckConfig(NAME$4, config, DefaultType$2); return config } _showElement(relatedTarget) { const transition = $(this._element).hasClass(ClassName$4.FADE); if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) { // Don't move modal's DOM position document.body.appendChild(this._element); } this._element.style.display = 'block'; this._element.removeAttribute('aria-hidden'); this._element.setAttribute('aria-modal', true); if ($(this._dialog).hasClass(ClassName$4.SCROLLABLE)) { this._dialog.querySelector(Selector$4.MODAL_BODY).scrollTop = 0; } else { this._element.scrollTop = 0; } if (transition) { Util.reflow(this._element); } $(this._element).addClass(ClassName$4.SHOW); if (this._config.focus) { this._enforceFocus(); } const shownEvent = $.Event(Event$4.SHOWN, { relatedTarget }); const transitionComplete = () => { if (this._config.focus) { this._element.focus(); } this._isTransitioning = false; $(this._element).trigger(shownEvent); }; if (transition) { const transitionDuration = Util.getTransitionDurationFromElement(this._dialog); $(this._dialog) .one(Util.TRANSITION_END, transitionComplete) .emulateTransitionEnd(transitionDuration); } else { transitionComplete(); } } _enforceFocus() { $(document) .off(Event$4.FOCUSIN) // Guard against infinite focus loop .on(Event$4.FOCUSIN, (event) => { if (document !== event.target && this._element !== event.target && $(this._element).has(event.target).length === 0) { this._element.focus(); } }); } _setEscapeEvent() { if (this._isShown && this._config.keyboard) { $(this._element).on(Event$4.KEYDOWN_DISMISS, (event) => { if (event.which === ESCAPE_KEYCODE) { event.preventDefault(); this.hide(); } }); } else if (!this._isShown) { $(this._element).off(Event$4.KEYDOWN_DISMISS); } } _setResizeEvent() { if (this._isShown) { $(window).on(Event$4.RESIZE, (event) => this.handleUpdate(event)); } else { $(window).off(Event$4.RESIZE); } } _hideModal() { this._element.style.display = 'none'; this._element.setAttribute('aria-hidden', true); this._element.removeAttribute('aria-modal'); this._isTransitioning = false; this._showBackdrop(() => { $(document.body).removeClass(ClassName$4.OPEN); this._resetAdjustments(); this._resetScrollbar(); $(this._element).trigger(Event$4.HIDDEN); }); } _removeBackdrop() { if (this._backdrop) { $(this._backdrop).remove(); this._backdrop = null; } } _showBackdrop(callback) { const animate = $(this._element).hasClass(ClassName$4.FADE) ? ClassName$4.FADE : ''; if (this._isShown && this._config.backdrop) { this._backdrop = document.createElement('div'); this._backdrop.className = ClassName$4.BACKDROP; if (animate) { this._backdrop.classList.add(animate); } $(this._backdrop).appendTo(document.body); $(this._element).on(Event$4.CLICK_DISMISS, (event) => { if (this._ignoreBackdropClick) { this._ignoreBackdropClick = false; return } if (event.target !== event.currentTarget) { return } if (this._config.backdrop === 'static') { this._element.focus(); } else { this.hide(); } }); if (animate) { Util.reflow(this._backdrop); } $(this._backdrop).addClass(ClassName$4.SHOW); if (!callback) { return } if (!animate) { callback(); return } const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); $(this._backdrop) .one(Util.TRANSITION_END, callback) .emulateTransitionEnd(backdropTransitionDuration); } else if (!this._isShown && this._backdrop) { $(this._backdrop).removeClass(ClassName$4.SHOW); const callbackRemove = () => { this._removeBackdrop(); if (callback) { callback(); } }; if ($(this._element).hasClass(ClassName$4.FADE)) { const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); $(this._backdrop) .one(Util.TRANSITION_END, callbackRemove) .emulateTransitionEnd(backdropTransitionDuration); } else { callbackRemove(); } } else if (callback) { callback(); } } // ---------------------------------------------------------------------- // the following methods are used to handle overflowing modals // todo (fat): these should probably be refactored out of modal.js // ---------------------------------------------------------------------- _adjustDialog() { const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; if (!this._isBodyOverflowing && isModalOverflowing) { this._element.style.paddingLeft = `${this._scrollbarWidth}px`; } if (this._isBodyOverflowing && !isModalOverflowing) { this._element.style.paddingRight = `${this._scrollbarWidth}px`; } } _resetAdjustments() { this._element.style.paddingLeft = ''; this._element.style.paddingRight = ''; } _checkScrollbar() { const rect = document.body.getBoundingClientRect(); this._isBodyOverflowing = rect.left + rect.right < window.innerWidth; this._scrollbarWidth = this._getScrollbarWidth(); } _setScrollbar() { if (this._isBodyOverflowing) { // Note: DOMNode.style.paddingRight returns the actual value or '' if not set // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set const fixedContent = [].slice.call(document.querySelectorAll(Selector$4.FIXED_CONTENT)); const stickyContent = [].slice.call(document.querySelectorAll(Selector$4.STICKY_CONTENT)); // Adjust fixed content padding $(fixedContent).each((index, element) => { const actualPadding = element.style.paddingRight; const calculatedPadding = $(element).css('padding-right'); $(element) .data('padding-right', actualPadding) .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`); }); // Adjust sticky content margin $(stickyContent).each((index, element) => { const actualMargin = element.style.marginRight; const calculatedMargin = $(element).css('margin-right'); $(element) .data('margin-right', actualMargin) .css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`); }); // Adjust body padding const actualPadding = document.body.style.paddingRight; const calculatedPadding = $(document.body).css('padding-right'); $(document.body) .data('padding-right', actualPadding) .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`); } $(document.body).addClass(ClassName$4.OPEN); } _resetScrollbar() { // Restore fixed content padding const fixedContent = [].slice.call(document.querySelectorAll(Selector$4.FIXED_CONTENT)); $(fixedContent).each((index, element) => { const padding = $(element).data('padding-right'); $(element).removeData('padding-right'); element.style.paddingRight = padding ? padding : ''; }); // Restore sticky content const elements = [].slice.call(document.querySelectorAll(`${Selector$4.STICKY_CONTENT}`)); $(elements).each((index, element) => { const margin = $(element).data('margin-right'); if (typeof margin !== 'undefined') { $(element).css('margin-right', margin).removeData('margin-right'); } }); // Restore body padding const padding = $(document.body).data('padding-right'); $(document.body).removeData('padding-right'); document.body.style.paddingRight = padding ? padding : ''; } _getScrollbarWidth() { // thx d.walsh const scrollDiv = document.createElement('div'); scrollDiv.className = ClassName$4.SCROLLBAR_MEASURER; document.body.appendChild(scrollDiv); const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; document.body.removeChild(scrollDiv); return scrollbarWidth } // Static static _jQueryInterface(config, relatedTarget) { return this.each(function () { let data = $(this).data(DATA_KEY$4); const _config = { ...Default$2, ...$(this).data(), ...typeof config === 'object' && config ? config : {} }; if (!data) { data = new Modal(this, _config); $(this).data(DATA_KEY$4, data); } if (typeof config === 'string') { if (typeof data[config] === 'undefined') { throw new TypeError(`No method named "${config}"`) } data[config](relatedTarget); } else if (_config.show) { data.show(relatedTarget); } }) } } /** * ------------------------------------------------------------------------ * Data Api implementation * ------------------------------------------------------------------------ */ $(document).on(Event$4.CLICK_DATA_API, Selector$4.DATA_TOGGLE, function (event) { let target; const selector = Util.getSelectorFromElement(this); if (selector) { target = document.querySelector(selector); } const config = $(target).data(DATA_KEY$4) ? 'toggle' : { ...$(target).data(), ...$(this).data() }; if (this.tagName === 'A' || this.tagName === 'AREA') { event.preventDefault(); } const $target = $(target).one(Event$4.SHOW, (showEvent) => { if (showEvent.isDefaultPrevented()) { // Only register focus restorer if modal will actually get shown return } $target.one(Event$4.HIDDEN, () => { if ($(this).is(':visible')) { this.focus(); } }); }); Modal._jQueryInterface.call($(target), config, this); }); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$4] = Modal._jQueryInterface; $.fn[NAME$4].Constructor = Modal; $.fn[NAME$4].noConflict = () => { $.fn[NAME$4] = JQUERY_NO_CONFLICT$4; return Modal._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): tools/sanitizer.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ const uriAttrs = [ 'background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href' ]; const ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i; const DefaultWhitelist = { // Global attributes allowed on any supplied element below. '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], a: ['target', 'href', 'title', 'rel'], area: [], b: [], br: [], col: [], code: [], div: [], em: [], hr: [], h1: [], h2: [], h3: [], h4: [], h5: [], h6: [], i: [], img: ['src', 'alt', 'title', 'width', 'height'], li: [], ol: [], p: [], pre: [], s: [], small: [], span: [], sub: [], sup: [], strong: [], u: [], ul: [] }; /** * A pattern that recognizes a commonly useful subset of URLs that are safe. * * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts */ const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi; /** * A pattern that matches safe data URLs. Only matches image, video and audio types. * * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts */ const DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i; function allowedAttribute(attr, allowedAttributeList) { const attrName = attr.nodeName.toLowerCase(); if (allowedAttributeList.indexOf(attrName) !== -1) { if (uriAttrs.indexOf(attrName) !== -1) { return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)) } return true } const regExp = allowedAttributeList.filter((attrRegex) => attrRegex instanceof RegExp); // Check if a regular expression validates the attribute. for (let i = 0, l = regExp.length; i < l; i++) { if (attrName.match(regExp[i])) { return true } } return false } function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { if (unsafeHtml.length === 0) { return unsafeHtml } if (sanitizeFn && typeof sanitizeFn === 'function') { return sanitizeFn(unsafeHtml) } const domParser = new window.DOMParser(); const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html'); const whitelistKeys = Object.keys(whiteList); const elements = [].slice.call(createdDocument.body.querySelectorAll('*')); for (let i = 0, len = elements.length; i < len; i++) { const el = elements[i]; const elName = el.nodeName.toLowerCase(); if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) { el.parentNode.removeChild(el); continue } const attributeList = [].slice.call(el.attributes); const whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []); attributeList.forEach((attr) => { if (!allowedAttribute(attr, whitelistedAttributes)) { el.removeAttribute(attr.nodeName); } }); } return createdDocument.body.innerHTML } /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): tooltip.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$5 = 'tooltip'; const VERSION$5 = '4.3.1'; const DATA_KEY$5 = 'bs.tooltip'; const EVENT_KEY$5 = `.${DATA_KEY$5}`; const JQUERY_NO_CONFLICT$5 = $.fn[NAME$5]; const CLASS_PREFIX = 'bs-tooltip'; const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g'); const DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']; const DefaultType$3 = { animation : 'boolean', template : 'string', title : '(string|element|function)', trigger : 'string', delay : '(number|object)', html : 'boolean', selector : '(string|boolean)', placement : '(string|function)', offset : '(number|string|function)', container : '(string|element|boolean)', fallbackPlacement : '(string|array)', boundary : '(string|element)', sanitize : 'boolean', sanitizeFn : '(null|function)', whiteList : 'object' }; const AttachmentMap = { AUTO : 'auto', TOP : 'top', RIGHT : 'right', BOTTOM : 'bottom', LEFT : 'left' }; const Default$3 = { animation : true, template : '', trigger : 'hover focus', title : '', delay : 0, html : false, selector : false, placement : 'top', offset : 0, container : false, fallbackPlacement : 'flip', boundary : 'scrollParent', sanitize : true, sanitizeFn : null, whiteList : DefaultWhitelist }; const HoverState = { SHOW : 'show', OUT : 'out' }; const Event$5 = { HIDE : `hide${EVENT_KEY$5}`, HIDDEN : `hidden${EVENT_KEY$5}`, SHOW : `show${EVENT_KEY$5}`, SHOWN : `shown${EVENT_KEY$5}`, INSERTED : `inserted${EVENT_KEY$5}`, CLICK : `click${EVENT_KEY$5}`, FOCUSIN : `focusin${EVENT_KEY$5}`, FOCUSOUT : `focusout${EVENT_KEY$5}`, MOUSEENTER : `mouseenter${EVENT_KEY$5}`, MOUSELEAVE : `mouseleave${EVENT_KEY$5}` }; const ClassName$5 = { FADE : 'fade', SHOW : 'show' }; const Selector$5 = { TOOLTIP : '.tooltip', TOOLTIP_INNER : '.tooltip-inner', ARROW : '.arrow' }; const Trigger = { HOVER : 'hover', FOCUS : 'focus', CLICK : 'click', MANUAL : 'manual' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Tooltip { constructor(element, config) { /** * Check for Popper dependency * Popper - https://popper.js.org */ if (typeof Popper$1 === 'undefined') { throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)') } // private this._isEnabled = true; this._timeout = 0; this._hoverState = ''; this._activeTrigger = {}; this._popper = null; // Protected this.element = element; this.config = this._getConfig(config); this.tip = null; this._setListeners(); } // Getters static get VERSION() { return VERSION$5 } static get Default() { return Default$3 } static get NAME() { return NAME$5 } static get DATA_KEY() { return DATA_KEY$5 } static get Event() { return Event$5 } static get EVENT_KEY() { return EVENT_KEY$5 } static get DefaultType() { return DefaultType$3 } // Public enable() { this._isEnabled = true; } disable() { this._isEnabled = false; } toggleEnabled() { this._isEnabled = !this._isEnabled; } toggle(event) { if (!this._isEnabled) { return } if (event) { const dataKey = this.constructor.DATA_KEY; let context = $(event.currentTarget).data(dataKey); if (!context) { context = new this.constructor( event.currentTarget, this._getDelegateConfig() ); $(event.currentTarget).data(dataKey, context); } context._activeTrigger.click = !context._activeTrigger.click; if (context._isWithActiveTrigger()) { context._enter(null, context); } else { context._leave(null, context); } } else { if ($(this.getTipElement()).hasClass(ClassName$5.SHOW)) { this._leave(null, this); return } this._enter(null, this); } } dispose() { clearTimeout(this._timeout); $.removeData(this.element, this.constructor.DATA_KEY); $(this.element).off(this.constructor.EVENT_KEY); $(this.element).closest('.modal').off('hide.bs.modal'); if (this.tip) { $(this.tip).remove(); } this._isEnabled = null; this._timeout = null; this._hoverState = null; this._activeTrigger = null; if (this._popper !== null) { this._popper.destroy(); } this._popper = null; this.element = null; this.config = null; this.tip = null; } show() { if ($(this.element).css('display') === 'none') { throw new Error('Please use show on visible elements') } const showEvent = $.Event(this.constructor.Event.SHOW); if (this.isWithContent() && this._isEnabled) { $(this.element).trigger(showEvent); const shadowRoot = Util.findShadowRoot(this.element); const isInTheDom = $.contains( shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element ); if (showEvent.isDefaultPrevented() || !isInTheDom) { return } const tip = this.getTipElement(); const tipId = Util.getUID(this.constructor.NAME); tip.setAttribute('id', tipId); this.element.setAttribute('aria-describedby', tipId); this.setContent(); if (this.config.animation) { $(tip).addClass(ClassName$5.FADE); } const placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement; const attachment = this._getAttachment(placement); this.addAttachmentClass(attachment); const container = this._getContainer(); $(tip).data(this.constructor.DATA_KEY, this); if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) { $(tip).appendTo(container); } $(this.element).trigger(this.constructor.Event.INSERTED); this._popper = new Popper$1(this.element, tip, { placement: attachment, modifiers: { offset: this._getOffset(), flip: { behavior: this.config.fallbackPlacement }, arrow: { element: Selector$5.ARROW }, preventOverflow: { boundariesElement: this.config.boundary } }, onCreate: (data) => { if (data.originalPlacement !== data.placement) { this._handlePopperPlacementChange(data); } }, onUpdate: (data) => this._handlePopperPlacementChange(data) }); $(tip).addClass(ClassName$5.SHOW); // If this is a touch-enabled device we add extra // empty mouseover listeners to the body's immediate children; // only needed because of broken event delegation on iOS // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html if ('ontouchstart' in document.documentElement) { $(document.body).children().on('mouseover', null, $.noop); } const complete = () => { if (this.config.animation) { this._fixTransition(); } const prevHoverState = this._hoverState; this._hoverState = null; $(this.element).trigger(this.constructor.Event.SHOWN); if (prevHoverState === HoverState.OUT) { this._leave(null, this); } }; if ($(this.tip).hasClass(ClassName$5.FADE)) { const transitionDuration = Util.getTransitionDurationFromElement(this.tip); $(this.tip) .one(Util.TRANSITION_END, complete) .emulateTransitionEnd(transitionDuration); } else { complete(); } } } hide(callback) { const tip = this.getTipElement(); const hideEvent = $.Event(this.constructor.Event.HIDE); const complete = () => { if (this._hoverState !== HoverState.SHOW && tip.parentNode) { tip.parentNode.removeChild(tip); } this._cleanTipClass(); this.element.removeAttribute('aria-describedby'); $(this.element).trigger(this.constructor.Event.HIDDEN); if (this._popper !== null) { this._popper.destroy(); } if (callback) { callback(); } }; $(this.element).trigger(hideEvent); if (hideEvent.isDefaultPrevented()) { return } $(tip).removeClass(ClassName$5.SHOW); // If this is a touch-enabled device we remove the extra // empty mouseover listeners we added for iOS support if ('ontouchstart' in document.documentElement) { $(document.body).children().off('mouseover', null, $.noop); } this._activeTrigger[Trigger.CLICK] = false; this._activeTrigger[Trigger.FOCUS] = false; this._activeTrigger[Trigger.HOVER] = false; if ($(this.tip).hasClass(ClassName$5.FADE)) { const transitionDuration = Util.getTransitionDurationFromElement(tip); $(tip) .one(Util.TRANSITION_END, complete) .emulateTransitionEnd(transitionDuration); } else { complete(); } this._hoverState = ''; } update() { if (this._popper !== null) { this._popper.scheduleUpdate(); } } // Protected isWithContent() { return Boolean(this.getTitle()) } addAttachmentClass(attachment) { $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`); } getTipElement() { this.tip = this.tip || $(this.config.template)[0]; return this.tip } setContent() { const tip = this.getTipElement(); this.setElementContent($(tip.querySelectorAll(Selector$5.TOOLTIP_INNER)), this.getTitle()); $(tip).removeClass(`${ClassName$5.FADE} ${ClassName$5.SHOW}`); } setElementContent($element, content) { if (typeof content === 'object' && (content.nodeType || content.jquery)) { // Content is a DOM node or a jQuery if (this.config.html) { if (!$(content).parent().is($element)) { $element.empty().append(content); } } else { $element.text($(content).text()); } return } if (this.config.html) { if (this.config.sanitize) { content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn); } $element.html(content); } else { $element.text(content); } } getTitle() { let title = this.element.getAttribute('data-original-title'); if (!title) { title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title; } return title } // Private _getOffset() { const offset = {}; if (typeof this.config.offset === 'function') { offset.fn = (data) => { data.offsets = { ...data.offsets, ...this.config.offset(data.offsets, this.element) || {} }; return data }; } else { offset.offset = this.config.offset; } return offset } _getContainer() { if (this.config.container === false) { return document.body } if (Util.isElement(this.config.container)) { return $(this.config.container) } return $(document).find(this.config.container) } _getAttachment(placement) { return AttachmentMap[placement.toUpperCase()] } _setListeners() { const triggers = this.config.trigger.split(' '); triggers.forEach((trigger) => { if (trigger === 'click') { $(this.element).on( this.constructor.Event.CLICK, this.config.selector, (event) => this.toggle(event) ); } else if (trigger !== Trigger.MANUAL) { const eventIn = trigger === Trigger.HOVER ? this.constructor.Event.MOUSEENTER : this.constructor.Event.FOCUSIN; const eventOut = trigger === Trigger.HOVER ? this.constructor.Event.MOUSELEAVE : this.constructor.Event.FOCUSOUT; $(this.element) .on( eventIn, this.config.selector, (event) => this._enter(event) ) .on( eventOut, this.config.selector, (event) => this._leave(event) ); } }); $(this.element).closest('.modal').on( 'hide.bs.modal', () => { if (this.element) { this.hide(); } } ); if (this.config.selector) { this.config = { ...this.config, trigger: 'manual', selector: '' }; } else { this._fixTitle(); } } _fixTitle() { const titleType = typeof this.element.getAttribute('data-original-title'); if (this.element.getAttribute('title') || titleType !== 'string') { this.element.setAttribute( 'data-original-title', this.element.getAttribute('title') || '' ); this.element.setAttribute('title', ''); } } _enter(event, context) { const dataKey = this.constructor.DATA_KEY; context = context || $(event.currentTarget).data(dataKey); if (!context) { context = new this.constructor( event.currentTarget, this._getDelegateConfig() ); $(event.currentTarget).data(dataKey, context); } if (event) { context._activeTrigger[ event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER ] = true; } if ($(context.getTipElement()).hasClass(ClassName$5.SHOW) || context._hoverState === HoverState.SHOW) { context._hoverState = HoverState.SHOW; return } clearTimeout(context._timeout); context._hoverState = HoverState.SHOW; if (!context.config.delay || !context.config.delay.show) { context.show(); return } context._timeout = setTimeout(() => { if (context._hoverState === HoverState.SHOW) { context.show(); } }, context.config.delay.show); } _leave(event, context) { const dataKey = this.constructor.DATA_KEY; context = context || $(event.currentTarget).data(dataKey); if (!context) { context = new this.constructor( event.currentTarget, this._getDelegateConfig() ); $(event.currentTarget).data(dataKey, context); } if (event) { context._activeTrigger[ event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER ] = false; } if (context._isWithActiveTrigger()) { return } clearTimeout(context._timeout); context._hoverState = HoverState.OUT; if (!context.config.delay || !context.config.delay.hide) { context.hide(); return } context._timeout = setTimeout(() => { if (context._hoverState === HoverState.OUT) { context.hide(); } }, context.config.delay.hide); } _isWithActiveTrigger() { for (const trigger in this._activeTrigger) { if (this._activeTrigger[trigger]) { return true } } return false } _getConfig(config) { const dataAttributes = $(this.element).data(); Object.keys(dataAttributes) .forEach((dataAttr) => { if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) { delete dataAttributes[dataAttr]; } }); config = { ...this.constructor.Default, ...dataAttributes, ...typeof config === 'object' && config ? config : {} }; if (typeof config.delay === 'number') { config.delay = { show: config.delay, hide: config.delay }; } if (typeof config.title === 'number') { config.title = config.title.toString(); } if (typeof config.content === 'number') { config.content = config.content.toString(); } Util.typeCheckConfig( NAME$5, config, this.constructor.DefaultType ); if (config.sanitize) { config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn); } return config } _getDelegateConfig() { const config = {}; if (this.config) { for (const key in this.config) { if (this.constructor.Default[key] !== this.config[key]) { config[key] = this.config[key]; } } } return config } _cleanTipClass() { const $tip = $(this.getTipElement()); const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); if (tabClass !== null && tabClass.length) { $tip.removeClass(tabClass.join('')); } } _handlePopperPlacementChange(popperData) { const popperInstance = popperData.instance; this.tip = popperInstance.popper; this._cleanTipClass(); this.addAttachmentClass(this._getAttachment(popperData.placement)); } _fixTransition() { const tip = this.getTipElement(); const initConfigAnimation = this.config.animation; if (tip.getAttribute('x-placement') !== null) { return } $(tip).removeClass(ClassName$5.FADE); this.config.animation = false; this.hide(); this.show(); this.config.animation = initConfigAnimation; } // Static static _jQueryInterface(config) { return this.each(function () { let data = $(this).data(DATA_KEY$5); const _config = typeof config === 'object' && config; if (!data && /dispose|hide/.test(config)) { return } if (!data) { data = new Tooltip(this, _config); $(this).data(DATA_KEY$5, data); } if (typeof config === 'string') { if (typeof data[config] === 'undefined') { throw new TypeError(`No method named "${config}"`) } data[config](); } }) } } /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$5] = Tooltip._jQueryInterface; $.fn[NAME$5].Constructor = Tooltip; $.fn[NAME$5].noConflict = () => { $.fn[NAME$5] = JQUERY_NO_CONFLICT$5; return Tooltip._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): popover.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$6 = 'popover'; const VERSION$6 = '4.3.1'; const DATA_KEY$6 = 'bs.popover'; const EVENT_KEY$6 = `.${DATA_KEY$6}`; const JQUERY_NO_CONFLICT$6 = $.fn[NAME$6]; const CLASS_PREFIX$1 = 'bs-popover'; const BSCLS_PREFIX_REGEX$1 = new RegExp(`(^|\\s)${CLASS_PREFIX$1}\\S+`, 'g'); const Default$4 = { ...Tooltip.Default, placement : 'right', trigger : 'click', content : '', template : '' }; const DefaultType$4 = { ...Tooltip.DefaultType, content : '(string|element|function)' }; const ClassName$6 = { FADE : 'fade', SHOW : 'show' }; const Selector$6 = { TITLE : '.popover-header', CONTENT : '.popover-body' }; const Event$6 = { HIDE : `hide${EVENT_KEY$6}`, HIDDEN : `hidden${EVENT_KEY$6}`, SHOW : `show${EVENT_KEY$6}`, SHOWN : `shown${EVENT_KEY$6}`, INSERTED : `inserted${EVENT_KEY$6}`, CLICK : `click${EVENT_KEY$6}`, FOCUSIN : `focusin${EVENT_KEY$6}`, FOCUSOUT : `focusout${EVENT_KEY$6}`, MOUSEENTER : `mouseenter${EVENT_KEY$6}`, MOUSELEAVE : `mouseleave${EVENT_KEY$6}` }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class Popover extends Tooltip { // Getters static get VERSION() { return VERSION$6 } static get Default() { return Default$4 } static get NAME() { return NAME$6 } static get DATA_KEY() { return DATA_KEY$6 } static get Event() { return Event$6 } static get EVENT_KEY() { return EVENT_KEY$6 } static get DefaultType() { return DefaultType$4 } // Overrides isWithContent() { return this.getTitle() || this._getContent() } addAttachmentClass(attachment) { $(this.getTipElement()).addClass(`${CLASS_PREFIX$1}-${attachment}`); } getTipElement() { this.tip = this.tip || $(this.config.template)[0]; return this.tip } setContent() { const $tip = $(this.getTipElement()); // We use append for html objects to maintain js events this.setElementContent($tip.find(Selector$6.TITLE), this.getTitle()); let content = this._getContent(); if (typeof content === 'function') { content = content.call(this.element); } this.setElementContent($tip.find(Selector$6.CONTENT), content); $tip.removeClass(`${ClassName$6.FADE} ${ClassName$6.SHOW}`); } // Private _getContent() { return this.element.getAttribute('data-content') || this.config.content } _cleanTipClass() { const $tip = $(this.getTipElement()); const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX$1); if (tabClass !== null && tabClass.length > 0) { $tip.removeClass(tabClass.join('')); } } // Static static _jQueryInterface(config) { return this.each(function () { let data = $(this).data(DATA_KEY$6); const _config = typeof config === 'object' ? config : null; if (!data && /dispose|hide/.test(config)) { return } if (!data) { data = new Popover(this, _config); $(this).data(DATA_KEY$6, data); } if (typeof config === 'string') { if (typeof data[config] === 'undefined') { throw new TypeError(`No method named "${config}"`) } data[config](); } }) } } /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ */ $.fn[NAME$6] = Popover._jQueryInterface; $.fn[NAME$6].Constructor = Popover; $.fn[NAME$6].noConflict = () => { $.fn[NAME$6] = JQUERY_NO_CONFLICT$6; return Popover._jQueryInterface }; /** * -------------------------------------------------------------------------- * Bootstrap (v4.3.1): scrollspy.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- */ /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME$7 = 'scrollspy'; const VERSION$7 = '4.3.1'; const DATA_KEY$7 = 'bs.scrollspy'; const EVENT_KEY$7 = `.${DATA_KEY$7}`; const DATA_API_KEY$5 = '.data-api'; const JQUERY_NO_CONFLICT$7 = $.fn[NAME$7]; const Default$5 = { offset : 10, method : 'auto', target : '' }; const DefaultType$5 = { offset : 'number', method : 'string', target : '(string|element)' }; const Event$7 = { ACTIVATE : `activate${EVENT_KEY$7}`, SCROLL : `scroll${EVENT_KEY$7}`, LOAD_DATA_API : `load${EVENT_KEY$7}${DATA_API_KEY$5}` }; const ClassName$7 = { DROPDOWN_ITEM : 'dropdown-item', DROPDOWN_MENU : 'dropdown-menu', ACTIVE : 'active' }; const Selector$7 = { DATA_SPY : '[data-spy="scroll"]', ACTIVE : '.active', NAV_LIST_GROUP : '.nav, .list-group', NAV_LINKS : '.nav-link', NAV_ITEMS : '.nav-item', LIST_ITEMS : '.list-group-item', DROPDOWN : '.dropdown', DROPDOWN_ITEMS : '.dropdown-item', DROPDOWN_TOGGLE : '.dropdown-toggle' }; const OffsetMethod = { OFFSET : 'offset', POSITION : 'position' }; /** * ------------------------------------------------------------------------ * Class Definition * ------------------------------------------------------------------------ */ class ScrollSpy { constructor(element, config) { this._element = element; this._scrollElement = element.tagName === 'BODY' ? window : element; this._config = this._getConfig(config); this._selector = `${this._config.target} ${Selector$7.NAV_LINKS},` + `${this._config.target} ${Selector$7.LIST_ITEMS},` + `${this._config.target} ${Selector$7.DROPDOWN_ITEMS}`; this._offsets = []; this._targets = []; this._activeTarget = null; this._scrollHeight = 0; $(this._scrollElement).on(Event$7.SCROLL, (event) => this._process(event)); this.refresh(); this._process(); } // Getters static get VERSION() { return VERSION$7 } static get Default() { return Default$5 } // Public refresh() { const autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION; const offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method; const offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0; this._offsets = []; this._targets = []; this._scrollHeight = this._getScrollHeight(); const targets = [].slice.call(document.querySelectorAll(this._selector)); targets .map((element) => { let target; const targetSelector = Util.getSelectorFromElement(element); if (targetSelector) { target = document.querySelector(targetSelector); } if (target) { const targetBCR = target.getBoundingClientRect(); if (targetBCR.width || targetBCR.height) { // TODO (fat): remove sketch reliance on jQuery position/offset return [ $(target)[offsetMethod]().top + offsetBase, targetSelector ] } } return null }) .filter((item) => item) .sort((a, b) => a[0] - b[0]) .forEach((item) => { this._offsets.push(item[0]); this._targets.push(item[1]); }); } dispose() { $.removeData(this._element, DATA_KEY$7); $(this._scrollElement).off(EVENT_KEY$7); this._element = null; this._scrollElement = null; this._config = null; this._selector = null; this._offsets = null; this._targets = null; this._activeTarget = null; this._scrollHeight = null; } // Private _getConfig(config) { config = { ...Default$5, ...typeof config === 'object' && config ? config : {} }; if (typeof config.target !== 'string') { let id = $(config.target).attr('id'); if (!id) { id = Util.getUID(NAME$7); $(config.target).attr('id', id); } config.target = `#${id}`; } Util.typeCheckConfig(NAME$7, config, DefaultType$5); return config } _getScrollTop() { return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop } _getScrollHeight() { return this._scrollElement.scrollHeight || Math.max( document.body.scrollHeight, document.documentElement.scrollHeight ) } _getOffsetHeight() { return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height } _process() { const scrollTop = this._getScrollTop() + this._config.offset; const scrollHeight = this._getScrollHeight(); const maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight(); if (this._scrollHeight !== scrollHeight) { this.refresh(); } if (scrollTop >= maxScroll) { const target = this._targets[this._targets.length - 1]; if (this._activeTarget !== target) { this._activate(target); } return } if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) { this._activeTarget = null; this._clear(); return } const offsetLength = this._offsets.length; for (let i = offsetLength; i--;) { const isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]); if (isActiveTarget) { this._activate(this._targets[i]); } } } _activate(target) { this._activeTarget = target; this._clear(); const queries = this._selector .split(',') .map((selector) => `${selector}[data-target="${target}"],${selector}[href="${target}"]`); const $link = $([].slice.call(document.querySelectorAll(queries.join(',')))); if ($link.hasClass(ClassName$7.DROPDOWN_ITEM)) { $link.closest(Selector$7.DROPDOWN).find(Selector$7.DROPDOWN_TOGGLE).addClass(ClassName$7.ACTIVE); $link.addClass(ClassName$7.ACTIVE); } else { // Set triggered link as active $link.addClass(ClassName$7.ACTIVE); // Set triggered links parents as active // With both