0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00
Bootstrap/js/src/carousel.js

638 lines
17 KiB
JavaScript
Raw Normal View History

2015-05-08 07:26:40 +02:00
/**
* --------------------------------------------------------------------------
2019-02-13 17:01:40 +01:00
* Bootstrap (v4.3.1): carousel.js
2015-05-08 07:26:40 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
import {
2019-08-02 15:51:05 +02:00
getjQuery,
TRANSITION_END,
emulateTransitionEnd,
getElementFromSelector,
getTransitionDurationFromElement,
isVisible,
makeArray,
reflow,
triggerTransitionEnd,
typeCheckConfig
} from './util/index'
import Data from './dom/data'
import EventHandler from './dom/event-handler'
import Manipulator from './dom/manipulator'
import SelectorEngine from './dom/selector-engine'
2018-10-14 13:59:51 +02:00
2018-09-26 10:39:01 +02:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2015-05-13 23:46:50 +02:00
2019-02-26 12:20:34 +01:00
const NAME = 'carousel'
const VERSION = '4.3.1'
const DATA_KEY = 'bs.carousel'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
const ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key
const ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key
2018-09-26 10:39:01 +02:00
const TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch
2019-02-26 12:20:34 +01:00
const SWIPE_THRESHOLD = 40
2018-09-26 10:39:01 +02:00
const Default = {
2019-02-26 12:20:34 +01:00
interval: 5000,
keyboard: true,
slide: false,
pause: 'hover',
wrap: true,
touch: true
2018-09-26 10:39:01 +02:00
}
const DefaultType = {
2019-02-26 12:20:34 +01:00
interval: '(number|boolean)',
keyboard: 'boolean',
slide: '(boolean|string)',
pause: '(string|boolean)',
wrap: 'boolean',
touch: 'boolean'
2018-09-26 10:39:01 +02:00
}
const Direction = {
2019-02-26 12:20:34 +01:00
NEXT: 'next',
PREV: 'prev',
LEFT: 'left',
RIGHT: 'right'
2018-09-26 10:39:01 +02:00
}
const Event = {
2019-02-26 12:20:34 +01:00
SLIDE: `slide${EVENT_KEY}`,
SLID: `slid${EVENT_KEY}`,
KEYDOWN: `keydown${EVENT_KEY}`,
MOUSEENTER: `mouseenter${EVENT_KEY}`,
MOUSELEAVE: `mouseleave${EVENT_KEY}`,
TOUCHSTART: `touchstart${EVENT_KEY}`,
TOUCHMOVE: `touchmove${EVENT_KEY}`,
TOUCHEND: `touchend${EVENT_KEY}`,
POINTERDOWN: `pointerdown${EVENT_KEY}`,
POINTERUP: `pointerup${EVENT_KEY}`,
DRAG_START: `dragstart${EVENT_KEY}`,
LOAD_DATA_API: `load${EVENT_KEY}${DATA_API_KEY}`,
CLICK_DATA_API: `click${EVENT_KEY}${DATA_API_KEY}`
2018-09-26 10:39:01 +02:00
}
const ClassName = {
2019-02-26 12:20:34 +01:00
CAROUSEL: 'carousel',
ACTIVE: 'active',
SLIDE: 'slide',
RIGHT: 'carousel-item-right',
LEFT: 'carousel-item-left',
NEXT: 'carousel-item-next',
PREV: 'carousel-item-prev',
ITEM: 'carousel-item',
POINTER_EVENT: 'pointer-event'
2018-09-26 10:39:01 +02:00
}
const Selector = {
2019-02-26 12:20:34 +01:00
ACTIVE: '.active',
ACTIVE_ITEM: '.active.carousel-item',
ITEM: '.carousel-item',
ITEM_IMG: '.carousel-item img',
NEXT_PREV: '.carousel-item-next, .carousel-item-prev',
INDICATORS: '.carousel-indicators',
DATA_SLIDE: '[data-slide], [data-slide-to]',
DATA_RIDE: '[data-ride="carousel"]'
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-10-14 23:10:13 +02:00
const PointerType = {
2019-02-26 12:20:34 +01:00
TOUCH: 'touch',
PEN: 'pen'
2018-10-14 23:10:13 +02:00
}
2018-09-26 10:39:01 +02:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
class Carousel {
constructor(element, config) {
2019-02-26 12:20:34 +01:00
this._items = null
this._interval = null
this._activeElement = null
2019-02-26 12:20:34 +01:00
this._isPaused = false
this._isSliding = false
this.touchTimeout = null
this.touchStartX = 0
this.touchDeltaX = 0
this._config = this._getConfig(config)
this._element = element
2017-08-24 22:22:02 +02:00
this._indicatorsElement = SelectorEngine.findOne(Selector.INDICATORS, this._element)
2019-02-26 12:20:34 +01:00
this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0
this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent)
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._addEventListeners()
Data.setData(element, DATA_KEY, this)
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
// Getters
2018-09-26 10:39:01 +02:00
static get VERSION() {
return VERSION
}
2018-09-26 10:39:01 +02:00
static get Default() {
return Default
}
2018-09-26 10:39:01 +02:00
// Public
2018-09-26 10:39:01 +02:00
next() {
if (!this._isSliding) {
this._slide(Direction.NEXT)
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
nextWhenVisible() {
// Don't call next when the page isn't visible
// or the carousel or its parent isn't visible
if (!document.hidden && isVisible(this._element)) {
2018-09-26 10:39:01 +02:00
this.next()
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
prev() {
if (!this._isSliding) {
this._slide(Direction.PREV)
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
pause(event) {
if (!event) {
this._isPaused = true
}
2017-08-24 22:22:02 +02:00
if (SelectorEngine.findOne(Selector.NEXT_PREV, this._element)) {
triggerTransitionEnd(this._element)
2018-09-26 10:39:01 +02:00
this.cycle(true)
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
clearInterval(this._interval)
this._interval = null
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
cycle(event) {
if (!event) {
this._isPaused = false
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (this._interval) {
2015-05-08 07:26:40 +02:00
clearInterval(this._interval)
this._interval = null
}
2018-07-25 11:29:16 +02:00
if (this._config && this._config.interval && !this._isPaused) {
2018-09-26 10:39:01 +02:00
this._interval = setInterval(
(document.visibilityState ? this.nextWhenVisible : this.next).bind(this),
this._config.interval
)
}
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
to(index) {
2017-08-24 22:22:02 +02:00
this._activeElement = SelectorEngine.findOne(Selector.ACTIVE_ITEM, this._element)
2018-09-26 10:39:01 +02:00
const activeIndex = this._getItemIndex(this._activeElement)
if (index > this._items.length - 1 || index < 0) {
return
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
if (this._isSliding) {
2017-08-24 22:22:02 +02:00
EventHandler.one(this._element, Event.SLID, () => this.to(index))
2018-09-26 10:39:01 +02:00
return
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (activeIndex === index) {
this.pause()
this.cycle()
return
}
2015-05-08 07:26:40 +02:00
2019-02-26 12:20:34 +01:00
const direction = index > activeIndex ?
Direction.NEXT :
Direction.PREV
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._slide(direction, this._items[index])
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
dispose() {
EventHandler.off(this._element, EVENT_KEY)
2017-08-24 22:22:02 +02:00
Data.removeData(this._element, DATA_KEY)
2018-09-26 10:39:01 +02:00
2019-02-26 12:20:34 +01:00
this._items = null
this._config = null
this._element = null
this._interval = null
this._isPaused = null
this._isSliding = null
this._activeElement = null
2018-09-26 10:39:01 +02:00
this._indicatorsElement = null
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
// Private
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_getConfig(config) {
config = {
...Default,
...config
2015-05-08 07:26:40 +02:00
}
typeCheckConfig(NAME, config, DefaultType)
2018-09-26 10:39:01 +02:00
return config
}
2015-05-08 07:26:40 +02:00
2018-10-14 13:59:51 +02:00
_handleSwipe() {
const absDeltax = Math.abs(this.touchDeltaX)
if (absDeltax <= SWIPE_THRESHOLD) {
return
}
const direction = absDeltax / this.touchDeltaX
this.touchDeltaX = 0
2018-10-14 13:59:51 +02:00
// swipe left
if (direction > 0) {
this.prev()
}
// swipe right
if (direction < 0) {
this.next()
}
}
2018-09-26 10:39:01 +02:00
_addEventListeners() {
if (this._config.keyboard) {
2017-08-24 22:22:02 +02:00
EventHandler
2019-02-26 12:20:34 +01:00
.on(this._element, Event.KEYDOWN, event => this._keydown(event))
2015-05-13 21:48:34 +02:00
}
2018-09-26 10:39:01 +02:00
if (this._config.pause === 'hover') {
2017-08-24 22:22:02 +02:00
EventHandler
2019-02-26 12:20:34 +01:00
.on(this._element, Event.MOUSEENTER, event => this.pause(event))
2017-08-24 22:22:02 +02:00
EventHandler
2019-02-26 12:20:34 +01:00
.on(this._element, Event.MOUSELEAVE, event => this.cycle(event))
2018-10-14 13:59:51 +02:00
}
2019-03-27 11:58:00 +01:00
if (this._config.touch && this._touchSupported) {
this._addTouchEventListeners()
}
2018-10-14 13:59:51 +02:00
}
_addTouchEventListeners() {
2019-02-26 12:20:34 +01:00
const start = event => {
2017-08-24 22:22:02 +02:00
if (this._pointerEvent && PointerType[event.pointerType.toUpperCase()]) {
this.touchStartX = event.clientX
} else if (!this._pointerEvent) {
2017-08-24 22:22:02 +02:00
this.touchStartX = event.touches[0].clientX
2018-10-14 23:10:13 +02:00
}
}
2018-10-14 13:59:51 +02:00
2019-02-26 12:20:34 +01:00
const move = event => {
2018-10-29 14:27:19 +01:00
// ensure swiping with one touch and not pinching
2017-08-24 22:22:02 +02:00
if (event.touches && event.touches.length > 1) {
2018-10-29 14:27:19 +01:00
this.touchDeltaX = 0
} else {
2017-08-24 22:22:02 +02:00
this.touchDeltaX = event.touches[0].clientX - this.touchStartX
2018-10-14 23:10:13 +02:00
}
}
2019-02-26 12:20:34 +01:00
const end = event => {
2018-07-25 11:29:16 +02:00
if (this._pointerEvent && PointerType[event.pointerType.toUpperCase()]) {
2017-08-24 22:22:02 +02:00
this.touchDeltaX = event.clientX - this.touchStartX
2018-10-14 23:10:13 +02:00
}
2018-10-14 13:59:51 +02:00
this._handleSwipe()
if (this._config.pause === 'hover') {
2018-09-26 10:39:01 +02:00
// If it's a touch-enabled device, mouseenter/leave are fired as
// 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
2018-10-14 13:59:51 +02:00
this.pause()
if (this.touchTimeout) {
clearTimeout(this.touchTimeout)
}
2019-02-26 12:20:34 +01:00
this.touchTimeout = setTimeout(event => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)
}
2018-10-14 23:10:13 +02:00
}
2019-02-26 12:20:34 +01:00
makeArray(SelectorEngine.find(Selector.ITEM_IMG, this._element)).forEach(itemImg => {
EventHandler.on(itemImg, Event.DRAG_START, e => e.preventDefault())
2017-08-24 22:22:02 +02:00
})
2018-10-14 23:10:13 +02:00
if (this._pointerEvent) {
2019-02-26 12:20:34 +01:00
EventHandler.on(this._element, Event.POINTERDOWN, event => start(event))
EventHandler.on(this._element, Event.POINTERUP, event => end(event))
2018-10-14 23:10:13 +02:00
this._element.classList.add(ClassName.POINTER_EVENT)
} else {
2019-02-26 12:20:34 +01:00
EventHandler.on(this._element, Event.TOUCHSTART, event => start(event))
EventHandler.on(this._element, Event.TOUCHMOVE, event => move(event))
EventHandler.on(this._element, Event.TOUCHEND, event => end(event))
2018-10-14 23:10:13 +02:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-13 23:46:50 +02:00
2018-09-26 10:39:01 +02:00
_keydown(event) {
if (/input|textarea/i.test(event.target.tagName)) {
return
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
switch (event.which) {
case ARROW_LEFT_KEYCODE:
event.preventDefault()
this.prev()
break
case ARROW_RIGHT_KEYCODE:
event.preventDefault()
this.next()
break
default:
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_getItemIndex(element) {
2019-02-26 12:20:34 +01:00
this._items = element && element.parentNode ?
makeArray(SelectorEngine.find(Selector.ITEM, element.parentNode)) :
[]
2017-08-24 22:22:02 +02:00
2018-09-26 10:39:01 +02:00
return this._items.indexOf(element)
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_getItemByDirection(direction, activeElement) {
const isNextDirection = direction === Direction.NEXT
const isPrevDirection = direction === Direction.PREV
2019-02-26 12:20:34 +01:00
const activeIndex = this._getItemIndex(activeElement)
const lastItemIndex = this._items.length - 1
const isGoingToWrap = (isPrevDirection && activeIndex === 0) ||
(isNextDirection && activeIndex === lastItemIndex)
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (isGoingToWrap && !this._config.wrap) {
return activeElement
}
2015-05-08 07:26:40 +02:00
2019-02-26 12:20:34 +01:00
const delta = direction === Direction.PREV ? -1 : 1
2018-09-26 10:39:01 +02:00
const itemIndex = (activeIndex + delta) % this._items.length
2015-05-08 07:26:40 +02:00
2019-02-26 12:20:34 +01:00
return itemIndex === -1 ?
this._items[this._items.length - 1] :
this._items[itemIndex]
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_triggerSlideEvent(relatedTarget, eventDirectionName) {
const targetIndex = this._getItemIndex(relatedTarget)
2017-08-24 22:22:02 +02:00
const fromIndex = this._getItemIndex(SelectorEngine.findOne(Selector.ACTIVE_ITEM, this._element))
return EventHandler.trigger(this._element, Event.SLIDE, {
2018-09-26 10:39:01 +02:00
relatedTarget,
direction: eventDirectionName,
from: fromIndex,
to: targetIndex
})
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_setActiveIndicatorElement(element) {
if (this._indicatorsElement) {
2017-08-24 22:22:02 +02:00
const indicators = SelectorEngine.find(Selector.ACTIVE, this._indicatorsElement)
for (let i = 0; i < indicators.length; i++) {
indicators[i].classList.remove(ClassName.ACTIVE)
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
const nextIndicator = this._indicatorsElement.children[
this._getItemIndex(element)
]
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (nextIndicator) {
2017-08-24 22:22:02 +02:00
nextIndicator.classList.add(ClassName.ACTIVE)
2015-05-08 07:26:40 +02:00
}
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
_slide(direction, element) {
2017-08-24 22:22:02 +02:00
const activeElement = SelectorEngine.findOne(Selector.ACTIVE_ITEM, this._element)
2018-09-26 10:39:01 +02:00
const activeElementIndex = this._getItemIndex(activeElement)
const nextElement = element || (activeElement &&
this._getItemByDirection(direction, activeElement))
2017-08-24 22:22:02 +02:00
2018-09-26 10:39:01 +02:00
const nextElementIndex = this._getItemIndex(nextElement)
const isCycling = Boolean(this._interval)
let directionalClassName
let orderClassName
let eventDirectionName
if (direction === Direction.NEXT) {
directionalClassName = ClassName.LEFT
orderClassName = ClassName.NEXT
eventDirectionName = Direction.LEFT
} else {
directionalClassName = ClassName.RIGHT
orderClassName = ClassName.PREV
eventDirectionName = Direction.RIGHT
}
2016-12-05 04:53:16 +01:00
2017-08-24 22:22:02 +02:00
if (nextElement && nextElement.classList.contains(ClassName.ACTIVE)) {
2018-09-26 10:39:01 +02:00
this._isSliding = false
return
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)
2017-08-24 22:22:02 +02:00
if (slideEvent.defaultPrevented) {
2018-09-26 10:39:01 +02:00
return
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (!activeElement || !nextElement) {
// Some weirdness is happening, so we bail
return
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._isSliding = true
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (isCycling) {
this.pause()
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._setActiveIndicatorElement(nextElement)
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
if (this._element.classList.contains(ClassName.SLIDE)) {
nextElement.classList.add(orderClassName)
2015-05-08 07:26:40 +02:00
reflow(nextElement)
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
activeElement.classList.add(directionalClassName)
nextElement.classList.add(directionalClassName)
2018-07-25 11:29:16 +02:00
const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10)
if (nextElementInterval) {
this._config.defaultInterval = this._config.defaultInterval || this._config.interval
this._config.interval = nextElementInterval
} else {
this._config.interval = this._config.defaultInterval || this._config.interval
}
const transitionDuration = getTransitionDurationFromElement(activeElement)
2018-03-13 09:59:20 +01:00
2017-08-24 22:22:02 +02:00
EventHandler
.one(activeElement, TRANSITION_END, () => {
2017-08-24 22:22:02 +02:00
nextElement.classList.remove(directionalClassName)
nextElement.classList.remove(orderClassName)
nextElement.classList.add(ClassName.ACTIVE)
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
activeElement.classList.remove(ClassName.ACTIVE)
activeElement.classList.remove(orderClassName)
activeElement.classList.remove(directionalClassName)
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._isSliding = false
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
setTimeout(() => {
EventHandler.trigger(this._element, Event.SLID, {
relatedTarget: nextElement,
direction: eventDirectionName,
from: activeElementIndex,
to: nextElementIndex
})
}, 0)
2018-09-26 10:39:01 +02:00
})
2017-08-19 17:24:45 +02:00
emulateTransitionEnd(activeElement, transitionDuration)
2018-09-26 10:39:01 +02:00
} else {
2017-08-24 22:22:02 +02:00
activeElement.classList.remove(ClassName.ACTIVE)
nextElement.classList.add(ClassName.ACTIVE)
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
this._isSliding = false
2017-08-24 22:22:02 +02:00
EventHandler.trigger(this._element, Event.SLID, {
relatedTarget: nextElement,
direction: eventDirectionName,
from: activeElementIndex,
to: nextElementIndex
})
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (isCycling) {
this.cycle()
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
// Static
2015-05-08 07:26:40 +02:00
2019-07-28 15:24:46 +02:00
static carouselInterface(element, config) {
2019-02-26 12:20:34 +01:00
let data = Data.getData(element, DATA_KEY)
let _config = {
...Default,
...Manipulator.getDataAttributes(element)
}
2015-05-08 07:26:40 +02:00
if (typeof config === 'object') {
_config = {
..._config,
...config
2018-09-26 10:39:01 +02:00
}
}
2015-05-08 07:26:40 +02:00
const action = typeof config === 'string' ? config : _config.slide
2015-05-08 07:26:40 +02:00
if (!data) {
data = new Carousel(element, _config)
}
2015-05-08 07:26:40 +02:00
if (typeof config === 'number') {
data.to(config)
} else if (typeof action === 'string') {
if (typeof data[action] === 'undefined') {
2019-02-26 12:20:34 +01:00
throw new TypeError(`No method named "${action}"`)
2015-05-08 07:26:40 +02:00
}
2019-02-26 12:20:34 +01:00
data[action]()
} else if (_config.interval && _config.ride) {
data.pause()
data.cycle()
}
}
2019-07-28 15:24:46 +02:00
static jQueryInterface(config) {
return this.each(function () {
2019-07-28 15:24:46 +02:00
Carousel.carouselInterface(this, config)
2018-09-26 10:39:01 +02:00
})
}
2015-05-08 07:26:40 +02:00
2019-07-28 15:24:46 +02:00
static dataApiClickHandler(event) {
const target = getElementFromSelector(this)
2015-08-19 04:22:46 +02:00
2017-08-24 22:22:02 +02:00
if (!target || !target.classList.contains(ClassName.CAROUSEL)) {
2018-09-26 10:39:01 +02:00
return
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
const config = {
...Manipulator.getDataAttributes(target),
...Manipulator.getDataAttributes(this)
2018-09-26 10:39:01 +02:00
}
const slideIndex = this.getAttribute('data-slide-to')
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (slideIndex) {
config.interval = false
}
2019-07-28 15:24:46 +02:00
Carousel.carouselInterface(target, config)
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
if (slideIndex) {
2017-08-24 22:22:02 +02:00
Data.getData(target, DATA_KEY).to(slideIndex)
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
event.preventDefault()
2015-05-08 07:26:40 +02:00
}
2019-07-28 15:24:46 +02:00
static getInstance(element) {
return Data.getData(element, DATA_KEY)
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
2018-09-26 10:39:01 +02:00
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
EventHandler
2019-07-28 15:24:46 +02:00
.on(document, Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel.dataApiClickHandler)
2015-05-08 07:26:40 +02:00
2017-08-24 22:22:02 +02:00
EventHandler.on(window, Event.LOAD_DATA_API, () => {
const carousels = makeArray(SelectorEngine.find(Selector.DATA_RIDE))
2018-09-26 10:39:01 +02:00
for (let i = 0, len = carousels.length; i < len; i++) {
2019-07-28 15:24:46 +02:00
Carousel.carouselInterface(carousels[i], Data.getData(carousels[i], DATA_KEY))
2015-05-08 07:26:40 +02:00
}
2018-09-26 10:39:01 +02:00
})
2019-08-02 15:51:05 +02:00
const $ = getjQuery()
2018-09-26 10:39:01 +02:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2018-03-05 15:40:23 +01:00
* add .carousel to jQuery only if jQuery is present
2018-09-26 10:39:01 +02:00
*/
2019-03-27 11:58:00 +01:00
/* istanbul ignore if */
2019-08-02 15:51:05 +02:00
if ($) {
2018-03-05 15:40:23 +01:00
const JQUERY_NO_CONFLICT = $.fn[NAME]
2019-07-28 15:24:46 +02:00
$.fn[NAME] = Carousel.jQueryInterface
2019-02-26 12:20:34 +01:00
$.fn[NAME].Constructor = Carousel
$.fn[NAME].noConflict = () => {
2018-03-05 15:40:23 +01:00
$.fn[NAME] = JQUERY_NO_CONFLICT
2019-07-28 15:24:46 +02:00
return Carousel.jQueryInterface
2018-03-05 15:40:23 +01:00
}
2018-09-26 10:39:01 +02:00
}
2015-05-08 07:26:40 +02:00
export default Carousel