twbs--bootstrap/js/src/dropdown.js

538 lines
15 KiB
JavaScript
Raw Normal View History

2015-05-10 20:47:11 +00:00
/**
* --------------------------------------------------------------------------
2019-02-13 16:01:40 +00:00
* Bootstrap (v4.3.1): dropdown.js
2015-05-10 20:47:11 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
import {
2019-08-02 13:51:05 +00:00
getjQuery,
getElementFromSelector,
isElement,
isVisible,
makeArray,
noop,
typeCheckConfig
} from './util/index'
import Data from './dom/data'
import EventHandler from './dom/event-handler'
import Manipulator from './dom/manipulator'
import Popper from 'popper.js'
import SelectorEngine from './dom/selector-engine'
2018-09-26 08:39:01 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2015-05-10 20:47:11 +00:00
2019-02-26 11:20:34 +00:00
const NAME = 'dropdown'
const VERSION = '4.3.1'
const DATA_KEY = 'bs.dropdown'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
2019-02-26 11:20:34 +00:00
const ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key
const SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key
const TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key
const ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key
const ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key
2018-09-26 08:39:01 +00:00
const RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)
const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)
2018-09-26 08:39:01 +00:00
const EVENT_HIDE = `hide${EVENT_KEY}`
const EVENT_HIDDEN = `hidden${EVENT_KEY}`
const EVENT_SHOW = `show${EVENT_KEY}`
const EVENT_SHOWN = `shown${EVENT_KEY}`
const EVENT_CLICK = `click${EVENT_KEY}`
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
const EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY}${DATA_API_KEY}`
const EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY}${DATA_API_KEY}`
const CLASS_NAME_DISABLED = 'disabled'
const CLASS_NAME_SHOW = 'show'
const CLASS_NAME_DROPUP = 'dropup'
const CLASS_NAME_DROPRIGHT = 'dropright'
const CLASS_NAME_DROPLEFT = 'dropleft'
const CLASS_NAME_MENURIGHT = 'dropdown-menu-right'
const CLASS_NAME_NAVBAR = 'navbar'
const CLASS_NAME_POSITION_STATIC = 'position-static'
const SELECTOR_DATA_TOGGLE = '[data-toggle="dropdown"]'
const SELECTOR_FORM_CHILD = '.dropdown form'
const SELECTOR_MENU = '.dropdown-menu'
const SELECTOR_NAVBAR_NAV = '.navbar-nav'
const SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'
const PLACEMENT_TOP = 'top-start'
const PLACEMENT_TOPEND = 'top-end'
const PLACEMENT_BOTTOM = 'bottom-start'
const PLACEMENT_BOTTOMEND = 'bottom-end'
const PLACEMENT_RIGHT = 'right-start'
const PLACEMENT_LEFT = 'left-start'
2018-09-26 08:39:01 +00:00
const Default = {
2019-02-26 11:20:34 +00:00
offset: 0,
flip: true,
boundary: 'scrollParent',
reference: 'toggle',
display: 'dynamic',
popperConfig: null
2018-09-26 08:39:01 +00:00
}
const DefaultType = {
2019-02-26 11:20:34 +00:00
offset: '(number|string|function)',
flip: 'boolean',
boundary: '(string|element)',
reference: '(string|element)',
display: 'string',
popperConfig: '(null|object)'
2018-09-26 08:39:01 +00:00
}
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
class Dropdown {
constructor(element, config) {
2019-02-26 11:20:34 +00:00
this._element = element
this._popper = null
this._config = this._getConfig(config)
this._menu = this._getMenuElement()
2018-09-26 08:39:01 +00:00
this._inNavbar = this._detectNavbar()
this._addEventListeners()
Data.setData(element, DATA_KEY, this)
2015-05-10 20:47:11 +00:00
}
2018-09-26 08:39:01 +00:00
// Getters
static get VERSION() {
return VERSION
2017-04-17 12:26:40 +00:00
}
2018-09-26 08:39:01 +00:00
static get Default() {
return Default
2017-04-14 09:25:53 +00:00
}
2018-09-26 08:39:01 +00:00
static get DefaultType() {
return DefaultType
2017-04-14 09:25:53 +00:00
}
2018-09-26 08:39:01 +00:00
// Public
toggle() {
if (this._element.disabled || this._element.classList.contains(CLASS_NAME_DISABLED)) {
2018-09-26 08:39:01 +00:00
return
2015-05-10 20:47:11 +00:00
}
const isActive = this._element.classList.contains(CLASS_NAME_SHOW)
2019-07-28 13:24:46 +00:00
Dropdown.clearMenus()
2018-09-26 08:39:01 +00:00
if (isActive) {
return
2017-04-14 09:25:53 +00:00
}
this.show()
}
show() {
if (this._element.disabled || this._element.classList.contains(CLASS_NAME_DISABLED) || this._menu.classList.contains(CLASS_NAME_SHOW)) {
return
}
const parent = Dropdown.getParentFromElement(this._element)
2018-09-26 08:39:01 +00:00
const relatedTarget = {
relatedTarget: this._element
2017-04-14 09:25:53 +00:00
}
const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, relatedTarget)
2017-04-14 09:25:53 +00:00
2017-09-26 07:09:40 +00:00
if (showEvent.defaultPrevented) {
2018-09-26 08:39:01 +00:00
return
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
// Disable totally Popper.js for Dropdown in Navbar
if (!this._inNavbar) {
if (typeof Popper === 'undefined') {
throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org)')
2015-05-10 20:47:11 +00:00
}
2018-09-26 08:39:01 +00:00
let referenceElement = this._element
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
if (this._config.reference === 'parent') {
referenceElement = parent
} else if (isElement(this._config.reference)) {
2018-09-26 08:39:01 +00:00
referenceElement = this._config.reference
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
// Check if it's jQuery element
if (typeof this._config.reference.jquery !== 'undefined') {
referenceElement = this._config.reference[0]
}
}
2018-09-26 08:39:01 +00:00
// If boundary is not `scrollParent`, then set position to `static`
// to allow the menu to "escape" the scroll parent's boundaries
// https://github.com/twbs/bootstrap/issues/24251
if (this._config.boundary !== 'scrollParent') {
parent.classList.add(CLASS_NAME_POSITION_STATIC)
}
2019-02-26 11:20:34 +00:00
2018-09-26 08:39:01 +00:00
this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())
2015-05-10 20:47:11 +00:00
}
2018-09-26 08:39:01 +00:00
// If this is a touch-enabled device we add extra
// empty mouseover listeners to the body's immediate children;
// only needed because of broken event delegation on iOS
// https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
if ('ontouchstart' in document.documentElement &&
!makeArray(SelectorEngine.closest(parent, SELECTOR_NAVBAR_NAV)).length) {
makeArray(document.body.children)
2019-02-26 11:20:34 +00:00
.forEach(elem => EventHandler.on(elem, 'mouseover', null, noop()))
2015-05-13 19:48:34 +00:00
}
2018-09-26 08:39:01 +00:00
this._element.focus()
this._element.setAttribute('aria-expanded', true)
2015-05-13 19:48:34 +00:00
Manipulator.toggleClass(this._menu, CLASS_NAME_SHOW)
Manipulator.toggleClass(this._element, CLASS_NAME_SHOW)
EventHandler.trigger(parent, EVENT_SHOWN, relatedTarget)
2018-09-26 08:39:01 +00:00
}
2015-05-13 19:48:34 +00:00
hide() {
if (this._element.disabled || this._element.classList.contains(CLASS_NAME_DISABLED) || !this._menu.classList.contains(CLASS_NAME_SHOW)) {
return
}
2019-07-28 13:24:46 +00:00
const parent = Dropdown.getParentFromElement(this._element)
const relatedTarget = {
relatedTarget: this._element
}
const hideEvent = EventHandler.trigger(parent, EVENT_HIDE, relatedTarget)
2017-09-26 07:09:40 +00:00
if (hideEvent.defaultPrevented) {
return
}
if (this._popper) {
this._popper.destroy()
}
Manipulator.toggleClass(this._menu, CLASS_NAME_SHOW)
Manipulator.toggleClass(this._element, CLASS_NAME_SHOW)
EventHandler.trigger(parent, EVENT_HIDDEN, relatedTarget)
}
2018-09-26 08:39:01 +00:00
dispose() {
2017-09-26 07:09:40 +00:00
Data.removeData(this._element, DATA_KEY)
EventHandler.off(this._element, EVENT_KEY)
2018-09-26 08:39:01 +00:00
this._element = null
this._menu = null
if (this._popper) {
2018-09-26 08:39:01 +00:00
this._popper.destroy()
this._popper = null
2015-05-13 19:48:34 +00:00
}
2018-09-26 08:39:01 +00:00
}
2015-05-13 19:48:34 +00:00
2018-09-26 08:39:01 +00:00
update() {
this._inNavbar = this._detectNavbar()
if (this._popper) {
2018-09-26 08:39:01 +00:00
this._popper.scheduleUpdate()
}
}
2017-04-14 09:25:53 +00:00
2018-09-26 08:39:01 +00:00
// Private
_addEventListeners() {
EventHandler.on(this._element, EVENT_CLICK, event => {
2018-09-26 08:39:01 +00:00
event.preventDefault()
event.stopPropagation()
this.toggle()
})
}
2017-04-14 09:25:53 +00:00
2018-09-26 08:39:01 +00:00
_getConfig(config) {
config = {
...this.constructor.Default,
...Manipulator.getDataAttributes(this._element),
2018-09-26 08:39:01 +00:00
...config
2017-04-14 09:25:53 +00:00
}
typeCheckConfig(
2018-09-26 08:39:01 +00:00
NAME,
config,
this.constructor.DefaultType
)
return config
}
_getMenuElement() {
return SelectorEngine.next(this._element, SELECTOR_MENU)[0]
2018-09-26 08:39:01 +00:00
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
_getPlacement() {
2017-09-26 07:09:40 +00:00
const parentDropdown = this._element.parentNode
let placement = PLACEMENT_BOTTOM
2018-09-26 08:39:01 +00:00
// Handle dropup
if (parentDropdown.classList.contains(CLASS_NAME_DROPUP)) {
placement = PLACEMENT_TOP
if (this._menu.classList.contains(CLASS_NAME_MENURIGHT)) {
placement = PLACEMENT_TOPEND
}
} else if (parentDropdown.classList.contains(CLASS_NAME_DROPRIGHT)) {
placement = PLACEMENT_RIGHT
} else if (parentDropdown.classList.contains(CLASS_NAME_DROPLEFT)) {
placement = PLACEMENT_LEFT
} else if (this._menu.classList.contains(CLASS_NAME_MENURIGHT)) {
placement = PLACEMENT_BOTTOMEND
}
2019-02-26 11:20:34 +00:00
2018-09-26 08:39:01 +00:00
return placement
}
2018-09-26 08:39:01 +00:00
_detectNavbar() {
return Boolean(SelectorEngine.closest(this._element, `.${CLASS_NAME_NAVBAR}`))
2018-09-26 08:39:01 +00:00
}
_getOffset() {
const offset = {}
2018-09-26 08:39:01 +00:00
if (typeof this._config.offset === 'function') {
2019-02-26 11:20:34 +00:00
offset.fn = data => {
2018-09-26 08:39:01 +00:00
data.offsets = {
...data.offsets,
...this._config.offset(data.offsets, this._element) || {}
}
2018-09-26 08:39:01 +00:00
return data
}
2018-09-26 08:39:01 +00:00
} else {
offset.offset = this._config.offset
2018-09-26 08:39:01 +00:00
}
return offset
}
_getPopperConfig() {
const popperConfig = {
2018-09-26 08:39:01 +00:00
placement: this._getPlacement(),
modifiers: {
offset: this._getOffset(),
2018-09-26 08:39:01 +00:00
flip: {
enabled: this._config.flip
},
preventOverflow: {
boundariesElement: this._config.boundary
}
}
2018-09-26 08:39:01 +00:00
}
2018-09-26 08:39:01 +00:00
// Disable Popper.js if we have a static display
if (this._config.display === 'static') {
popperConfig.modifiers.applyStyle = {
enabled: false
}
}
return {
...popperConfig,
...this._config.popperConfig
}
2018-09-26 08:39:01 +00:00
}
2018-09-26 08:39:01 +00:00
// Static
2015-05-10 20:47:11 +00:00
2019-07-28 13:24:46 +00:00
static dropdownInterface(element, config) {
2017-09-26 07:09:40 +00:00
let data = Data.getData(element, DATA_KEY)
const _config = typeof config === 'object' ? config : null
2015-05-10 20:47:11 +00:00
2017-09-26 07:09:40 +00:00
if (!data) {
data = new Dropdown(element, _config)
}
2015-05-10 20:47:11 +00:00
2017-09-26 07:09:40 +00:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2019-02-26 11:20:34 +00:00
throw new TypeError(`No method named "${config}"`)
2018-09-26 08:39:01 +00:00
}
2019-02-26 11:20:34 +00:00
2017-09-26 07:09:40 +00:00
data[config]()
}
}
2019-07-28 13:24:46 +00:00
static jQueryInterface(config) {
2017-09-26 07:09:40 +00:00
return this.each(function () {
2019-07-28 13:24:46 +00:00
Dropdown.dropdownInterface(this, config)
2018-09-26 08:39:01 +00:00
})
}
2019-07-28 13:24:46 +00:00
static clearMenus(event) {
2018-09-26 08:39:01 +00:00
if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||
(event.type === 'keyup' && event.which !== TAB_KEYCODE))) {
2018-09-26 08:39:01 +00:00
return
2015-05-10 20:47:11 +00:00
}
const toggles = makeArray(SelectorEngine.find(SELECTOR_DATA_TOGGLE))
2018-09-26 08:39:01 +00:00
for (let i = 0, len = toggles.length; i < len; i++) {
2019-07-28 13:24:46 +00:00
const parent = Dropdown.getParentFromElement(toggles[i])
2019-02-26 11:20:34 +00:00
const context = Data.getData(toggles[i], DATA_KEY)
2018-09-26 08:39:01 +00:00
const relatedTarget = {
relatedTarget: toggles[i]
2015-05-10 20:47:11 +00:00
}
2018-09-26 08:39:01 +00:00
if (event && event.type === 'click') {
relatedTarget.clickEvent = event
}
2018-09-26 08:39:01 +00:00
if (!context) {
continue
}
2017-04-14 09:25:53 +00:00
2018-09-26 08:39:01 +00:00
const dropdownMenu = context._menu
if (!toggles[i].classList.contains(CLASS_NAME_SHOW)) {
2018-09-26 08:39:01 +00:00
continue
}
2015-05-10 20:47:11 +00:00
if (event && ((event.type === 'click' &&
/input|textarea/i.test(event.target.tagName)) ||
(event.type === 'keyup' && event.which === TAB_KEYCODE)) &&
dropdownMenu.contains(event.target)) {
2018-09-26 08:39:01 +00:00
continue
}
2015-05-10 20:47:11 +00:00
const hideEvent = EventHandler.trigger(parent, EVENT_HIDE, relatedTarget)
2017-09-26 07:09:40 +00:00
if (hideEvent.defaultPrevented) {
2018-09-26 08:39:01 +00:00
continue
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
// If this is a touch-enabled device we remove the extra
// empty mouseover listeners we added for iOS support
if ('ontouchstart' in document.documentElement) {
makeArray(document.body.children)
2019-02-26 11:20:34 +00:00
.forEach(elem => EventHandler.off(elem, 'mouseover', null, noop()))
2018-09-26 08:39:01 +00:00
}
2018-09-26 08:39:01 +00:00
toggles[i].setAttribute('aria-expanded', 'false')
2015-05-10 20:47:11 +00:00
if (context._popper) {
context._popper.destroy()
}
dropdownMenu.classList.remove(CLASS_NAME_SHOW)
toggles[i].classList.remove(CLASS_NAME_SHOW)
EventHandler.trigger(parent, EVENT_HIDDEN, relatedTarget)
2015-05-10 20:47:11 +00:00
}
2018-09-26 08:39:01 +00:00
}
2015-05-10 20:47:11 +00:00
2019-07-28 13:24:46 +00:00
static getParentFromElement(element) {
return getElementFromSelector(element) || element.parentNode
2018-09-26 08:39:01 +00:00
}
2015-05-10 20:47:11 +00:00
2019-07-28 13:24:46 +00:00
static dataApiKeydownHandler(event) {
2018-09-26 08:39:01 +00:00
// If not input/textarea:
// - And not a key in REGEXP_KEYDOWN => not a dropdown command
// If input/textarea:
// - If space key => not a dropdown command
// - If key is other than escape
// - If key is not up or down => not a dropdown command
// - If trigger inside the menu => not a dropdown command
2019-02-26 11:20:34 +00:00
if (/input|textarea/i.test(event.target.tagName) ?
event.which === SPACE_KEYCODE || (event.which !== ESCAPE_KEYCODE &&
((event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE) ||
SelectorEngine.closest(event.target, SELECTOR_MENU))) :
2019-02-26 11:20:34 +00:00
!REGEXP_KEYDOWN.test(event.which)) {
2018-09-26 08:39:01 +00:00
return
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
event.preventDefault()
event.stopPropagation()
2015-05-10 20:47:11 +00:00
if (this.disabled || this.classList.contains(CLASS_NAME_DISABLED)) {
2018-09-26 08:39:01 +00:00
return
}
2015-05-10 20:47:11 +00:00
2019-07-28 13:24:46 +00:00
const parent = Dropdown.getParentFromElement(this)
const isActive = this.classList.contains(CLASS_NAME_SHOW)
2015-05-10 20:47:11 +00:00
if (event.which === ESCAPE_KEYCODE) {
const button = this.matches(SELECTOR_DATA_TOGGLE) ? this : SelectorEngine.prev(this, SELECTOR_DATA_TOGGLE)[0]
button.focus()
Dropdown.clearMenus()
return
}
2015-05-10 20:47:11 +00:00
if (!isActive || event.which === SPACE_KEYCODE) {
2019-07-28 13:24:46 +00:00
Dropdown.clearMenus()
2018-09-26 08:39:01 +00:00
return
}
2015-05-10 20:47:11 +00:00
const items = makeArray(SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, parent))
.filter(isVisible)
2015-05-10 20:47:11 +00:00
2017-09-26 07:09:40 +00:00
if (!items.length) {
2018-09-26 08:39:01 +00:00
return
}
2015-05-10 20:47:11 +00:00
let index = items.indexOf(event.target) || 0
2015-08-19 02:22:46 +00:00
2018-09-26 08:39:01 +00:00
if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up
index--
}
2015-08-19 02:22:46 +00:00
2018-09-26 08:39:01 +00:00
if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down
index++
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
items[index].focus()
2015-05-10 20:47:11 +00:00
}
2019-07-28 13:24:46 +00:00
static getInstance(element) {
return Data.getData(element, DATA_KEY)
}
2018-09-26 08:39:01 +00:00
}
2015-05-10 20:47:11 +00:00
2018-09-26 08:39:01 +00:00
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-10 20:47:11 +00:00
EventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE, Dropdown.dataApiKeydownHandler)
EventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown.dataApiKeydownHandler)
EventHandler.on(document, EVENT_CLICK_DATA_API, Dropdown.clearMenus)
EventHandler.on(document, EVENT_KEYUP_DATA_API, Dropdown.clearMenus)
EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
2017-09-26 07:09:40 +00:00
event.preventDefault()
event.stopPropagation()
2019-07-28 13:24:46 +00:00
Dropdown.dropdownInterface(this, 'toggle')
2017-09-26 07:09:40 +00:00
})
EventHandler
.on(document, EVENT_CLICK_DATA_API, SELECTOR_FORM_CHILD, e => e.stopPropagation())
2018-09-26 08:39:01 +00:00
2019-08-02 13:51:05 +00:00
const $ = getjQuery()
2018-09-26 08:39:01 +00:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2017-09-26 07:09:40 +00:00
* add .dropdown to jQuery only if jQuery is present
2018-09-26 08:39:01 +00:00
*/
2019-04-10 08:46:50 +00:00
/* istanbul ignore if */
2019-08-02 13:51:05 +00:00
if ($) {
2017-09-26 07:09:40 +00:00
const JQUERY_NO_CONFLICT = $.fn[NAME]
2019-07-28 13:24:46 +00:00
$.fn[NAME] = Dropdown.jQueryInterface
2019-02-26 11:20:34 +00:00
$.fn[NAME].Constructor = Dropdown
$.fn[NAME].noConflict = () => {
2017-09-26 07:09:40 +00:00
$.fn[NAME] = JQUERY_NO_CONFLICT
2019-07-28 13:24:46 +00:00
return Dropdown.jQueryInterface
2017-09-26 07:09:40 +00:00
}
2018-09-26 08:39:01 +00:00
}
2015-05-10 20:47:11 +00:00
export default Dropdown