0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/js/dist/collapse.js

312 lines
9.2 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
* Bootstrap collapse.js v5.2.0 (https://getbootstrap.com/)
2022-05-13 08:07:23 +02:00
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 20:50:01 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 07:41:12 +01:00
*/
2018-07-24 02:51:14 +02:00
(function (global, factory) {
2022-05-13 08:07:23 +02: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.Collapse = factory(global.Index, global.EventHandler, global.SelectorEngine, global.BaseComponent));
})(this, (function (index, EventHandler, SelectorEngine, BaseComponent) { 'use strict';
2018-07-24 02:51:14 +02:00
2021-10-05 17:50:18 +02:00
const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
2020-09-14 17:12:06 +02:00
2021-10-05 17:50:18 +02:00
const EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
const SelectorEngine__default = /*#__PURE__*/_interopDefaultLegacy(SelectorEngine);
const BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2021-08-04 17:41:51 +02:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v5.2.0): collapse.js
2021-03-23 17:26:54 +01:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2020-12-03 15:18:59 +01:00
/**
* Constants
*/
2021-03-23 17:26:54 +01:00
const NAME = 'collapse';
const DATA_KEY = 'bs.collapse';
const EVENT_KEY = `.${DATA_KEY}`;
const DATA_API_KEY = '.data-api';
const EVENT_SHOW = `show${EVENT_KEY}`;
const EVENT_SHOWN = `shown${EVENT_KEY}`;
const EVENT_HIDE = `hide${EVENT_KEY}`;
const EVENT_HIDDEN = `hidden${EVENT_KEY}`;
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;
const CLASS_NAME_SHOW = 'show';
const CLASS_NAME_COLLAPSE = 'collapse';
const CLASS_NAME_COLLAPSING = 'collapsing';
const CLASS_NAME_COLLAPSED = 'collapsed';
2021-10-05 17:50:18 +02:00
const CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`;
2021-08-04 17:41:51 +02:00
const CLASS_NAME_HORIZONTAL = 'collapse-horizontal';
2021-03-23 17:26:54 +01:00
const WIDTH = 'width';
const HEIGHT = 'height';
const SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing';
2021-03-23 17:26:54 +01:00
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="collapse"]';
2022-05-13 08:07:23 +02:00
const Default = {
parent: null,
toggle: true
2022-05-13 08:07:23 +02:00
};
const DefaultType = {
parent: '(null|element)',
toggle: 'boolean'
2022-05-13 08:07:23 +02:00
};
2019-10-08 08:39:10 +02:00
/**
2022-05-13 08:07:23 +02:00
* Class definition
2019-10-08 08:39:10 +02:00
*/
2018-11-13 07:41:12 +01:00
2021-10-05 17:50:18 +02:00
class Collapse extends BaseComponent__default.default {
2021-03-23 17:26:54 +01:00
constructor(element, config) {
2022-05-13 08:07:23 +02:00
super(element, config);
2021-03-23 17:26:54 +01:00
this._isTransitioning = false;
2021-08-04 17:41:51 +02:00
this._triggerArray = [];
2021-10-05 17:50:18 +02:00
const toggleList = SelectorEngine__default.default.find(SELECTOR_DATA_TOGGLE);
2020-12-03 15:18:59 +01:00
2022-05-13 08:07:23 +02:00
for (const elem of toggleList) {
const selector = index.getSelectorFromElement(elem);
const filterElement = SelectorEngine__default.default.find(selector).filter(foundElement => foundElement === this._element);
2017-05-16 09:59:44 +02:00
2019-03-01 17:31:34 +01:00
if (selector !== null && filterElement.length) {
2021-03-23 17:26:54 +01:00
this._triggerArray.push(elem);
2018-07-24 02:51:14 +02:00
}
2018-11-13 07:41:12 +01:00
}
2015-05-10 08:00:59 +02:00
2021-08-04 17:41:51 +02:00
this._initializeChildren();
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
if (!this._config.parent) {
2021-08-04 17:41:51 +02:00
this._addAriaAndCollapsedClass(this._triggerArray, this._isShown());
2018-11-13 07:41:12 +01:00
}
2015-08-13 06:12:03 +02:00
2021-03-23 17:26:54 +01:00
if (this._config.toggle) {
this.toggle();
2018-11-13 07:41:12 +01:00
}
} // Getters
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
static get Default() {
return Default;
}
2022-05-13 08:07:23 +02:00
static get DefaultType() {
return DefaultType;
}
static get NAME() {
return NAME;
2021-03-23 17:26:54 +01:00
} // Public
2016-10-10 02:26:51 +02:00
2021-03-23 17:26:54 +01:00
toggle() {
2021-08-04 17:41:51 +02:00
if (this._isShown()) {
2018-11-13 07:41:12 +01:00
this.hide();
} else {
this.show();
}
2021-03-23 17:26:54 +01:00
}
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
show() {
2021-08-04 17:41:51 +02:00
if (this._isTransitioning || this._isShown()) {
2018-11-13 07:41:12 +01:00
return;
}
2018-09-17 21:34:34 +02:00
2022-05-13 08:07:23 +02:00
let activeChildren = []; // find active children
2015-05-10 08:00:59 +02:00
2021-08-04 17:41:51 +02:00
if (this._config.parent) {
2022-05-13 08:07:23 +02:00
activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES).filter(element => element !== this._element).map(element => Collapse.getOrCreateInstance(element, {
toggle: false
}));
2018-11-13 07:41:12 +01:00
}
2015-05-10 08:00:59 +02:00
2022-05-13 08:07:23 +02:00
if (activeChildren.length && activeChildren[0]._isTransitioning) {
return;
2018-11-13 07:41:12 +01:00
}
2015-05-10 08:00:59 +02:00
2021-10-05 17:50:18 +02:00
const startEvent = EventHandler__default.default.trigger(this._element, EVENT_SHOW);
2015-05-10 08:00:59 +02:00
2019-03-01 17:31:34 +01:00
if (startEvent.defaultPrevented) {
2018-11-13 07:41:12 +01:00
return;
}
2015-05-10 08:00:59 +02:00
2022-05-13 08:07:23 +02:00
for (const activeInstance of activeChildren) {
activeInstance.hide();
}
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
const dimension = this._getDimension();
2018-11-13 07:41:12 +01:00
2020-03-28 11:29:08 +01:00
this._element.classList.remove(CLASS_NAME_COLLAPSE);
2019-03-01 17:31:34 +01:00
2020-03-28 11:29:08 +01:00
this._element.classList.add(CLASS_NAME_COLLAPSING);
2019-03-01 17:31:34 +01:00
2018-11-13 07:41:12 +01:00
this._element.style[dimension] = 0;
2021-08-04 17:41:51 +02:00
this._addAriaAndCollapsedClass(this._triggerArray, true);
2015-05-10 08:00:59 +02:00
2021-08-04 17:41:51 +02:00
this._isTransitioning = true;
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
const complete = () => {
2021-08-04 17:41:51 +02:00
this._isTransitioning = false;
2021-03-23 17:26:54 +01:00
this._element.classList.remove(CLASS_NAME_COLLAPSING);
2019-03-01 17:31:34 +01:00
2021-03-23 17:26:54 +01:00
this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
this._element.style[dimension] = '';
2021-10-05 17:50:18 +02:00
EventHandler__default.default.trigger(this._element, EVENT_SHOWN);
2018-07-24 02:51:14 +02:00
};
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
const scrollSize = `scroll${capitalizedDimension}`;
this._queueCallback(complete, this._element, true);
2021-03-23 17:26:54 +01:00
this._element.style[dimension] = `${this._element[scrollSize]}px`;
}
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
hide() {
2021-08-04 17:41:51 +02:00
if (this._isTransitioning || !this._isShown()) {
2018-11-13 07:41:12 +01:00
return;
}
2015-05-10 08:00:59 +02:00
2021-10-05 17:50:18 +02:00
const startEvent = EventHandler__default.default.trigger(this._element, EVENT_HIDE);
2015-05-10 08:00:59 +02:00
2019-03-01 17:31:34 +01:00
if (startEvent.defaultPrevented) {
2018-11-13 07:41:12 +01:00
return;
}
2021-03-23 17:26:54 +01:00
const dimension = this._getDimension();
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`;
2022-05-13 08:07:23 +02:00
index.reflow(this._element);
2019-03-01 17:31:34 +01:00
2020-03-28 11:29:08 +01:00
this._element.classList.add(CLASS_NAME_COLLAPSING);
2019-03-01 17:31:34 +01:00
2020-05-13 20:53:43 +02:00
this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);
2019-03-01 17:31:34 +01:00
2022-05-13 08:07:23 +02:00
for (const trigger of this._triggerArray) {
const element = index.getElementFromSelector(trigger);
2015-05-10 08:00:59 +02:00
2022-05-13 08:07:23 +02:00
if (element && !this._isShown(element)) {
2021-08-04 17:41:51 +02:00
this._addAriaAndCollapsedClass([trigger], false);
2017-09-06 06:05:12 +02:00
}
2018-11-13 07:41:12 +01:00
}
2015-05-10 08:00:59 +02:00
2021-08-04 17:41:51 +02:00
this._isTransitioning = true;
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
const complete = () => {
2021-08-04 17:41:51 +02:00
this._isTransitioning = false;
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
this._element.classList.remove(CLASS_NAME_COLLAPSING);
2019-03-01 17:31:34 +01:00
2021-03-23 17:26:54 +01:00
this._element.classList.add(CLASS_NAME_COLLAPSE);
2019-03-01 17:31:34 +01:00
2021-10-05 17:50:18 +02:00
EventHandler__default.default.trigger(this._element, EVENT_HIDDEN);
2018-07-24 02:51:14 +02:00
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
this._element.style[dimension] = '';
this._queueCallback(complete, this._element, true);
2021-03-23 17:26:54 +01:00
}
2016-10-10 02:26:51 +02:00
2021-08-04 17:41:51 +02:00
_isShown(element = this._element) {
return element.classList.contains(CLASS_NAME_SHOW);
2019-01-04 17:29:45 +01:00
} // Private
2016-10-10 02:26:51 +02:00
2021-03-23 17:26:54 +01:00
2022-05-13 08:07:23 +02:00
_configAfterMerge(config) {
2018-11-13 07:41:12 +01:00
config.toggle = Boolean(config.toggle); // Coerce string values
2017-09-30 23:28:03 +02:00
2022-05-13 08:07:23 +02:00
config.parent = index.getElement(config.parent);
2018-11-13 07:41:12 +01:00
return config;
2021-03-23 17:26:54 +01:00
}
2017-09-30 23:28:03 +02:00
2021-03-23 17:26:54 +01:00
_getDimension() {
2021-08-04 17:41:51 +02:00
return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT;
2021-03-23 17:26:54 +01:00
}
2017-09-30 23:28:03 +02:00
2021-08-04 17:41:51 +02:00
_initializeChildren() {
if (!this._config.parent) {
return;
}
2022-05-13 08:07:23 +02:00
const children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE);
for (const element of children) {
const selected = index.getElementFromSelector(element);
2021-08-04 17:41:51 +02:00
if (selected) {
this._addAriaAndCollapsedClass([element], this._isShown(selected));
}
2022-05-13 08:07:23 +02:00
}
}
_getFirstLevelChildren(selector) {
const children = SelectorEngine__default.default.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent); // remove children if greater depth
return SelectorEngine__default.default.find(selector, this._config.parent).filter(element => !children.includes(element));
2021-03-23 17:26:54 +01:00
}
2015-05-10 08:00:59 +02:00
2021-08-04 17:41:51 +02:00
_addAriaAndCollapsedClass(triggerArray, isOpen) {
if (!triggerArray.length) {
2020-09-14 17:12:06 +02:00
return;
2018-11-13 07:41:12 +01:00
}
2020-09-14 17:12:06 +02:00
2022-05-13 08:07:23 +02:00
for (const element of triggerArray) {
element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen);
element.setAttribute('aria-expanded', isOpen);
}
2019-01-04 17:29:45 +01:00
} // Static
2017-09-30 23:28:03 +02:00
2021-08-04 17:41:51 +02:00
static jQueryInterface(config) {
2022-05-13 08:07:23 +02:00
const _config = {};
2018-07-24 02:51:14 +02:00
2022-05-13 08:07:23 +02:00
if (typeof config === 'string' && /show|hide/.test(config)) {
_config.toggle = false;
}
2017-09-30 23:28:03 +02:00
2022-05-13 08:07:23 +02:00
return this.each(function () {
2021-08-04 17:41:51 +02:00
const data = Collapse.getOrCreateInstance(this, _config);
2017-09-30 23:28:03 +02:00
2021-08-04 17:41:51 +02:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError(`No method named "${config}"`);
}
data[config]();
}
2018-11-13 07:41:12 +01:00
});
2021-03-23 17:26:54 +01:00
}
2015-05-10 08:00:59 +02:00
2021-03-23 17:26:54 +01:00
}
2018-11-13 07:41:12 +01:00
/**
2022-05-13 08:07:23 +02:00
* Data API implementation
2018-11-13 07:41:12 +01:00
*/
2017-09-30 23:28:03 +02:00
2015-05-10 08:00:59 +02:00
2021-10-05 17:50:18 +02:00
EventHandler__default.default.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
2018-11-13 07:41:12 +01:00
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
if (event.target.tagName === 'A' || event.delegateTarget && event.delegateTarget.tagName === 'A') {
2018-11-13 07:41:12 +01:00
event.preventDefault();
}
2017-09-30 23:28:03 +02:00
2022-05-13 08:07:23 +02:00
const selector = index.getSelectorFromElement(this);
2021-10-05 17:50:18 +02:00
const selectorElements = SelectorEngine__default.default.find(selector);
2022-05-13 08:07:23 +02:00
for (const element of selectorElements) {
2021-08-04 17:41:51 +02:00
Collapse.getOrCreateInstance(element, {
toggle: false
}).toggle();
2022-05-13 08:07:23 +02:00
}
2018-11-13 07:41:12 +01:00
});
/**
* jQuery
*/
2015-05-10 08:00:59 +02:00
2022-05-13 08:07:23 +02:00
index.defineJQueryPlugin(Collapse);
2015-05-10 08:00:59 +02:00
return Collapse;
2018-07-24 02:51:14 +02:00
2021-10-05 17:50:18 +02:00
}));
2018-07-24 02:51:14 +02:00
//# sourceMappingURL=collapse.js.map