1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-10-03 16:51:54 +02:00

Refactor util plugin and some tests

This commit is contained in:
Johann-S
2018-09-14 14:27:30 +02:00
committed by XhmikosR
parent 19b836c907
commit a2f1d79045
12 changed files with 458 additions and 448 deletions

View File

@@ -8,93 +8,93 @@ import Util from '../util'
* --------------------------------------------------------------------------
*/
const SelectorEngine = (() => {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
const closest = Polyfill.closest
const find = Polyfill.find
const findOne = Polyfill.findOne
const closest = Polyfill.closest
const matchesFn = Polyfill.matches
const find = Polyfill.find
const findOne = Polyfill.findOne
const nodeText = 3
return {
matches(element, selector) {
return element.matches(selector)
},
const SelectorEngine = {
matches(element, selector) {
return matchesFn.call(element, selector)
},
find(selector, element = document.documentElement) {
if (typeof selector !== 'string') {
return null
}
return find.call(element, selector)
},
findOne(selector, element = document.documentElement) {
if (typeof selector !== 'string') {
return null
}
return findOne.call(element, selector)
},
children(element, selector) {
if (typeof selector !== 'string') {
return null
}
const children = Util.makeArray(element.children)
return children.filter((child) => this.matches(child, selector))
},
parents(element, selector) {
if (typeof selector !== 'string') {
return null
}
const parents = []
let ancestor = element.parentNode
while (ancestor && ancestor.nodeType === Node.ELEMENT_NODE) {
if (ancestor.matches(selector)) {
parents.push(ancestor)
}
ancestor = ancestor.parentNode
}
return parents
},
closest(element, selector) {
if (typeof selector !== 'string') {
return null
}
return closest(element, selector)
},
prev(element, selector) {
if (typeof selector !== 'string') {
return null
}
const siblings = []
let previous = element.previousSibling
while (previous) {
if (previous.matches(selector)) {
siblings.push(previous)
}
previous = previous.previousSibling
}
return siblings
find(selector, element = document.documentElement) {
if (typeof selector !== 'string') {
return null
}
return find.call(element, selector)
},
findOne(selector, element = document.documentElement) {
if (typeof selector !== 'string') {
return null
}
return findOne.call(element, selector)
},
children(element, selector) {
if (typeof selector !== 'string') {
return null
}
const children = Util.makeArray(element.children)
return children.filter((child) => this.matches(child, selector))
},
parents(element, selector) {
if (typeof selector !== 'string') {
return null
}
const parents = []
let ancestor = element.parentNode
while (ancestor && ancestor.nodeType === Node.ELEMENT_NODE && ancestor.nodeType !== nodeText) {
if (this.matches(ancestor, selector)) {
parents.push(ancestor)
}
ancestor = ancestor.parentNode
}
return parents
},
closest(element, selector) {
if (typeof selector !== 'string') {
return null
}
return closest(element, selector)
},
prev(element, selector) {
if (typeof selector !== 'string') {
return null
}
const siblings = []
let previous = element.previousSibling
while (previous && previous.nodeType === Node.ELEMENT_NODE && previous.nodeType !== nodeText) {
if (this.matches(previous, selector)) {
siblings.push(previous)
}
previous = previous.previousSibling
}
return siblings
}
})()
}
export default SelectorEngine