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

274 lines
7.9 KiB
JavaScript
Raw Normal View History

2017-09-06 04:05:12 +00:00
'use strict';
2016-10-10 00:26:51 +00:00
var _createClass = function () { 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
2015-05-11 19:29:06 +00:00
2016-10-10 00:26:51 +00:00
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2015-05-11 19:29:06 +00:00
/**
* --------------------------------------------------------------------------
2017-08-11 03:56:35 +00:00
* Bootstrap (v4.0.0-beta): tab.js
2015-05-11 19:29:06 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-09-06 04:05:12 +00:00
var Tab = function () {
2015-05-11 19:29:06 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tab';
2017-08-11 03:56:35 +00:00
var VERSION = '4.0.0-beta';
2015-05-11 19:29:06 +00:00
var DATA_KEY = 'bs.tab';
2015-05-13 19:48:34 +00:00
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
2015-05-11 19:29:06 +00:00
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 150;
var Event = {
2015-05-13 19:48:34 +00:00
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
2015-08-13 04:12:03 +00:00
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
2015-05-11 19:29:06 +00:00
};
var ClassName = {
DROPDOWN_MENU: 'dropdown-menu',
ACTIVE: 'active',
2016-12-25 23:47:03 +00:00
DISABLED: 'disabled',
2015-05-11 19:29:06 +00:00
FADE: 'fade',
2016-12-20 05:48:24 +00:00
SHOW: 'show'
2015-05-11 19:29:06 +00:00
};
var Selector = {
2015-08-19 05:03:34 +00:00
DROPDOWN: '.dropdown',
2017-04-08 20:22:53 +00:00
NAV_LIST_GROUP: '.nav, .list-group',
2015-05-11 19:29:06 +00:00
ACTIVE: '.active',
2017-08-13 19:59:27 +00:00
ACTIVE_UL: '> li > .active',
2017-04-08 20:22:53 +00:00
DATA_TOGGLE: '[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',
2015-08-19 05:03:34 +00:00
DROPDOWN_TOGGLE: '.dropdown-toggle',
DROPDOWN_ACTIVE_CHILD: '> .dropdown-menu .active'
2015-05-11 19:29:06 +00:00
2017-09-13 05:24:15 +00:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-11 19:29:06 +00:00
2017-09-13 05:24:15 +00:00
};
2016-10-10 00:26:51 +00:00
var Tab = function () {
2015-05-11 19:29:06 +00:00
function Tab(element) {
_classCallCheck(this, Tab);
this._element = element;
}
2015-08-13 04:12:03 +00:00
// getters
2017-09-06 04:05:12 +00:00
_createClass(Tab, [{
key: 'show',
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
// public
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
value: function show() {
var _this = this;
2015-05-11 19:29:06 +00:00
2017-09-06 04:05: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
2017-09-06 04:05:12 +00:00
var target = void 0;
var previous = void 0;
var listElement = $(this._element).closest(Selector.NAV_LIST_GROUP)[0];
var selector = Util.getSelectorFromElement(this._element);
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (listElement) {
var itemSelector = listElement.nodeName === 'UL' ? Selector.ACTIVE_UL : Selector.ACTIVE;
previous = $.makeArray($(listElement).find(itemSelector));
previous = previous[previous.length - 1];
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
var hideEvent = $.Event(Event.HIDE, {
relatedTarget: this._element
2016-10-10 00:26:51 +00:00
});
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
var showEvent = $.Event(Event.SHOW, {
2016-10-10 00:26:51 +00:00
relatedTarget: previous
});
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (previous) {
$(previous).trigger(hideEvent);
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
$(this._element).trigger(showEvent);
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) {
return;
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (selector) {
target = $(selector)[0];
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
this._activate(this._element, listElement);
2016-11-01 04:14:23 +00:00
2017-09-06 04:05:12 +00:00
var complete = function complete() {
var hiddenEvent = $.Event(Event.HIDDEN, {
relatedTarget: _this._element
});
2017-08-13 19:59:27 +00:00
2017-09-06 04:05:12 +00:00
var shownEvent = $.Event(Event.SHOWN, {
relatedTarget: previous
});
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
$(previous).trigger(hiddenEvent);
$(_this._element).trigger(shownEvent);
};
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (target) {
this._activate(target, target.parentNode, complete);
} else {
complete();
}
2015-05-11 19:29:06 +00:00
}
2017-09-06 04:05:12 +00:00
}, {
key: 'dispose',
value: function dispose() {
$.removeData(this._element, DATA_KEY);
this._element = null;
2016-10-10 00:26:51 +00:00
}
2015-08-19 05:03:34 +00:00
2017-09-06 04:05:12 +00:00
// private
2016-10-10 00:26:51 +00:00
2017-09-06 04:05:12 +00:00
}, {
key: '_activate',
value: function _activate(element, container, callback) {
var _this2 = this;
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
var activeElements = void 0;
if (container.nodeName === 'UL') {
activeElements = $(container).find(Selector.ACTIVE_UL);
} else {
activeElements = $(container).children(Selector.ACTIVE);
2015-05-11 19:29:06 +00:00
}
2017-09-06 04:05:12 +00:00
var active = activeElements[0];
var isTransitioning = callback && Util.supportsTransitionEnd() && active && $(active).hasClass(ClassName.FADE);
var complete = function complete() {
return _this2._transitionComplete(element, active, isTransitioning, callback);
};
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (active && isTransitioning) {
$(active).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
} else {
complete();
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (active) {
$(active).removeClass(ClassName.SHOW);
}
2016-10-10 00:26:51 +00:00
}
2017-09-06 04:05:12 +00:00
}, {
key: '_transitionComplete',
value: function _transitionComplete(element, active, isTransitioning, 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
2017-09-06 04:05:12 +00:00
if (dropdownChild) {
$(dropdownChild).removeClass(ClassName.ACTIVE);
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
active.setAttribute('aria-expanded', false);
2015-05-11 19:29:06 +00:00
}
2017-09-06 04:05:12 +00:00
$(element).addClass(ClassName.ACTIVE);
2016-10-10 00:26:51 +00:00
element.setAttribute('aria-expanded', true);
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (isTransitioning) {
Util.reflow(element);
$(element).addClass(ClassName.SHOW);
} else {
$(element).removeClass(ClassName.FADE);
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
if (element.parentNode && $(element.parentNode).hasClass(ClassName.DROPDOWN_MENU)) {
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
var dropdownElement = $(element).closest(Selector.DROPDOWN)[0];
if (dropdownElement) {
$(dropdownElement).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
}
2015-05-11 19:29:06 +00:00
2017-09-06 04:05:12 +00:00
element.setAttribute('aria-expanded', true);
2016-10-10 00:26:51 +00:00
}
2017-09-06 04:05:12 +00:00
if (callback) {
callback();
2016-10-10 00:26:51 +00:00
}
2017-09-06 04:05:12 +00:00
}
// static
2016-10-10 00:26:51 +00:00
2017-09-06 04:05:12 +00:00
}], [{
key: '_jQueryInterface',
value: 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);
}
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
}
}, {
2015-08-13 04:12:03 +00:00
key: 'VERSION',
get: function get() {
return VERSION;
}
2015-05-11 19:29:06 +00:00
}]);
return Tab;
2016-10-10 00:26:51 +00:00
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-11 19:29:06 +00:00
2015-05-13 19:48:34 +00:00
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
2015-05-11 19:29:06 +00:00
event.preventDefault();
Tab._jQueryInterface.call($(this), 'show');
2017-07-02 17:40:27 +00:00
});
2015-05-11 19:29:06 +00:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-07-02 17:40:27 +00:00
$.fn[NAME] = Tab._jQueryInterface;
2015-05-11 19:29:06 +00:00
$.fn[NAME].Constructor = Tab;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tab._jQueryInterface;
};
return Tab;
2016-10-10 00:26:51 +00:00
}(jQuery);
2017-04-22 06:58:09 +00:00
//# sourceMappingURL=tab.js.map