twbs--bootstrap/js/dist/collapse.js

375 lines
12 KiB
JavaScript
Raw Normal View History

2018-03-31 16:59:37 -04:00
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2017-12-22 19:21:54 -05:00
2017-09-30 17:28:03 -04:00
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
2017-09-06 00:05:12 -04:00
2017-09-30 17:28:03 -04:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2015-05-10 02:00:59 -04:00
/**
* --------------------------------------------------------------------------
2018-07-12 03:04:51 -04:00
* Bootstrap (v4.1.2): collapse.js
2015-05-10 02:00:59 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 15:31:55 -04:00
var Collapse = function ($) {
2015-05-10 02:00:59 -04:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'collapse';
2018-07-12 03:04:51 -04:00
var VERSION = '4.1.2';
2015-05-10 02:00:59 -04:00
var DATA_KEY = 'bs.collapse';
2017-09-30 17:28:03 -04:00
var EVENT_KEY = "." + DATA_KEY;
2015-05-13 15:48:34 -04:00
var DATA_API_KEY = '.data-api';
2015-05-10 02:00:59 -04:00
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Default = {
2015-05-10 02:00:59 -04:00
toggle: true,
parent: ''
2015-05-10 02:00:59 -04:00
};
2015-05-13 17:46:50 -04:00
var DefaultType = {
toggle: 'boolean',
2017-09-30 17:28:03 -04:00
parent: '(string|element)'
2015-05-13 17:46:50 -04:00
};
2015-05-10 02:00:59 -04:00
var Event = {
2017-09-30 17:28:03 -04:00
SHOW: "show" + EVENT_KEY,
SHOWN: "shown" + EVENT_KEY,
HIDE: "hide" + EVENT_KEY,
HIDDEN: "hidden" + EVENT_KEY,
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
2015-05-10 02:00:59 -04:00
};
var ClassName = {
2016-12-20 00:48:24 -05:00
SHOW: 'show',
2015-05-10 02:00:59 -04:00
COLLAPSE: 'collapse',
COLLAPSING: 'collapsing',
COLLAPSED: 'collapsed'
};
var Dimension = {
WIDTH: 'width',
HEIGHT: 'height'
};
var Selector = {
2017-05-16 03:59:44 -04:00
ACTIVES: '.show, .collapsing',
DATA_TOGGLE: '[data-toggle="collapse"]'
2017-09-13 01:24:15 -04:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-10 02:00:59 -04:00
2017-09-13 01:24:15 -04:00
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var Collapse =
/*#__PURE__*/
function () {
function Collapse(element, config) {
2015-05-10 02:00:59 -04:00
this._isTransitioning = false;
this._element = element;
2015-05-13 17:46:50 -04:00
this._config = this._getConfig(config);
2018-06-22 01:55:23 -04:00
this._triggerArray = $.makeArray(document.querySelectorAll("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]")));
var toggleList = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE));
2017-09-30 17:28:03 -04:00
2018-06-22 01:55:23 -04:00
for (var i = 0, len = toggleList.length; i < len; i++) {
var elem = toggleList[i];
2017-06-14 23:44:32 -04:00
var selector = Util.getSelectorFromElement(elem);
2018-06-22 01:55:23 -04:00
var filterElement = [].slice.call(document.querySelectorAll(selector)).filter(function (foundElem) {
return foundElem === element;
});
2017-09-30 17:28:03 -04:00
2018-06-22 01:55:23 -04:00
if (selector !== null && filterElement.length > 0) {
2018-01-03 19:03:22 -05:00
this._selector = selector;
2017-06-14 23:44:32 -04:00
this._triggerArray.push(elem);
}
}
2017-05-16 03:59:44 -04:00
2015-05-10 02:00:59 -04:00
this._parent = this._config.parent ? this._getParent() : null;
if (!this._config.parent) {
this._addAriaAndCollapsedClass(this._element, this._triggerArray);
}
if (this._config.toggle) {
this.toggle();
}
2018-01-12 01:42:40 -05:00
} // Getters
2015-05-10 02:00:59 -04:00
2015-08-13 00:12:03 -04:00
2017-09-30 17:28:03 -04:00
var _proto = Collapse.prototype;
2015-05-10 02:00:59 -04:00
2018-01-12 01:42:40 -05:00
// Public
2017-09-30 17:28:03 -04:00
_proto.toggle = function toggle() {
if ($(this._element).hasClass(ClassName.SHOW)) {
this.hide();
} else {
this.show();
}
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
_proto.show = function show() {
var _this = this;
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (this._isTransitioning || $(this._element).hasClass(ClassName.SHOW)) {
return;
2015-05-10 02:00:59 -04:00
}
2017-09-30 17:28:03 -04:00
var actives;
var activesData;
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (this._parent) {
2018-06-22 01:55:23 -04:00
actives = [].slice.call(this._parent.querySelectorAll(Selector.ACTIVES)).filter(function (elem) {
return elem.getAttribute('data-parent') === _this._config.parent;
});
2015-05-10 02:00:59 -04:00
2018-01-12 01:42:40 -05:00
if (actives.length === 0) {
2017-09-30 17:28:03 -04:00
actives = null;
2015-05-10 02:00:59 -04:00
}
2017-09-30 17:28:03 -04:00
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (actives) {
2018-01-03 19:03:22 -05:00
activesData = $(actives).not(this._selector).data(DATA_KEY);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (activesData && activesData._isTransitioning) {
2017-09-06 00:05:12 -04:00
return;
}
2017-09-30 17:28:03 -04:00
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var startEvent = $.Event(Event.SHOW);
$(this._element).trigger(startEvent);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (startEvent.isDefaultPrevented()) {
return;
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (actives) {
2018-01-03 19:03:22 -05:00
Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide');
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (!activesData) {
$(actives).data(DATA_KEY, null);
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
}
var dimension = this._getDimension();
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
$(this._element).removeClass(ClassName.COLLAPSE).addClass(ClassName.COLLAPSING);
this._element.style[dimension] = 0;
2015-05-10 02:00:59 -04:00
2018-06-22 01:55:23 -04:00
if (this._triggerArray.length) {
2017-09-30 17:28:03 -04:00
$(this._triggerArray).removeClass(ClassName.COLLAPSED).attr('aria-expanded', true);
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
this.setTransitioning(true);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var complete = function complete() {
$(_this._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).addClass(ClassName.SHOW);
_this._element.style[dimension] = '';
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
_this.setTransitioning(false);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
$(_this._element).trigger(Event.SHOWN);
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
var scrollSize = "scroll" + capitalizedDimension;
2018-03-31 16:59:37 -04:00
var transitionDuration = Util.getTransitionDurationFromElement(this._element);
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
2017-09-30 17:28:03 -04:00
this._element.style[dimension] = this._element[scrollSize] + "px";
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
_proto.hide = function hide() {
var _this2 = this;
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (this._isTransitioning || !$(this._element).hasClass(ClassName.SHOW)) {
return;
2015-05-10 02:00:59 -04:00
}
2017-09-30 17:28:03 -04:00
var startEvent = $.Event(Event.HIDE);
$(this._element).trigger(startEvent);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (startEvent.isDefaultPrevented()) {
return;
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var dimension = this._getDimension();
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px";
Util.reflow(this._element);
$(this._element).addClass(ClassName.COLLAPSING).removeClass(ClassName.COLLAPSE).removeClass(ClassName.SHOW);
2018-06-22 01:55:23 -04:00
var triggerArrayLength = this._triggerArray.length;
2015-05-10 02:00:59 -04:00
2018-06-22 01:55:23 -04:00
if (triggerArrayLength > 0) {
for (var i = 0; i < triggerArrayLength; i++) {
2017-09-30 17:28:03 -04:00
var trigger = this._triggerArray[i];
var selector = Util.getSelectorFromElement(trigger);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (selector !== null) {
2018-06-22 01:55:23 -04:00
var $elem = $([].slice.call(document.querySelectorAll(selector)));
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
if (!$elem.hasClass(ClassName.SHOW)) {
$(trigger).addClass(ClassName.COLLAPSED).attr('aria-expanded', false);
2017-09-06 00:05:12 -04:00
}
}
}
2017-09-30 17:28:03 -04:00
}
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
this.setTransitioning(true);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
var complete = function complete() {
_this2.setTransitioning(false);
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
$(_this2._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).trigger(Event.HIDDEN);
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
this._element.style[dimension] = '';
2018-03-31 16:59:37 -04:00
var transitionDuration = Util.getTransitionDurationFromElement(this._element);
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
2017-09-30 17:28:03 -04:00
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto.setTransitioning = function setTransitioning(isTransitioning) {
this._isTransitioning = isTransitioning;
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._config = null;
this._parent = null;
this._element = null;
this._triggerArray = null;
this._isTransitioning = null;
2018-01-12 01:42:40 -05:00
}; // Private
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._getConfig = function _getConfig(config) {
2018-03-31 16:59:37 -04:00
config = _objectSpread({}, Default, config);
2018-01-12 01:42:40 -05:00
config.toggle = Boolean(config.toggle); // Coerce string values
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
_proto._getDimension = function _getDimension() {
var hasWidth = $(this._element).hasClass(Dimension.WIDTH);
return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT;
};
_proto._getParent = function _getParent() {
var _this3 = this;
var parent = null;
if (Util.isElement(this._config.parent)) {
2018-01-12 01:42:40 -05:00
parent = this._config.parent; // It's a jQuery object
2017-09-30 17:28:03 -04:00
if (typeof this._config.parent.jquery !== 'undefined') {
parent = this._config.parent[0];
2015-05-10 02:00:59 -04:00
}
2017-09-30 17:28:03 -04:00
} else {
2018-06-22 01:55:23 -04:00
parent = document.querySelector(this._config.parent);
2015-05-10 02:00:59 -04:00
}
2017-09-30 17:28:03 -04:00
var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]";
2018-06-22 01:55:23 -04:00
var children = [].slice.call(parent.querySelectorAll(selector));
$(children).each(function (i, element) {
2017-09-30 17:28:03 -04:00
_this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]);
});
return parent;
};
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
_proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) {
if (element) {
var isOpen = $(element).hasClass(ClassName.SHOW);
2018-06-22 01:55:23 -04:00
if (triggerArray.length) {
2017-09-30 17:28:03 -04:00
$(triggerArray).toggleClass(ClassName.COLLAPSED, !isOpen).attr('aria-expanded', isOpen);
}
2017-09-06 00:05:12 -04:00
}
2018-01-12 01:42:40 -05:00
}; // Static
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
Collapse._getTargetFromElement = function _getTargetFromElement(element) {
var selector = Util.getSelectorFromElement(element);
2018-06-22 01:55:23 -04:00
return selector ? document.querySelector(selector) : null;
2017-09-30 17:28:03 -04:00
};
Collapse._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $this = $(this);
var data = $this.data(DATA_KEY);
2018-04-30 01:22:04 -04:00
var _config = _objectSpread({}, Default, $this.data(), typeof config === 'object' && config ? config : {});
2017-09-30 17:28:03 -04:00
if (!data && _config.toggle && /show|hide/.test(config)) {
_config.toggle = false;
}
if (!data) {
data = new Collapse(this, _config);
$this.data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2018-01-12 01:42:40 -05:00
throw new TypeError("No method named \"" + config + "\"");
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
data[config]();
}
});
};
_createClass(Collapse, null, [{
key: "VERSION",
2015-08-13 00:12:03 -04:00
get: function get() {
return VERSION;
}
}, {
2017-09-30 17:28:03 -04:00
key: "Default",
2015-08-13 00:12:03 -04:00
get: function get() {
return Default;
}
2015-05-10 02:00:59 -04:00
}]);
return Collapse;
2016-10-09 20:26:51 -04:00
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-10 02:00:59 -04:00
2017-09-30 17:28:03 -04:00
2015-05-13 15:48:34 -04:00
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
2017-09-06 00:05:12 -04:00
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
2017-09-13 01:24:15 -04:00
if (event.currentTarget.tagName === 'A') {
2017-03-28 01:56:14 -04:00
event.preventDefault();
}
2015-05-10 02:00:59 -04:00
2017-06-14 23:44:32 -04:00
var $trigger = $(this);
var selector = Util.getSelectorFromElement(this);
2018-06-22 01:55:23 -04:00
var selectors = [].slice.call(document.querySelectorAll(selector));
$(selectors).each(function () {
2017-06-14 23:44:32 -04:00
var $target = $(this);
var data = $target.data(DATA_KEY);
var config = data ? 'toggle' : $trigger.data();
2017-09-30 17:28:03 -04:00
2017-06-14 23:44:32 -04:00
Collapse._jQueryInterface.call($target, config);
});
2017-07-02 13:40:27 -04:00
});
2015-05-10 02:00:59 -04:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-07-02 13:40:27 -04:00
$.fn[NAME] = Collapse._jQueryInterface;
2015-05-10 02:00:59 -04:00
$.fn[NAME].Constructor = Collapse;
2017-09-30 17:28:03 -04:00
2015-05-10 02:00:59 -04:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Collapse._jQueryInterface;
};
return Collapse;
2017-10-15 18:51:44 -04:00
}($);
2017-04-22 02:58:09 -04:00
//# sourceMappingURL=collapse.js.map