prolab-api/vendor/bower-asset/bootstrap/js/dist/scrollspy.js

313 lines
10 KiB
JavaScript
Raw Normal View History

2025-09-24 06:24:52 +00:00
/*!
2025-10-03 11:00:05 +00:00
* Bootstrap scrollspy.js v5.2.3 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2025-09-24 06:24:52 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
(function (global, factory) {
2025-10-03 11:00:05 +00:00
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./util/index'), require('./dom/event-handler'), require('./dom/selector-engine'), require('./base-component')) :
typeof define === 'function' && define.amd ? define(['./util/index', './dom/event-handler', './dom/selector-engine', './base-component'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Scrollspy = factory(global.Index, global.EventHandler, global.SelectorEngine, global.BaseComponent));
})(this, (function (index, EventHandler, SelectorEngine, BaseComponent) { 'use strict';
const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
const EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
const SelectorEngine__default = /*#__PURE__*/_interopDefaultLegacy(SelectorEngine);
const BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2025-09-24 06:24:52 +00:00
/**
* --------------------------------------------------------------------------
2025-10-03 11:00:05 +00:00
* Bootstrap (v5.2.3): scrollspy.js
2025-09-24 06:24:52 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
/**
* Constants
*/
const NAME = 'scrollspy';
const DATA_KEY = 'bs.scrollspy';
const EVENT_KEY = `.${DATA_KEY}`;
const DATA_API_KEY = '.data-api';
const EVENT_ACTIVATE = `activate${EVENT_KEY}`;
const EVENT_CLICK = `click${EVENT_KEY}`;
const EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`;
const CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item';
const CLASS_NAME_ACTIVE = 'active';
const SELECTOR_DATA_SPY = '[data-bs-spy="scroll"]';
const SELECTOR_TARGET_LINKS = '[href]';
const SELECTOR_NAV_LIST_GROUP = '.nav, .list-group';
const SELECTOR_NAV_LINKS = '.nav-link';
const SELECTOR_NAV_ITEMS = '.nav-item';
const SELECTOR_LIST_ITEMS = '.list-group-item';
const SELECTOR_LINK_ITEMS = `${SELECTOR_NAV_LINKS}, ${SELECTOR_NAV_ITEMS} > ${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}`;
const SELECTOR_DROPDOWN = '.dropdown';
const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
const Default = {
offset: null,
// TODO: v6 @deprecated, keep it for backwards compatibility reasons
rootMargin: '0px 0px -25%',
smoothScroll: false,
target: null,
threshold: [0.1, 0.5, 1]
};
const DefaultType = {
offset: '(number|null)',
// TODO v6 @deprecated, keep it for backwards compatibility reasons
rootMargin: 'string',
smoothScroll: 'boolean',
target: 'element',
threshold: 'array'
};
/**
* Class definition
*/
2025-10-03 11:00:05 +00:00
class ScrollSpy extends BaseComponent__default.default {
2025-09-24 06:24:52 +00:00
constructor(element, config) {
2025-10-03 11:00:05 +00:00
super(element, config); // this._element is the observablesContainer and config.target the menu links wrapper
2025-09-24 06:24:52 +00:00
this._targetLinks = new Map();
this._observableSections = new Map();
this._rootElement = getComputedStyle(this._element).overflowY === 'visible' ? null : this._element;
this._activeTarget = null;
this._observer = null;
this._previousScrollData = {
visibleEntryTop: 0,
parentScrollTop: 0
};
this.refresh(); // initialize
2025-10-03 11:00:05 +00:00
} // Getters
2025-09-24 06:24:52 +00:00
static get Default() {
return Default;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
static get DefaultType() {
return DefaultType;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
static get NAME() {
return NAME;
2025-10-03 11:00:05 +00:00
} // Public
2025-09-24 06:24:52 +00:00
refresh() {
this._initializeTargetsAndObservables();
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._maybeEnableSmoothScroll();
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (this._observer) {
this._observer.disconnect();
} else {
this._observer = this._getNewObserver();
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
for (const section of this._observableSections.values()) {
this._observer.observe(section);
}
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
dispose() {
this._observer.disconnect();
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
super.dispose();
2025-10-03 11:00:05 +00:00
} // Private
2025-09-24 06:24:52 +00:00
_configAfterMerge(config) {
// TODO: on v6 target should be given explicitly & remove the {target: 'ss-target'} case
2025-10-03 11:00:05 +00:00
config.target = index.getElement(config.target) || document.body; // TODO: v6 Only for backwards compatibility reasons. Use rootMargin only
2025-09-24 06:24:52 +00:00
config.rootMargin = config.offset ? `${config.offset}px 0px -30%` : config.rootMargin;
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (typeof config.threshold === 'string') {
config.threshold = config.threshold.split(',').map(value => Number.parseFloat(value));
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
return config;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_maybeEnableSmoothScroll() {
if (!this._config.smoothScroll) {
return;
2025-10-03 11:00:05 +00:00
} // unregister any previous listeners
2025-09-24 06:24:52 +00:00
2025-10-03 11:00:05 +00:00
EventHandler__default.default.off(this._config.target, EVENT_CLICK);
EventHandler__default.default.on(this._config.target, EVENT_CLICK, SELECTOR_TARGET_LINKS, event => {
2025-09-24 06:24:52 +00:00
const observableSection = this._observableSections.get(event.target.hash);
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (observableSection) {
event.preventDefault();
const root = this._rootElement || window;
const height = observableSection.offsetTop - this._element.offsetTop;
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (root.scrollTo) {
root.scrollTo({
top: height,
behavior: 'smooth'
});
return;
2025-10-03 11:00:05 +00:00
} // Chrome 60 doesn't support `scrollTo`
2025-09-24 06:24:52 +00:00
root.scrollTop = height;
}
});
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_getNewObserver() {
const options = {
root: this._rootElement,
threshold: this._config.threshold,
rootMargin: this._config.rootMargin
};
return new IntersectionObserver(entries => this._observerCallback(entries), options);
2025-10-03 11:00:05 +00:00
} // The logic of selection
2025-09-24 06:24:52 +00:00
_observerCallback(entries) {
const targetElement = entry => this._targetLinks.get(`#${entry.target.id}`);
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
const activate = entry => {
this._previousScrollData.visibleEntryTop = entry.target.offsetTop;
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._process(targetElement(entry));
};
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
const parentScrollTop = (this._rootElement || document.documentElement).scrollTop;
const userScrollsDown = parentScrollTop >= this._previousScrollData.parentScrollTop;
this._previousScrollData.parentScrollTop = parentScrollTop;
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
for (const entry of entries) {
if (!entry.isIntersecting) {
this._activeTarget = null;
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._clearActiveClass(targetElement(entry));
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
continue;
}
2025-10-03 11:00:05 +00:00
const entryIsLowerThanPrevious = entry.target.offsetTop >= this._previousScrollData.visibleEntryTop; // if we are scrolling down, pick the bigger offsetTop
2025-09-24 06:24:52 +00:00
if (userScrollsDown && entryIsLowerThanPrevious) {
2025-10-03 11:00:05 +00:00
activate(entry); // if parent isn't scrolled, let's keep the first visible item, breaking the iteration
2025-09-24 06:24:52 +00:00
if (!parentScrollTop) {
return;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
continue;
2025-10-03 11:00:05 +00:00
} // if we are scrolling up, pick the smallest offsetTop
2025-09-24 06:24:52 +00:00
if (!userScrollsDown && !entryIsLowerThanPrevious) {
activate(entry);
}
}
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_initializeTargetsAndObservables() {
this._targetLinks = new Map();
this._observableSections = new Map();
2025-10-03 11:00:05 +00:00
const targetLinks = SelectorEngine__default.default.find(SELECTOR_TARGET_LINKS, this._config.target);
2025-09-24 06:24:52 +00:00
for (const anchor of targetLinks) {
// ensure that the anchor has an id and is not disabled
2025-10-03 11:00:05 +00:00
if (!anchor.hash || index.isDisabled(anchor)) {
2025-09-24 06:24:52 +00:00
continue;
}
2025-10-03 11:00:05 +00:00
const observableSection = SelectorEngine__default.default.findOne(anchor.hash, this._element); // ensure that the observableSection exists & is visible
if (index.isVisible(observableSection)) {
this._targetLinks.set(anchor.hash, anchor);
2025-09-24 06:24:52 +00:00
this._observableSections.set(anchor.hash, observableSection);
}
}
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_process(target) {
if (this._activeTarget === target) {
return;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._clearActiveClass(this._config.target);
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._activeTarget = target;
target.classList.add(CLASS_NAME_ACTIVE);
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
this._activateParents(target);
2025-10-03 11:00:05 +00:00
EventHandler__default.default.trigger(this._element, EVENT_ACTIVATE, {
2025-09-24 06:24:52 +00:00
relatedTarget: target
});
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_activateParents(target) {
// Activate dropdown parents
if (target.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) {
2025-10-03 11:00:05 +00:00
SelectorEngine__default.default.findOne(SELECTOR_DROPDOWN_TOGGLE, target.closest(SELECTOR_DROPDOWN)).classList.add(CLASS_NAME_ACTIVE);
2025-09-24 06:24:52 +00:00
return;
}
2025-10-03 11:00:05 +00:00
for (const listGroup of SelectorEngine__default.default.parents(target, SELECTOR_NAV_LIST_GROUP)) {
2025-09-24 06:24:52 +00:00
// Set triggered links parents as active
// With both <ul> and <nav> markup a parent is the previous sibling of any nav ancestor
2025-10-03 11:00:05 +00:00
for (const item of SelectorEngine__default.default.prev(listGroup, SELECTOR_LINK_ITEMS)) {
2025-09-24 06:24:52 +00:00
item.classList.add(CLASS_NAME_ACTIVE);
}
}
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
_clearActiveClass(parent) {
parent.classList.remove(CLASS_NAME_ACTIVE);
2025-10-03 11:00:05 +00:00
const activeNodes = SelectorEngine__default.default.find(`${SELECTOR_TARGET_LINKS}.${CLASS_NAME_ACTIVE}`, parent);
2025-09-24 06:24:52 +00:00
for (const node of activeNodes) {
node.classList.remove(CLASS_NAME_ACTIVE);
}
2025-10-03 11:00:05 +00:00
} // Static
2025-09-24 06:24:52 +00:00
static jQueryInterface(config) {
return this.each(function () {
const data = ScrollSpy.getOrCreateInstance(this, config);
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (typeof config !== 'string') {
return;
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
throw new TypeError(`No method named "${config}"`);
}
2025-10-03 11:00:05 +00:00
2025-09-24 06:24:52 +00:00
data[config]();
});
}
2025-10-03 11:00:05 +00:00
}
2025-09-24 06:24:52 +00:00
/**
* Data API implementation
*/
2025-10-03 11:00:05 +00:00
EventHandler__default.default.on(window, EVENT_LOAD_DATA_API, () => {
for (const spy of SelectorEngine__default.default.find(SELECTOR_DATA_SPY)) {
2025-09-24 06:24:52 +00:00
ScrollSpy.getOrCreateInstance(spy);
}
});
/**
* jQuery
*/
2025-10-03 11:00:05 +00:00
index.defineJQueryPlugin(ScrollSpy);
2025-09-24 06:24:52 +00:00
return ScrollSpy;
}));
//# sourceMappingURL=scrollspy.js.map