0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-23 15:52:21 +01:00
Bootstrap/js/src/collapse.js

400 lines
10 KiB
JavaScript
Raw Normal View History

import $ from 'jquery'
2015-05-09 23:00:59 -07:00
import Util from './util'
/**
* --------------------------------------------------------------------------
2018-07-23 19:25:52 -07:00
* Bootstrap (v4.1.3): collapse.js
2015-05-09 23:00:59 -07:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
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'
const VERSION = '4.1.3'
const DATA_KEY = 'bs.collapse'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
const JQUERY_NO_CONFLICT = $.fn[NAME]
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)
this._triggerArray = $.makeArray(document.querySelectorAll(
`[data-toggle="collapse"][href="#${element.id}"],` +
`[data-toggle="collapse"][data-target="#${element.id}"]`
))
const toggleList = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))
for (let i = 0, len = toggleList.length; i < len; i++) {
const elem = toggleList[i]
const selector = Util.getSelectorFromElement(elem)
const filterElement = [].slice.call(document.querySelectorAll(selector))
.filter((foundElem) => foundElem === element)
if (selector !== null && filterElement.length > 0) {
this._selector = selector
this._triggerArray.push(elem)
}
2018-09-26 10:39:01 +02: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()
}
2018-09-26 10:39:01 +02: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
}
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() {
if ($(this._element).hasClass(ClassName.SHOW)) {
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 ||
$(this._element).hasClass(ClassName.SHOW)) {
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) {
actives = [].slice.call(this._parent.querySelectorAll(Selector.ACTIVES))
.filter((elem) => {
if (typeof this._config.parent === 'string') {
return elem.getAttribute('data-parent') === this._config.parent
}
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) {
activesData = $(actives).not(this._selector).data(DATA_KEY)
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
2018-09-26 10:39:01 +02:00
const startEvent = $.Event(Event.SHOW)
$(this._element).trigger(startEvent)
if (startEvent.isDefaultPrevented()) {
return
}
if (actives) {
Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide')
if (!activesData) {
$(actives).data(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
2018-09-26 10:39:01 +02:00
$(this._element)
.removeClass(ClassName.COLLAPSE)
.addClass(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) {
$(this._triggerArray)
.removeClass(ClassName.COLLAPSED)
.attr('aria-expanded', true)
}
this.setTransitioning(true)
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
const complete = () => {
$(this._element)
.removeClass(ClassName.COLLAPSING)
.addClass(ClassName.COLLAPSE)
.addClass(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
2018-09-26 10:39:01 +02:00
$(this._element).trigger(Event.SHOWN)
}
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
2018-09-26 10:39:01 +02:00
$(this._element)
.one(Util.TRANSITION_END, complete)
.emulateTransitionEnd(transitionDuration)
2015-05-09 23:00:59 -07:00
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 ||
!$(this._element).hasClass(ClassName.SHOW)) {
return
2015-05-09 23:00:59 -07:00
}
2018-09-26 10:39:01 +02:00
const startEvent = $.Event(Event.HIDE)
$(this._element).trigger(startEvent)
if (startEvent.isDefaultPrevented()) {
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
2018-09-26 10:39:01 +02:00
$(this._element)
.addClass(ClassName.COLLAPSING)
.removeClass(ClassName.COLLAPSE)
.removeClass(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)
if (selector !== null) {
const $elem = $([].slice.call(document.querySelectorAll(selector)))
if (!$elem.hasClass(ClassName.SHOW)) {
$(trigger).addClass(ClassName.COLLAPSED)
.attr('aria-expanded', false)
}
}
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)
2015-05-09 23:00:59 -07:00
$(this._element)
2018-09-26 10:39:01 +02:00
.removeClass(ClassName.COLLAPSING)
.addClass(ClassName.COLLAPSE)
.trigger(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
2018-09-26 10:39:01 +02:00
$(this._element)
.one(Util.TRANSITION_END, complete)
.emulateTransitionEnd(transitionDuration)
}
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() {
$.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() {
const hasWidth = $(this._element).hasClass(Dimension.WIDTH)
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
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]
}
2018-09-26 10:39:01 +02:00
} else {
parent = document.querySelector(this._config.parent)
}
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
2018-09-26 10:39:01 +02:00
const children = [].slice.call(parent.querySelectorAll(selector))
$(children).each((i, element) => {
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) {
const isOpen = $(element).hasClass(ClassName.SHOW)
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
if (triggerArray.length) {
$(triggerArray)
.toggleClass(ClassName.COLLAPSED, !isOpen)
.attr('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
2018-09-26 10:39:01 +02:00
static _jQueryInterface(config) {
return this.each(function () {
const $this = $(this)
let data = $this.data(DATA_KEY)
const _config = {
...Default,
...$this.data(),
...typeof config === 'object' && config ? config : {}
}
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
if (!data && _config.toggle && /show|hide/.test(config)) {
_config.toggle = false
}
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
if (!data) {
data = new Collapse(this, _config)
$this.data(DATA_KEY, data)
}
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError(`No method named "${config}"`)
2015-05-09 23:00:59 -07:00
}
2018-09-26 10:39:01 +02:00
data[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
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
// preventDefault only for <a> elements (which change the URL) not inside the collapsible element
if (event.currentTarget.tagName === 'A') {
event.preventDefault()
}
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
const $trigger = $(this)
const selector = Util.getSelectorFromElement(this)
const selectors = [].slice.call(document.querySelectorAll(selector))
$(selectors).each(function () {
const $target = $(this)
const data = $target.data(DATA_KEY)
const config = data ? 'toggle' : $trigger.data()
Collapse._jQueryInterface.call($target, 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
* ------------------------------------------------------------------------
*/
2015-05-09 23:00:59 -07:00
2018-09-26 10:39:01 +02:00
$.fn[NAME] = Collapse._jQueryInterface
$.fn[NAME].Constructor = Collapse
$.fn[NAME].noConflict = () => {
$.fn[NAME] = JQUERY_NO_CONFLICT
return Collapse._jQueryInterface
}
2015-05-09 23:00:59 -07:00
export default Collapse