2015-05-09 23:00:59 -07:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2019-02-13 18:01:40 +02:00
|
|
|
* Bootstrap (v4.3.1): collapse.js
|
2015-05-09 23:00:59 -07:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
import Data from './dom/data'
|
|
|
|
import EventHandler from './dom/eventHandler'
|
|
|
|
import SelectorEngine from './dom/selectorEngine'
|
2018-11-14 10:16:56 +01:00
|
|
|
import Util from './util'
|
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const NAME = 'collapse'
|
2019-02-13 18:01:40 +02:00
|
|
|
const VERSION = '4.3.1'
|
2018-09-26 10:39:01 +02:00
|
|
|
const DATA_KEY = 'bs.collapse'
|
|
|
|
const EVENT_KEY = `.${DATA_KEY}`
|
|
|
|
const DATA_API_KEY = '.data-api'
|
|
|
|
|
|
|
|
const Default = {
|
|
|
|
toggle : true,
|
|
|
|
parent : ''
|
|
|
|
}
|
|
|
|
|
|
|
|
const DefaultType = {
|
|
|
|
toggle : 'boolean',
|
|
|
|
parent : '(string|element)'
|
|
|
|
}
|
|
|
|
|
|
|
|
const Event = {
|
|
|
|
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}`
|
|
|
|
}
|
|
|
|
|
|
|
|
const ClassName = {
|
|
|
|
SHOW : 'show',
|
|
|
|
COLLAPSE : 'collapse',
|
|
|
|
COLLAPSING : 'collapsing',
|
|
|
|
COLLAPSED : 'collapsed'
|
|
|
|
}
|
|
|
|
|
|
|
|
const Dimension = {
|
|
|
|
WIDTH : 'width',
|
|
|
|
HEIGHT : 'height'
|
|
|
|
}
|
|
|
|
|
|
|
|
const Selector = {
|
|
|
|
ACTIVES : '.show, .collapsing',
|
|
|
|
DATA_TOGGLE : '[data-toggle="collapse"]'
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
class Collapse {
|
|
|
|
constructor(element, config) {
|
|
|
|
this._isTransitioning = false
|
|
|
|
this._element = element
|
|
|
|
this._config = this._getConfig(config)
|
2017-09-15 13:13:14 +02:00
|
|
|
this._triggerArray = Util.makeArray(SelectorEngine.find(
|
2018-09-26 10:39:01 +02:00
|
|
|
`[data-toggle="collapse"][href="#${element.id}"],` +
|
|
|
|
`[data-toggle="collapse"][data-target="#${element.id}"]`
|
|
|
|
))
|
2018-11-14 10:16:56 +01:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const toggleList = Util.makeArray(document.querySelectorAll(Selector.DATA_TOGGLE))
|
2018-09-26 10:39:01 +02:00
|
|
|
for (let i = 0, len = toggleList.length; i < len; i++) {
|
|
|
|
const elem = toggleList[i]
|
|
|
|
const selector = Util.getSelectorFromElement(elem)
|
2017-09-15 13:13:14 +02:00
|
|
|
const filterElement = Util.makeArray(document.querySelectorAll(selector))
|
2018-09-26 10:39:01 +02:00
|
|
|
.filter((foundElem) => foundElem === element)
|
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
if (selector !== null && filterElement.length) {
|
2018-09-26 10:39:01 +02:00
|
|
|
this._selector = selector
|
|
|
|
this._triggerArray.push(elem)
|
2017-06-14 13:21:49 +02:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2017-04-25 03:32:14 -04:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._parent = this._config.parent ? this._getParent() : null
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (!this._config.parent) {
|
|
|
|
this._addAriaAndCollapsedClass(this._element, this._triggerArray)
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (this._config.toggle) {
|
|
|
|
this.toggle()
|
2015-05-10 19:45:38 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-10 19:45:38 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
// Getters
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
static get VERSION() {
|
|
|
|
return VERSION
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
static get Default() {
|
|
|
|
return Default
|
|
|
|
}
|
2015-05-10 19:45:38 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
// Public
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
toggle() {
|
2017-09-15 13:13:14 +02:00
|
|
|
if (this._element.classList.contains(ClassName.SHOW)) {
|
2018-09-26 10:39:01 +02:00
|
|
|
this.hide()
|
|
|
|
} else {
|
|
|
|
this.show()
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
show() {
|
|
|
|
if (this._isTransitioning ||
|
2017-09-15 13:13:14 +02:00
|
|
|
this._element.classList.contains(ClassName.SHOW)) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
let actives
|
|
|
|
let activesData
|
2018-09-10 11:01:14 +02:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (this._parent) {
|
2017-09-15 13:13:14 +02:00
|
|
|
actives = Util.makeArray(this._parent.querySelectorAll(Selector.ACTIVES))
|
2018-09-26 10:39:01 +02:00
|
|
|
.filter((elem) => {
|
|
|
|
if (typeof this._config.parent === 'string') {
|
|
|
|
return elem.getAttribute('data-parent') === this._config.parent
|
|
|
|
}
|
2018-04-30 16:37:45 +02:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
return elem.classList.contains(ClassName.COLLAPSE)
|
|
|
|
})
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (actives.length === 0) {
|
|
|
|
actives = null
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (actives) {
|
2017-09-15 13:13:14 +02:00
|
|
|
activesData = Data.getData(actives[0], DATA_KEY)
|
2018-09-26 10:39:01 +02:00
|
|
|
if (activesData && activesData._isTransitioning) {
|
2015-05-09 23:00:59 -07:00
|
|
|
return
|
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const startEvent = EventHandler.trigger(this._element, Event.SHOW)
|
|
|
|
if (startEvent.defaultPrevented) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actives) {
|
2017-09-15 13:13:14 +02:00
|
|
|
actives.forEach((elemActive) => Collapse._collapseInterface(elemActive, 'hide'))
|
2018-09-26 10:39:01 +02:00
|
|
|
if (!activesData) {
|
2017-09-15 13:13:14 +02:00
|
|
|
Data.setData(actives[0], DATA_KEY, null)
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const dimension = this._getDimension()
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
this._element.classList.remove(ClassName.COLLAPSE)
|
|
|
|
this._element.classList.add(ClassName.COLLAPSING)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._element.style[dimension] = 0
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (this._triggerArray.length) {
|
2017-09-15 13:13:14 +02:00
|
|
|
this._triggerArray.forEach((element) => {
|
|
|
|
element.classList.remove(ClassName.COLLAPSED)
|
|
|
|
element.setAttribute('aria-expanded', true)
|
|
|
|
})
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setTransitioning(true)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const complete = () => {
|
2017-09-15 13:13:14 +02:00
|
|
|
this._element.classList.remove(ClassName.COLLAPSING)
|
|
|
|
this._element.classList.add(ClassName.COLLAPSE)
|
|
|
|
this._element.classList.add(ClassName.SHOW)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._element.style[dimension] = ''
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this.setTransitioning(false)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
EventHandler.trigger(this._element, Event.SHOWN)
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)
|
|
|
|
const scrollSize = `scroll${capitalizedDimension}`
|
|
|
|
const transitionDuration = Util.getTransitionDurationFromElement(this._element)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
EventHandler.one(this._element, Util.TRANSITION_END, complete)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
Util.emulateTransitionEnd(this._element, transitionDuration)
|
2018-09-26 10:39:01 +02:00
|
|
|
this._element.style[dimension] = `${this._element[scrollSize]}px`
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
hide() {
|
|
|
|
if (this._isTransitioning ||
|
2017-09-15 13:13:14 +02:00
|
|
|
!this._element.classList.contains(ClassName.SHOW)) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const startEvent = EventHandler.trigger(this._element, Event.HIDE)
|
|
|
|
if (startEvent.defaultPrevented) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const dimension = this._getDimension()
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
Util.reflow(this._element)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
this._element.classList.add(ClassName.COLLAPSING)
|
|
|
|
this._element.classList.remove(ClassName.COLLAPSE)
|
|
|
|
this._element.classList.remove(ClassName.SHOW)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const triggerArrayLength = this._triggerArray.length
|
|
|
|
if (triggerArrayLength > 0) {
|
|
|
|
for (let i = 0; i < triggerArrayLength; i++) {
|
|
|
|
const trigger = this._triggerArray[i]
|
|
|
|
const selector = Util.getSelectorFromElement(trigger)
|
2018-11-14 10:16:56 +01:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (selector !== null) {
|
2017-09-15 13:13:14 +02:00
|
|
|
const elem = SelectorEngine.findOne(selector)
|
|
|
|
|
|
|
|
if (!elem.classList.contains(ClassName.SHOW)) {
|
|
|
|
trigger.classList.add(ClassName.COLLAPSED)
|
|
|
|
trigger.setAttribute('aria-expanded', false)
|
2017-06-14 13:21:49 +02:00
|
|
|
}
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this.setTransitioning(true)
|
2018-03-13 09:59:20 +01:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const complete = () => {
|
|
|
|
this.setTransitioning(false)
|
2017-09-15 13:13:14 +02:00
|
|
|
this._element.classList.remove(ClassName.COLLAPSING)
|
|
|
|
this._element.classList.add(ClassName.COLLAPSE)
|
|
|
|
EventHandler.trigger(this._element, Event.HIDDEN)
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._element.style[dimension] = ''
|
|
|
|
const transitionDuration = Util.getTransitionDurationFromElement(this._element)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
EventHandler.one(this._element, Util.TRANSITION_END, complete)
|
|
|
|
Util.emulateTransitionEnd(this._element, transitionDuration)
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-13 12:48:34 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
setTransitioning(isTransitioning) {
|
|
|
|
this._isTransitioning = isTransitioning
|
|
|
|
}
|
2015-05-13 12:48:34 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
dispose() {
|
2017-09-15 13:13:14 +02:00
|
|
|
Data.removeData(this._element, DATA_KEY)
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
this._config = null
|
|
|
|
this._parent = null
|
|
|
|
this._element = null
|
|
|
|
this._triggerArray = null
|
|
|
|
this._isTransitioning = null
|
|
|
|
}
|
|
|
|
|
|
|
|
// Private
|
2015-05-13 14:46:50 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
_getConfig(config) {
|
|
|
|
config = {
|
|
|
|
...Default,
|
|
|
|
...config
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
config.toggle = Boolean(config.toggle) // Coerce string values
|
|
|
|
Util.typeCheckConfig(NAME, config, DefaultType)
|
|
|
|
return config
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
_getDimension() {
|
2017-09-15 13:13:14 +02:00
|
|
|
const hasWidth = this._element.classList.contains(Dimension.WIDTH)
|
2018-09-26 10:39:01 +02:00
|
|
|
return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT
|
|
|
|
}
|
2018-09-10 11:01:14 +02:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
_getParent() {
|
|
|
|
let parent
|
2017-09-25 12:41:54 +02:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
if (Util.isElement(this._config.parent)) {
|
|
|
|
parent = this._config.parent
|
|
|
|
|
|
|
|
// It's a jQuery object
|
|
|
|
if (typeof this._config.parent.jquery !== 'undefined') {
|
|
|
|
parent = this._config.parent[0]
|
2017-09-25 12:41:54 +02:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
} else {
|
2017-09-15 13:13:14 +02:00
|
|
|
parent = SelectorEngine.findOne(this._config.parent)
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2017-09-25 12:41:54 +02:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
const selector =
|
|
|
|
`[data-toggle="collapse"][data-parent="${this._config.parent}"]`
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const elements = Util.makeArray(SelectorEngine.find(selector, parent))
|
|
|
|
elements.forEach((element) => {
|
2018-09-26 10:39:01 +02:00
|
|
|
this._addAriaAndCollapsedClass(
|
|
|
|
Collapse._getTargetFromElement(element),
|
|
|
|
[element]
|
|
|
|
)
|
|
|
|
})
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
return parent
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
_addAriaAndCollapsedClass(element, triggerArray) {
|
2017-09-15 13:13:14 +02:00
|
|
|
if (element) {
|
|
|
|
const isOpen = element.classList.contains(ClassName.SHOW)
|
|
|
|
|
|
|
|
if (triggerArray.length) {
|
|
|
|
triggerArray.forEach((elem) => {
|
|
|
|
if (!isOpen) {
|
|
|
|
elem.classList.add(ClassName.COLLAPSED)
|
|
|
|
} else {
|
|
|
|
elem.classList.remove(ClassName.COLLAPSED)
|
|
|
|
}
|
|
|
|
elem.setAttribute('aria-expanded', isOpen)
|
|
|
|
})
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
// Static
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
static _getTargetFromElement(element) {
|
|
|
|
const selector = Util.getSelectorFromElement(element)
|
|
|
|
return selector ? document.querySelector(selector) : null
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
static _collapseInterface(element, config) {
|
|
|
|
let data = Data.getData(element, DATA_KEY)
|
|
|
|
const _config = {
|
|
|
|
...Default,
|
|
|
|
...Util.getDataAttributes(element),
|
|
|
|
...typeof config === 'object' && config ? config : {}
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
if (!data && _config.toggle && /show|hide/.test(config)) {
|
|
|
|
_config.toggle = false
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
if (!data) {
|
|
|
|
data = new Collapse(element, _config)
|
|
|
|
Data.setData(element, DATA_KEY, data)
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
if (typeof config === 'string') {
|
|
|
|
if (typeof data[config] === 'undefined') {
|
|
|
|
throw new Error(`No method named "${config}"`)
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2017-09-15 13:13:14 +02:00
|
|
|
data[config]()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static _jQueryInterface(config) {
|
|
|
|
return this.each(function () {
|
|
|
|
Collapse._collapseInterface(this, config)
|
2018-09-26 10:39:01 +02:00
|
|
|
})
|
2015-05-09 23:00:59 -07:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Data Api implementation
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
EventHandler.on(document, Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
|
2018-09-26 10:39:01 +02:00
|
|
|
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
|
2017-09-15 13:13:14 +02:00
|
|
|
if (event.target.tagName === 'A') {
|
2018-09-26 10:39:01 +02:00
|
|
|
event.preventDefault()
|
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const triggerData = Util.getDataAttributes(this)
|
|
|
|
const selector = Util.getSelectorFromElement(this)
|
|
|
|
const selectorElements = Util.makeArray(SelectorEngine.find(selector))
|
|
|
|
|
|
|
|
selectorElements.forEach((element) => {
|
|
|
|
const data = Data.getData(element, DATA_KEY)
|
|
|
|
let config
|
|
|
|
if (data) {
|
|
|
|
// update parent attribute
|
|
|
|
if (data._parent === null && typeof triggerData.parent === 'string') {
|
|
|
|
data._config.parent = triggerData.parent
|
|
|
|
data._parent = data._getParent()
|
|
|
|
}
|
|
|
|
config = 'toggle'
|
|
|
|
} else {
|
|
|
|
config = triggerData
|
|
|
|
}
|
2018-11-14 10:16:56 +01:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
Collapse._collapseInterface(element, config)
|
2015-05-09 23:00:59 -07:00
|
|
|
})
|
2018-09-26 10:39:01 +02:00
|
|
|
})
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* jQuery
|
|
|
|
* ------------------------------------------------------------------------
|
2017-09-15 13:13:14 +02:00
|
|
|
* add .collapse to jQuery only if jQuery is present
|
2018-09-26 10:39:01 +02:00
|
|
|
*/
|
2015-05-09 23:00:59 -07:00
|
|
|
|
2017-09-15 13:13:14 +02:00
|
|
|
const $ = Util.jQuery
|
|
|
|
if (typeof $ !== 'undefined') {
|
|
|
|
const JQUERY_NO_CONFLICT = $.fn[NAME]
|
|
|
|
$.fn[NAME] = Collapse._jQueryInterface
|
|
|
|
$.fn[NAME].Constructor = Collapse
|
|
|
|
$.fn[NAME].noConflict = () => {
|
|
|
|
$.fn[NAME] = JQUERY_NO_CONFLICT
|
|
|
|
return Collapse._jQueryInterface
|
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-09 23:00:59 -07:00
|
|
|
|
|
|
|
export default Collapse
|