mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
collapse: extract duplicate code to a function
This commit is contained in:
parent
99f6cf509d
commit
1eea132866
@ -8,8 +8,8 @@
|
||||
import {
|
||||
defineJQueryPlugin,
|
||||
getElement,
|
||||
getSelectorFromElement,
|
||||
getElementFromSelector,
|
||||
getSelectorFromElement,
|
||||
reflow,
|
||||
typeCheckConfig
|
||||
} from './util/index'
|
||||
@ -120,9 +120,7 @@ class Collapse extends BaseComponent {
|
||||
let activesData
|
||||
|
||||
if (this._config.parent) {
|
||||
const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent)
|
||||
// remove children if greater depth
|
||||
actives = SelectorEngine.find(SELECTOR_ACTIVES, this._config.parent).filter(elem => !children.includes(elem))
|
||||
actives = this._getFirstLevelChildren(SELECTOR_ACTIVES)
|
||||
}
|
||||
|
||||
const container = SelectorEngine.findOne(this._selector)
|
||||
@ -245,10 +243,9 @@ class Collapse extends BaseComponent {
|
||||
return
|
||||
}
|
||||
|
||||
const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent)
|
||||
const elements = SelectorEngine.find(SELECTOR_DATA_TOGGLE, this._config.parent).filter(elem => !children.includes(elem))
|
||||
const children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE)
|
||||
|
||||
for (const element of elements) {
|
||||
for (const element of children) {
|
||||
const selected = getElementFromSelector(element)
|
||||
|
||||
if (selected) {
|
||||
@ -257,6 +254,12 @@ class Collapse extends BaseComponent {
|
||||
}
|
||||
}
|
||||
|
||||
_getFirstLevelChildren(selector) {
|
||||
const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent)
|
||||
// remove children if greater depth
|
||||
return SelectorEngine.find(selector, this._config.parent).filter(elem => !children.includes(elem))
|
||||
}
|
||||
|
||||
_addAriaAndCollapsedClass(triggerArray, isOpen) {
|
||||
if (!triggerArray.length) {
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user