2021-03-02 19:10:10 +02:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2021-05-05 22:32:12 +03:00
|
|
|
* Bootstrap (v5.0.0): offcanvas.js
|
2021-03-02 19:10:10 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {
|
|
|
|
defineJQueryPlugin,
|
|
|
|
getElementFromSelector,
|
2021-03-16 18:35:03 +02:00
|
|
|
isDisabled,
|
|
|
|
isVisible,
|
|
|
|
typeCheckConfig
|
2021-03-02 19:10:10 +02:00
|
|
|
} from './util/index'
|
|
|
|
import { hide as scrollBarHide, reset as scrollBarReset } from './util/scrollbar'
|
|
|
|
import Data from './dom/data'
|
|
|
|
import EventHandler from './dom/event-handler'
|
|
|
|
import BaseComponent from './base-component'
|
|
|
|
import SelectorEngine from './dom/selector-engine'
|
2021-03-16 18:35:03 +02:00
|
|
|
import Manipulator from './dom/manipulator'
|
2021-04-19 08:20:25 +03:00
|
|
|
import Backdrop from './util/backdrop'
|
2021-03-02 19:10:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
const NAME = 'offcanvas'
|
|
|
|
const DATA_KEY = 'bs.offcanvas'
|
|
|
|
const EVENT_KEY = `.${DATA_KEY}`
|
|
|
|
const DATA_API_KEY = '.data-api'
|
2021-03-23 08:22:59 +02:00
|
|
|
const EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`
|
2021-03-02 19:10:10 +02:00
|
|
|
const ESCAPE_KEY = 'Escape'
|
2021-03-16 18:35:03 +02:00
|
|
|
|
|
|
|
const Default = {
|
|
|
|
backdrop: true,
|
|
|
|
keyboard: true,
|
|
|
|
scroll: false
|
|
|
|
}
|
|
|
|
|
|
|
|
const DefaultType = {
|
|
|
|
backdrop: 'boolean',
|
|
|
|
keyboard: 'boolean',
|
|
|
|
scroll: 'boolean'
|
|
|
|
}
|
2021-03-02 19:10:10 +02:00
|
|
|
|
|
|
|
const CLASS_NAME_SHOW = 'show'
|
2021-03-23 08:22:59 +02:00
|
|
|
const OPEN_SELECTOR = '.offcanvas.show'
|
2021-03-02 19:10:10 +02:00
|
|
|
|
|
|
|
const EVENT_SHOW = `show${EVENT_KEY}`
|
|
|
|
const EVENT_SHOWN = `shown${EVENT_KEY}`
|
|
|
|
const EVENT_HIDE = `hide${EVENT_KEY}`
|
|
|
|
const EVENT_HIDDEN = `hidden${EVENT_KEY}`
|
|
|
|
const EVENT_FOCUSIN = `focusin${EVENT_KEY}`
|
|
|
|
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
|
|
|
|
const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`
|
2021-04-19 08:20:25 +03:00
|
|
|
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
|
2021-03-02 19:10:10 +02:00
|
|
|
|
|
|
|
const SELECTOR_DATA_DISMISS = '[data-bs-dismiss="offcanvas"]'
|
|
|
|
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="offcanvas"]'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2021-03-16 10:51:04 +05:30
|
|
|
class Offcanvas extends BaseComponent {
|
2021-03-16 18:35:03 +02:00
|
|
|
constructor(element, config) {
|
2021-03-02 19:10:10 +02:00
|
|
|
super(element)
|
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
this._config = this._getConfig(config)
|
2021-03-23 08:22:59 +02:00
|
|
|
this._isShown = false
|
2021-04-19 08:20:25 +03:00
|
|
|
this._backdrop = this._initializeBackDrop()
|
2021-03-02 19:10:10 +02:00
|
|
|
this._addEventListeners()
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
// Getters
|
|
|
|
|
|
|
|
static get Default() {
|
|
|
|
return Default
|
|
|
|
}
|
|
|
|
|
|
|
|
static get DATA_KEY() {
|
|
|
|
return DATA_KEY
|
|
|
|
}
|
|
|
|
|
2021-03-02 19:10:10 +02:00
|
|
|
// Public
|
|
|
|
|
|
|
|
toggle(relatedTarget) {
|
|
|
|
return this._isShown ? this.hide() : this.show(relatedTarget)
|
|
|
|
}
|
|
|
|
|
|
|
|
show(relatedTarget) {
|
|
|
|
if (this._isShown) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, { relatedTarget })
|
|
|
|
|
|
|
|
if (showEvent.defaultPrevented) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this._isShown = true
|
|
|
|
this._element.style.visibility = 'visible'
|
|
|
|
|
2021-04-19 08:20:25 +03:00
|
|
|
this._backdrop.show()
|
2021-03-02 19:10:10 +02:00
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
if (!this._config.scroll) {
|
2021-03-02 19:10:10 +02:00
|
|
|
scrollBarHide()
|
2021-04-20 08:32:52 +03:00
|
|
|
this._enforceFocusOnElement(this._element)
|
2021-03-02 19:10:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this._element.removeAttribute('aria-hidden')
|
|
|
|
this._element.setAttribute('aria-modal', true)
|
|
|
|
this._element.setAttribute('role', 'dialog')
|
|
|
|
this._element.classList.add(CLASS_NAME_SHOW)
|
|
|
|
|
|
|
|
const completeCallBack = () => {
|
|
|
|
EventHandler.trigger(this._element, EVENT_SHOWN, { relatedTarget })
|
|
|
|
}
|
|
|
|
|
2021-04-11 02:27:18 +03:00
|
|
|
this._queueCallback(completeCallBack, this._element, true)
|
2021-03-02 19:10:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hide() {
|
|
|
|
if (!this._isShown) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE)
|
|
|
|
|
|
|
|
if (hideEvent.defaultPrevented) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
EventHandler.off(document, EVENT_FOCUSIN)
|
|
|
|
this._element.blur()
|
|
|
|
this._isShown = false
|
|
|
|
this._element.classList.remove(CLASS_NAME_SHOW)
|
2021-04-19 08:20:25 +03:00
|
|
|
this._backdrop.hide()
|
2021-03-02 19:10:10 +02:00
|
|
|
|
|
|
|
const completeCallback = () => {
|
|
|
|
this._element.setAttribute('aria-hidden', true)
|
|
|
|
this._element.removeAttribute('aria-modal')
|
|
|
|
this._element.removeAttribute('role')
|
|
|
|
this._element.style.visibility = 'hidden'
|
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
if (!this._config.scroll) {
|
2021-03-02 19:10:10 +02:00
|
|
|
scrollBarReset()
|
|
|
|
}
|
|
|
|
|
|
|
|
EventHandler.trigger(this._element, EVENT_HIDDEN)
|
|
|
|
}
|
|
|
|
|
2021-04-11 02:27:18 +03:00
|
|
|
this._queueCallback(completeCallback, this._element, true)
|
2021-04-19 08:20:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
this._backdrop.dispose()
|
|
|
|
super.dispose()
|
|
|
|
EventHandler.off(document, EVENT_FOCUSIN)
|
2021-03-02 19:10:10 +02:00
|
|
|
}
|
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
// Private
|
|
|
|
|
|
|
|
_getConfig(config) {
|
|
|
|
config = {
|
|
|
|
...Default,
|
|
|
|
...Manipulator.getDataAttributes(this._element),
|
|
|
|
...(typeof config === 'object' ? config : {})
|
|
|
|
}
|
|
|
|
typeCheckConfig(NAME, config, DefaultType)
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
2021-04-19 08:20:25 +03:00
|
|
|
_initializeBackDrop() {
|
|
|
|
return new Backdrop({
|
|
|
|
isVisible: this._config.backdrop,
|
|
|
|
isAnimated: true,
|
|
|
|
rootElement: this._element.parentNode,
|
|
|
|
clickCallback: () => this.hide()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-02 19:10:10 +02:00
|
|
|
_enforceFocusOnElement(element) {
|
|
|
|
EventHandler.off(document, EVENT_FOCUSIN) // guard against infinite focus loop
|
|
|
|
EventHandler.on(document, EVENT_FOCUSIN, event => {
|
|
|
|
if (document !== event.target &&
|
|
|
|
element !== event.target &&
|
|
|
|
!element.contains(event.target)) {
|
|
|
|
element.focus()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
element.focus()
|
|
|
|
}
|
|
|
|
|
|
|
|
_addEventListeners() {
|
|
|
|
EventHandler.on(this._element, EVENT_CLICK_DISMISS, SELECTOR_DATA_DISMISS, () => this.hide())
|
|
|
|
|
2021-04-19 08:20:25 +03:00
|
|
|
EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => {
|
2021-03-16 18:35:03 +02:00
|
|
|
if (this._config.keyboard && event.key === ESCAPE_KEY) {
|
2021-03-02 19:10:10 +02:00
|
|
|
this.hide()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Static
|
|
|
|
|
|
|
|
static jQueryInterface(config) {
|
|
|
|
return this.each(function () {
|
2021-03-16 18:35:03 +02:00
|
|
|
const data = Data.get(this, DATA_KEY) || new Offcanvas(this, typeof config === 'object' ? config : {})
|
2021-03-02 19:10:10 +02:00
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
if (typeof config !== 'string') {
|
|
|
|
return
|
|
|
|
}
|
2021-03-02 19:10:10 +02:00
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
|
|
|
|
throw new TypeError(`No method named "${config}"`)
|
2021-03-02 19:10:10 +02:00
|
|
|
}
|
2021-03-16 18:35:03 +02:00
|
|
|
|
|
|
|
data[config](this)
|
2021-03-02 19:10:10 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Data Api implementation
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
|
|
|
|
const target = getElementFromSelector(this)
|
|
|
|
|
|
|
|
if (['A', 'AREA'].includes(this.tagName)) {
|
|
|
|
event.preventDefault()
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:35:03 +02:00
|
|
|
if (isDisabled(this)) {
|
2021-03-02 19:10:10 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
EventHandler.one(target, EVENT_HIDDEN, () => {
|
|
|
|
// focus on trigger when it is closed
|
|
|
|
if (isVisible(this)) {
|
|
|
|
this.focus()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// avoid conflict when clicking a toggler of an offcanvas, while another is open
|
2021-04-19 08:20:25 +03:00
|
|
|
const allReadyOpen = SelectorEngine.findOne(OPEN_SELECTOR)
|
2021-03-02 19:10:10 +02:00
|
|
|
if (allReadyOpen && allReadyOpen !== target) {
|
2021-04-19 08:20:25 +03:00
|
|
|
Offcanvas.getInstance(allReadyOpen).hide()
|
2021-03-02 19:10:10 +02:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:51:04 +05:30
|
|
|
const data = Data.get(target, DATA_KEY) || new Offcanvas(target)
|
2021-03-16 18:35:03 +02:00
|
|
|
|
2021-03-02 19:10:10 +02:00
|
|
|
data.toggle(this)
|
|
|
|
})
|
|
|
|
|
2021-03-23 08:22:59 +02:00
|
|
|
EventHandler.on(window, EVENT_LOAD_DATA_API, () => {
|
|
|
|
SelectorEngine.find(OPEN_SELECTOR).forEach(el => (Data.get(el, DATA_KEY) || new Offcanvas(el)).show())
|
|
|
|
})
|
|
|
|
|
2021-03-02 19:10:10 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* jQuery
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2021-03-16 10:51:04 +05:30
|
|
|
defineJQueryPlugin(NAME, Offcanvas)
|
2021-03-02 19:10:10 +02:00
|
|
|
|
2021-03-16 10:51:04 +05:30
|
|
|
export default Offcanvas
|