twbs--bootstrap/js/dist/tab.js

267 lines
7.9 KiB
JavaScript
Raw Normal View History

2018-11-13 06:41:12 +00:00
/*!
2018-12-21 18:55:28 +00:00
* Bootstrap tab.js v4.2.1 (https://getbootstrap.com/)
2018-11-13 06:41:12 +00:00
* Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
2018-07-24 00:51:14 +00:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery'), require('./util.js')) :
typeof define === 'function' && define.amd ? define(['jquery', './util.js'], factory) :
(global.Tab = factory(global.jQuery,global.Util));
}(this, (function ($,Util) { 'use strict';
$ = $ && $.hasOwnProperty('default') ? $['default'] : $;
Util = Util && Util.hasOwnProperty('default') ? Util['default'] : Util;
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);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tab';
2018-12-21 18:55:28 +00:00
var VERSION = '4.2.1';
2018-11-13 06:41:12 +00:00
var DATA_KEY = 'bs.tab';
var EVENT_KEY = "." + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Event = {
HIDE: "hide" + EVENT_KEY,
HIDDEN: "hidden" + EVENT_KEY,
SHOW: "show" + EVENT_KEY,
SHOWN: "shown" + EVENT_KEY,
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
DROPDOWN_MENU: 'dropdown-menu',
ACTIVE: 'active',
DISABLED: 'disabled',
FADE: 'fade',
SHOW: 'show'
};
var Selector = {
DROPDOWN: '.dropdown',
NAV_LIST_GROUP: '.nav, .list-group',
ACTIVE: '.active',
ACTIVE_UL: '> li > .active',
DATA_TOGGLE: '[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',
DROPDOWN_TOGGLE: '.dropdown-toggle',
DROPDOWN_ACTIVE_CHILD: '> .dropdown-menu .active'
2017-09-13 05:24:15 +00:00
/**
* ------------------------------------------------------------------------
2018-11-13 06:41:12 +00:00
* Class Definition
2017-09-13 05:24:15 +00:00
* ------------------------------------------------------------------------
*/
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
};
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
var Tab =
/*#__PURE__*/
function () {
function Tab(element) {
this._element = element;
} // Getters
2015-08-13 04:12:03 +00:00
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
var _proto = Tab.prototype;
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
// Public
_proto.show = function show() {
var _this = this;
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $(this._element).hasClass(ClassName.ACTIVE) || $(this._element).hasClass(ClassName.DISABLED)) {
return;
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
var target;
var previous;
var listElement = $(this._element).closest(Selector.NAV_LIST_GROUP)[0];
var selector = Util.getSelectorFromElement(this._element);
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (listElement) {
2018-11-24 16:22:59 +00:00
var itemSelector = listElement.nodeName === 'UL' || listElement.nodeName === 'OL' ? Selector.ACTIVE_UL : Selector.ACTIVE;
2018-11-13 06:41:12 +00:00
previous = $.makeArray($(listElement).find(itemSelector));
previous = previous[previous.length - 1];
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
var hideEvent = $.Event(Event.HIDE, {
relatedTarget: this._element
});
var showEvent = $.Event(Event.SHOW, {
relatedTarget: previous
});
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (previous) {
$(previous).trigger(hideEvent);
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
$(this._element).trigger(showEvent);
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) {
return;
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (selector) {
target = document.querySelector(selector);
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
this._activate(this._element, listElement);
var complete = function complete() {
var hiddenEvent = $.Event(Event.HIDDEN, {
relatedTarget: _this._element
});
var shownEvent = $.Event(Event.SHOWN, {
relatedTarget: previous
});
$(previous).trigger(hiddenEvent);
$(_this._element).trigger(shownEvent);
2017-09-30 21:28:03 +00:00
};
2018-11-13 06:41:12 +00:00
if (target) {
this._activate(target, target.parentNode, complete);
} else {
complete();
}
};
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
_proto.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._element = null;
}; // Private
2016-11-01 04:14:23 +00:00
2017-08-13 19:59:27 +00:00
2018-11-13 06:41:12 +00:00
_proto._activate = function _activate(element, container, callback) {
var _this2 = this;
2015-05-11 19:29:06 +00:00
2018-11-24 16:22:59 +00:00
var activeElements = container && (container.nodeName === 'UL' || container.nodeName === 'OL') ? $(container).find(Selector.ACTIVE_UL) : $(container).children(Selector.ACTIVE);
2018-11-13 06:41:12 +00:00
var active = activeElements[0];
var isTransitioning = callback && active && $(active).hasClass(ClassName.FADE);
2016-10-10 00:26:51 +00:00
2018-11-13 06:41:12 +00:00
var complete = function complete() {
return _this2._transitionComplete(element, active, callback);
2017-09-30 21:28:03 +00:00
};
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (active && isTransitioning) {
var transitionDuration = Util.getTransitionDurationFromElement(active);
$(active).removeClass(ClassName.SHOW).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
} else {
complete();
}
};
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
_proto._transitionComplete = function _transitionComplete(element, active, callback) {
if (active) {
$(active).removeClass(ClassName.ACTIVE);
var dropdownChild = $(active.parentNode).find(Selector.DROPDOWN_ACTIVE_CHILD)[0];
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (dropdownChild) {
$(dropdownChild).removeClass(ClassName.ACTIVE);
2017-09-06 04:05:12 +00:00
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (active.getAttribute('role') === 'tab') {
active.setAttribute('aria-selected', false);
2018-07-24 00:51:14 +00:00
}
2018-11-13 06:41:12 +00:00
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
$(element).addClass(ClassName.ACTIVE);
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (element.getAttribute('role') === 'tab') {
element.setAttribute('aria-selected', true);
}
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
Util.reflow(element);
$(element).addClass(ClassName.SHOW);
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (element.parentNode && $(element.parentNode).hasClass(ClassName.DROPDOWN_MENU)) {
var dropdownElement = $(element).closest(Selector.DROPDOWN)[0];
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
if (dropdownElement) {
var dropdownToggleList = [].slice.call(dropdownElement.querySelectorAll(Selector.DROPDOWN_TOGGLE));
$(dropdownToggleList).addClass(ClassName.ACTIVE);
2018-07-24 00:51:14 +00:00
}
2016-10-10 00:26:51 +00:00
2018-11-13 06:41:12 +00:00
element.setAttribute('aria-expanded', true);
}
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
if (callback) {
callback();
}
}; // Static
2016-10-10 00:26:51 +00:00
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
Tab._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $this = $(this);
var data = $this.data(DATA_KEY);
if (!data) {
data = new Tab(this);
$this.data(DATA_KEY, data);
}
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError("No method named \"" + config + "\"");
2017-09-06 04:05:12 +00:00
}
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
data[config]();
2017-09-30 21:28:03 +00:00
}
2018-11-13 06:41:12 +00:00
});
};
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
_createClass(Tab, null, [{
key: "VERSION",
get: function get() {
return VERSION;
}
}]);
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
return Tab;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-11 19:29:06 +00:00
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
event.preventDefault();
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
Tab._jQueryInterface.call($(this), 'show');
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2015-05-11 19:29:06 +00:00
2018-11-13 06:41:12 +00:00
$.fn[NAME] = Tab._jQueryInterface;
$.fn[NAME].Constructor = Tab;
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tab._jQueryInterface;
};
2015-05-11 19:29:06 +00:00
return Tab;
2018-07-24 00:51:14 +00:00
})));
//# sourceMappingURL=tab.js.map