twbs--bootstrap/js/dist/carousel.js

506 lines
15 KiB
JavaScript
Raw Normal View History

2017-12-23 00:21:54 +00:00
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2017-09-30 21:28:03 +00: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 04:05:12 +00:00
2017-09-30 21:28:03 +00:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2015-05-08 05:26:40 +00:00
/**
* --------------------------------------------------------------------------
2018-01-18 16:21:22 +00:00
* Bootstrap (v4.0.0): carousel.js
2015-05-08 05:26:40 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 19:31:55 +00:00
var Carousel = function ($) {
2015-05-08 05:26:40 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'carousel';
2018-01-18 16:21:22 +00:00
var VERSION = '4.0.0';
2015-05-08 05:26:40 +00:00
var DATA_KEY = 'bs.carousel';
2017-09-30 21:28:03 +00:00
var EVENT_KEY = "." + DATA_KEY;
2015-05-13 19:48:34 +00:00
var DATA_API_KEY = '.data-api';
2015-05-08 05:26:40 +00:00
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 600;
2016-06-05 01:21:15 +00:00
var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key
2017-09-30 21:28:03 +00:00
2016-06-05 01:21:15 +00:00
var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key
2017-09-30 21:28:03 +00:00
2017-04-22 06:58:09 +00:00
var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch
2015-05-08 05:26:40 +00:00
var Default = {
2015-05-10 06:00:59 +00:00
interval: 5000,
keyboard: true,
slide: false,
pause: 'hover',
wrap: true
2015-05-08 05:26:40 +00:00
};
2015-05-13 21:46:50 +00:00
var DefaultType = {
interval: '(number|boolean)',
keyboard: 'boolean',
slide: '(boolean|string)',
pause: '(string|boolean)',
2015-05-13 21:46:50 +00:00
wrap: 'boolean'
};
2015-05-08 05:26:40 +00:00
var Direction = {
NEXT: 'next',
2016-12-08 04:46:17 +00:00
PREV: 'prev',
LEFT: 'left',
RIGHT: 'right'
2015-05-08 05:26:40 +00:00
};
var Event = {
2017-09-30 21:28:03 +00:00
SLIDE: "slide" + EVENT_KEY,
SLID: "slid" + EVENT_KEY,
KEYDOWN: "keydown" + EVENT_KEY,
MOUSEENTER: "mouseenter" + EVENT_KEY,
MOUSELEAVE: "mouseleave" + EVENT_KEY,
TOUCHEND: "touchend" + EVENT_KEY,
LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY,
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
2015-05-08 05:26:40 +00:00
};
var ClassName = {
CAROUSEL: 'carousel',
ACTIVE: 'active',
SLIDE: 'slide',
2016-12-08 04:46:17 +00:00
RIGHT: 'carousel-item-right',
LEFT: 'carousel-item-left',
NEXT: 'carousel-item-next',
PREV: 'carousel-item-prev',
2015-05-08 05:26:40 +00:00
ITEM: 'carousel-item'
};
var Selector = {
ACTIVE: '.active',
ACTIVE_ITEM: '.active.carousel-item',
ITEM: '.carousel-item',
2016-12-08 04:46:17 +00:00
NEXT_PREV: '.carousel-item-next, .carousel-item-prev',
2015-05-08 05:26:40 +00:00
INDICATORS: '.carousel-indicators',
DATA_SLIDE: '[data-slide], [data-slide-to]',
DATA_RIDE: '[data-ride="carousel"]'
2017-09-13 05:24:15 +00:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-08 05:26:40 +00:00
2017-09-13 05:24:15 +00:00
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var Carousel =
/*#__PURE__*/
function () {
function Carousel(element, config) {
2015-05-08 05:26:40 +00:00
this._items = null;
this._interval = null;
this._activeElement = null;
this._isPaused = false;
this._isSliding = false;
2017-04-22 06:58:09 +00:00
this.touchTimeout = null;
2015-05-13 21:46:50 +00:00
this._config = this._getConfig(config);
2015-05-08 05:26:40 +00:00
this._element = $(element)[0];
this._indicatorsElement = $(this._element).find(Selector.INDICATORS)[0];
this._addEventListeners();
2018-01-12 06:42:40 +00:00
} // Getters
2015-05-08 05:26:40 +00:00
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
var _proto = Carousel.prototype;
2015-05-08 05:26:40 +00:00
2018-01-12 06:42:40 +00:00
// Public
2017-09-30 21:28:03 +00:00
_proto.next = function next() {
if (!this._isSliding) {
this._slide(Direction.NEXT);
}
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto.nextWhenVisible = function nextWhenVisible() {
// Don't call next when the page isn't visible
// or the carousel or its parent isn't visible
if (!document.hidden && $(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden') {
this.next();
}
};
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
_proto.prev = function prev() {
if (!this._isSliding) {
this._slide(Direction.PREV);
2015-10-13 21:49:31 +00:00
}
2017-09-30 21:28:03 +00:00
};
_proto.pause = function pause(event) {
if (!event) {
this._isPaused = true;
2015-05-08 05:26:40 +00:00
}
2017-09-30 21:28:03 +00:00
if ($(this._element).find(Selector.NEXT_PREV)[0] && Util.supportsTransitionEnd()) {
Util.triggerTransitionEnd(this._element);
this.cycle(true);
2016-10-10 00:26:51 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
clearInterval(this._interval);
this._interval = null;
};
_proto.cycle = function cycle(event) {
if (!event) {
this._isPaused = false;
}
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
if (this._interval) {
2015-05-08 05:26:40 +00:00
clearInterval(this._interval);
this._interval = null;
}
2017-09-30 21:28:03 +00:00
if (this._config.interval && !this._isPaused) {
this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval);
}
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto.to = function to(index) {
var _this = this;
this._activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0];
var activeIndex = this._getItemIndex(this._activeElement);
if (index > this._items.length - 1 || index < 0) {
return;
2016-10-10 00:26:51 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (this._isSliding) {
$(this._element).one(Event.SLID, function () {
return _this.to(index);
});
return;
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (activeIndex === index) {
this.pause();
this.cycle();
return;
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var direction = index > activeIndex ? Direction.NEXT : Direction.PREV;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
this._slide(direction, this._items[index]);
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto.dispose = function dispose() {
$(this._element).off(EVENT_KEY);
$.removeData(this._element, DATA_KEY);
this._items = null;
this._config = null;
this._element = null;
this._interval = null;
this._isPaused = null;
this._isSliding = null;
this._activeElement = null;
this._indicatorsElement = null;
2018-01-12 06:42:40 +00:00
}; // Private
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._getConfig = function _getConfig(config) {
2017-12-23 00:21:54 +00:00
config = _extends({}, Default, config);
2017-09-30 21:28:03 +00:00
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._addEventListeners = function _addEventListeners() {
var _this2 = this;
2016-11-01 04:14:23 +00:00
2017-09-30 21:28:03 +00:00
if (this._config.keyboard) {
$(this._element).on(Event.KEYDOWN, function (event) {
return _this2._keydown(event);
});
2015-05-13 21:46:50 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (this._config.pause === 'hover') {
$(this._element).on(Event.MOUSEENTER, function (event) {
return _this2.pause(event);
}).on(Event.MOUSELEAVE, function (event) {
return _this2.cycle(event);
});
if ('ontouchstart' in document.documentElement) {
2018-01-12 06:42:40 +00:00
// If it's a touch-enabled device, mouseenter/leave are fired as
2017-09-30 21:28:03 +00:00
// part of the mouse compatibility events on first tap - the carousel
// would stop cycling until user tapped out of it;
// here, we listen for touchend, explicitly pause the carousel
// (as if it's the second time we tap on it, mouseenter compat event
// is NOT fired) and after a timeout (to allow for mouse compatibility
// events to fire) we explicitly restart cycling
$(this._element).on(Event.TOUCHEND, function () {
_this2.pause();
if (_this2.touchTimeout) {
clearTimeout(_this2.touchTimeout);
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_this2.touchTimeout = setTimeout(function (event) {
return _this2.cycle(event);
}, TOUCHEVENT_COMPAT_WAIT + _this2._config.interval);
2017-09-06 04:05:12 +00:00
});
}
2015-05-08 05:26:40 +00:00
}
2017-09-30 21:28:03 +00:00
};
2017-09-06 04:05:12 +00:00
2017-09-30 21:28:03 +00:00
_proto._keydown = function _keydown(event) {
if (/input|textarea/i.test(event.target.tagName)) {
return;
2016-10-10 00:26:51 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
switch (event.which) {
case ARROW_LEFT_KEYCODE:
event.preventDefault();
this.prev();
break;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
case ARROW_RIGHT_KEYCODE:
event.preventDefault();
this.next();
break;
default:
2017-09-06 04:05:12 +00:00
}
2017-09-30 21:28:03 +00:00
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._getItemIndex = function _getItemIndex(element) {
this._items = $.makeArray($(element).parent().find(Selector.ITEM));
return this._items.indexOf(element);
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._getItemByDirection = function _getItemByDirection(direction, activeElement) {
var isNextDirection = direction === Direction.NEXT;
var isPrevDirection = direction === Direction.PREV;
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
var activeIndex = this._getItemIndex(activeElement);
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
var lastItemIndex = this._items.length - 1;
var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex;
if (isGoingToWrap && !this._config.wrap) {
return activeElement;
2015-05-08 05:26:40 +00:00
}
2017-09-30 21:28:03 +00:00
var delta = direction === Direction.PREV ? -1 : 1;
var itemIndex = (activeIndex + delta) % this._items.length;
return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex];
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) {
var targetIndex = this._getItemIndex(relatedTarget);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var fromIndex = this._getItemIndex($(this._element).find(Selector.ACTIVE_ITEM)[0]);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var slideEvent = $.Event(Event.SLIDE, {
relatedTarget: relatedTarget,
direction: eventDirectionName,
from: fromIndex,
to: targetIndex
});
$(this._element).trigger(slideEvent);
return slideEvent;
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) {
if (this._indicatorsElement) {
$(this._indicatorsElement).find(Selector.ACTIVE).removeClass(ClassName.ACTIVE);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)];
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (nextIndicator) {
$(nextIndicator).addClass(ClassName.ACTIVE);
}
}
};
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
_proto._slide = function _slide(direction, element) {
var _this3 = this;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0];
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var activeElementIndex = this._getItemIndex(activeElement);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var nextElementIndex = this._getItemIndex(nextElement);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var isCycling = Boolean(this._interval);
var directionalClassName;
var orderClassName;
var eventDirectionName;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (direction === Direction.NEXT) {
directionalClassName = ClassName.LEFT;
orderClassName = ClassName.NEXT;
eventDirectionName = Direction.LEFT;
} else {
directionalClassName = ClassName.RIGHT;
orderClassName = ClassName.PREV;
eventDirectionName = Direction.RIGHT;
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {
this._isSliding = false;
return;
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName);
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (slideEvent.isDefaultPrevented()) {
return;
2016-10-10 00:26:51 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (!activeElement || !nextElement) {
2018-01-12 06:42:40 +00:00
// Some weirdness is happening, so we bail
2017-09-30 21:28:03 +00:00
return;
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
this._isSliding = true;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (isCycling) {
this.pause();
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
this._setActiveIndicatorElement(nextElement);
var slidEvent = $.Event(Event.SLID, {
relatedTarget: nextElement,
direction: eventDirectionName,
from: activeElementIndex,
to: nextElementIndex
});
if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.SLIDE)) {
$(nextElement).addClass(orderClassName);
Util.reflow(nextElement);
$(activeElement).addClass(directionalClassName);
$(nextElement).addClass(directionalClassName);
$(activeElement).one(Util.TRANSITION_END, function () {
$(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName.ACTIVE);
$(activeElement).removeClass(ClassName.ACTIVE + " " + orderClassName + " " + directionalClassName);
_this3._isSliding = false;
setTimeout(function () {
return $(_this3._element).trigger(slidEvent);
}, 0);
}).emulateTransitionEnd(TRANSITION_DURATION);
} else {
$(activeElement).removeClass(ClassName.ACTIVE);
$(nextElement).addClass(ClassName.ACTIVE);
this._isSliding = false;
$(this._element).trigger(slidEvent);
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (isCycling) {
this.cycle();
2016-10-10 00:26:51 +00:00
}
2018-01-12 06:42:40 +00:00
}; // Static
2015-05-08 05:26:40 +00:00
2015-08-19 03:28:28 +00:00
2017-09-30 21:28:03 +00:00
Carousel._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
2015-05-08 05:26:40 +00:00
2017-12-23 00:21:54 +00:00
var _config = _extends({}, Default, $(this).data());
2017-09-30 21:28:03 +00:00
if (typeof config === 'object') {
2017-12-23 00:21:54 +00:00
_config = _extends({}, _config, config);
2017-09-06 04:05:12 +00:00
}
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
var action = typeof config === 'string' ? config : _config.slide;
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
if (!data) {
data = new Carousel(this, _config);
$(this).data(DATA_KEY, data);
2017-09-06 04:05:12 +00:00
}
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
if (typeof config === 'number') {
data.to(config);
} else if (typeof action === 'string') {
if (typeof data[action] === 'undefined') {
2018-01-12 06:42:40 +00:00
throw new TypeError("No method named \"" + action + "\"");
2017-09-30 21:28:03 +00:00
}
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
data[action]();
} else if (_config.interval) {
data.pause();
data.cycle();
2017-09-06 04:05:12 +00:00
}
2017-09-30 21:28:03 +00:00
});
};
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
Carousel._dataApiClickHandler = function _dataApiClickHandler(event) {
var selector = Util.getSelectorFromElement(this);
if (!selector) {
return;
2017-09-06 04:05:12 +00:00
}
2017-09-30 21:28:03 +00:00
var target = $(selector)[0];
if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {
return;
}
2017-12-23 00:21:54 +00:00
var config = _extends({}, $(target).data(), $(this).data());
2017-09-30 21:28:03 +00:00
var slideIndex = this.getAttribute('data-slide-to');
if (slideIndex) {
config.interval = false;
}
Carousel._jQueryInterface.call($(target), config);
if (slideIndex) {
$(target).data(DATA_KEY).to(slideIndex);
}
event.preventDefault();
};
_createClass(Carousel, null, [{
key: "VERSION",
2015-08-13 04:12:03 +00:00
get: function get() {
return VERSION;
}
}, {
2017-09-30 21:28:03 +00:00
key: "Default",
2015-08-13 04:12:03 +00:00
get: function get() {
return Default;
}
2015-05-08 05:26:40 +00:00
}]);
return Carousel;
2016-10-10 00:26:51 +00:00
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-08 05:26:40 +00:00
2017-09-30 21:28:03 +00:00
$(document).on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler);
2015-05-13 19:48:34 +00:00
$(window).on(Event.LOAD_DATA_API, function () {
2015-05-08 05:26:40 +00:00
$(Selector.DATA_RIDE).each(function () {
var $carousel = $(this);
2017-09-30 21:28:03 +00:00
2015-05-08 05:26:40 +00:00
Carousel._jQueryInterface.call($carousel, $carousel.data());
});
2017-07-02 17:40:27 +00:00
});
2015-05-08 05:26:40 +00:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-07-02 17:40:27 +00:00
$.fn[NAME] = Carousel._jQueryInterface;
2015-05-08 05:26:40 +00:00
$.fn[NAME].Constructor = Carousel;
2017-09-30 21:28:03 +00:00
2015-05-08 05:26:40 +00:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Carousel._jQueryInterface;
};
return Carousel;
2017-10-15 22:51:44 +00:00
}($);
2017-04-22 06:58:09 +00:00
//# sourceMappingURL=carousel.js.map