mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-11 18:02:28 +03:00
Initial approach on generic triggering
This commit is contained in:
@@ -5,6 +5,8 @@
|
|||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { enableMagicActions } from './src/dom/magic-actions'
|
||||||
|
|
||||||
export { default as Alert } from './src/alert'
|
export { default as Alert } from './src/alert'
|
||||||
export { default as Button } from './src/button'
|
export { default as Button } from './src/button'
|
||||||
export { default as Carousel } from './src/carousel'
|
export { default as Carousel } from './src/carousel'
|
||||||
@@ -17,3 +19,5 @@ export { default as ScrollSpy } from './src/scrollspy'
|
|||||||
export { default as Tab } from './src/tab'
|
export { default as Tab } from './src/tab'
|
||||||
export { default as Toast } from './src/toast'
|
export { default as Toast } from './src/toast'
|
||||||
export { default as Tooltip } from './src/tooltip'
|
export { default as Tooltip } from './src/tooltip'
|
||||||
|
|
||||||
|
enableMagicActions()
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import ScrollSpy from './src/scrollspy'
|
|||||||
import Tab from './src/tab'
|
import Tab from './src/tab'
|
||||||
import Toast from './src/toast'
|
import Toast from './src/toast'
|
||||||
import Tooltip from './src/tooltip'
|
import Tooltip from './src/tooltip'
|
||||||
|
import { enableMagicActions } from './src/dom/magic-actions'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Alert,
|
Alert,
|
||||||
@@ -32,3 +33,5 @@ export default {
|
|||||||
Toast,
|
Toast,
|
||||||
Tooltip
|
Tooltip
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enableMagicActions()
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
import { defineJQueryPlugin } from './util/index'
|
import { defineJQueryPlugin } from './util/index'
|
||||||
import EventHandler from './dom/event-handler'
|
import EventHandler from './dom/event-handler'
|
||||||
import BaseComponent from './base-component'
|
import BaseComponent from './base-component'
|
||||||
import { enableDismissTrigger } from './util/component-functions'
|
import { enableDismissTrigger } from './dom/magic-actions'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constants
|
* Constants
|
||||||
|
|||||||
@@ -0,0 +1,96 @@
|
|||||||
|
/**
|
||||||
|
* --------------------------------------------------------------------------
|
||||||
|
* Bootstrap (v5.1.3): util/component-functions.js
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||||
|
* --------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
import EventHandler from './event-handler'
|
||||||
|
import { getElementFromSelector, isDisabled } from '../util/index'
|
||||||
|
|
||||||
|
const parseAction = action => {
|
||||||
|
const split = action.split(':')
|
||||||
|
const pluginName = split[1]
|
||||||
|
return {
|
||||||
|
onEvent: split[0],
|
||||||
|
pluginName: pluginName.charAt(0).toUpperCase() + pluginName.slice(1),
|
||||||
|
method: split[2]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const supportedEvents = [
|
||||||
|
'keyup',
|
||||||
|
'keydown',
|
||||||
|
'mousedown',
|
||||||
|
'mouseup',
|
||||||
|
'click',
|
||||||
|
'mouseenter',
|
||||||
|
'mouseleave',
|
||||||
|
'click',
|
||||||
|
'focus'
|
||||||
|
]
|
||||||
|
|
||||||
|
const enableMagicActions = () => {
|
||||||
|
for (const eventName of supportedEvents) {
|
||||||
|
enableMagicActionForEvent(eventName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const enableMagicActionForEvent = onEvent => {
|
||||||
|
eventAction(onEvent, `[data-bs-act^="${onEvent}:"]`, data => {
|
||||||
|
const action = parseAction(data.event.target.getAttribute('data-bs-act'))
|
||||||
|
|
||||||
|
const plugin = window.bootstrap[action.pluginName] || null
|
||||||
|
if (!plugin) {
|
||||||
|
throw new TypeError(`You are trying to use plugin "${action.pluginName}", which it doesn't exist in our library`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const instance = plugin.getOrCreateInstance(data.target)
|
||||||
|
instance[action.method]()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const eventActionOnPlugin = (Plugin, onEvent, stringSelector, method, callback = null) => {
|
||||||
|
eventAction(`${onEvent}.${Plugin.NAME}`, stringSelector, data => {
|
||||||
|
const instance = Plugin.getOrCreateInstance(data.target)
|
||||||
|
if (typeof callback === 'function') {
|
||||||
|
callback({ ...data, instance })
|
||||||
|
}
|
||||||
|
|
||||||
|
instance[method]()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const eventAction = (onEvent, stringSelector, callback) => {
|
||||||
|
EventHandler.on(document, onEvent, stringSelector, event => {
|
||||||
|
const eventTarget = event.target
|
||||||
|
|
||||||
|
if (['A', 'AREA'].includes(eventTarget.tagName)) {
|
||||||
|
event.preventDefault()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isDisabled(eventTarget)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const target = getElementFromSelector(eventTarget) || eventTarget
|
||||||
|
callback({ target, event })
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const enableDismissTrigger = (component, method = 'hide') => {
|
||||||
|
const name = component.NAME
|
||||||
|
eventAction(`click.${name}`, `[data-bs-dismiss="${name}"]`, event => {
|
||||||
|
const target = getElementFromSelector(event.target) || event.target.closest(`.${name}`)
|
||||||
|
const instance = component.getOrCreateInstance(target)
|
||||||
|
|
||||||
|
// Method argument is left, for Alert and only, as it doesn't implement the 'hide' method
|
||||||
|
instance[method]()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
enableDismissTrigger,
|
||||||
|
enableMagicActions,
|
||||||
|
eventActionOnPlugin
|
||||||
|
}
|
||||||
+6
-22
@@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
defineJQueryPlugin,
|
defineJQueryPlugin,
|
||||||
getElementFromSelector,
|
|
||||||
isDisabled,
|
|
||||||
isVisible
|
isVisible
|
||||||
} from './util/index'
|
} from './util/index'
|
||||||
import ScrollBarHelper from './util/scrollbar'
|
import ScrollBarHelper from './util/scrollbar'
|
||||||
@@ -17,7 +15,7 @@ import BaseComponent from './base-component'
|
|||||||
import SelectorEngine from './dom/selector-engine'
|
import SelectorEngine from './dom/selector-engine'
|
||||||
import Backdrop from './util/backdrop'
|
import Backdrop from './util/backdrop'
|
||||||
import FocusTrap from './util/focustrap'
|
import FocusTrap from './util/focustrap'
|
||||||
import { enableDismissTrigger } from './util/component-functions'
|
import { enableDismissTrigger, eventActionOnPlugin } from './dom/magic-actions'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constants
|
* Constants
|
||||||
@@ -40,7 +38,6 @@ const EVENT_SHOW = `show${EVENT_KEY}`
|
|||||||
const EVENT_SHOWN = `shown${EVENT_KEY}`
|
const EVENT_SHOWN = `shown${EVENT_KEY}`
|
||||||
const EVENT_HIDE = `hide${EVENT_KEY}`
|
const EVENT_HIDE = `hide${EVENT_KEY}`
|
||||||
const EVENT_HIDDEN = `hidden${EVENT_KEY}`
|
const EVENT_HIDDEN = `hidden${EVENT_KEY}`
|
||||||
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
|
|
||||||
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
|
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
|
||||||
|
|
||||||
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="offcanvas"]'
|
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="offcanvas"]'
|
||||||
@@ -209,32 +206,19 @@ class Offcanvas extends BaseComponent {
|
|||||||
* Data API implementation
|
* Data API implementation
|
||||||
*/
|
*/
|
||||||
|
|
||||||
EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
|
eventActionOnPlugin(Offcanvas, 'click', SELECTOR_DATA_TOGGLE, 'toggle', data => {
|
||||||
const target = getElementFromSelector(this)
|
EventHandler.one(data.target, EVENT_HIDDEN, () => {
|
||||||
|
|
||||||
if (['A', 'AREA'].includes(this.tagName)) {
|
|
||||||
event.preventDefault()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isDisabled(this)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
EventHandler.one(target, EVENT_HIDDEN, () => {
|
|
||||||
// focus on trigger when it is closed
|
// focus on trigger when it is closed
|
||||||
if (isVisible(this)) {
|
if (isVisible(data.event.target)) {
|
||||||
this.focus()
|
data.event.target.focus()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// avoid conflict when clicking a toggler of an offcanvas, while another is open
|
// avoid conflict when clicking a toggler of an offcanvas, while another is open
|
||||||
const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR)
|
const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR)
|
||||||
if (alreadyOpen && alreadyOpen !== target) {
|
if (alreadyOpen && alreadyOpen !== data.target) {
|
||||||
Offcanvas.getInstance(alreadyOpen).hide()
|
Offcanvas.getInstance(alreadyOpen).hide()
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = Offcanvas.getOrCreateInstance(target)
|
|
||||||
data.toggle(this)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
EventHandler.on(window, EVENT_LOAD_DATA_API, () => {
|
EventHandler.on(window, EVENT_LOAD_DATA_API, () => {
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
import { defineJQueryPlugin, reflow } from './util/index'
|
import { defineJQueryPlugin, reflow } from './util/index'
|
||||||
import EventHandler from './dom/event-handler'
|
import EventHandler from './dom/event-handler'
|
||||||
import BaseComponent from './base-component'
|
import BaseComponent from './base-component'
|
||||||
import { enableDismissTrigger } from './util/component-functions'
|
import { enableDismissTrigger } from './dom/magic-actions'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constants
|
* Constants
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
/**
|
|
||||||
* --------------------------------------------------------------------------
|
|
||||||
* Bootstrap (v5.1.3): util/component-functions.js
|
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
||||||
* --------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
import EventHandler from '../dom/event-handler'
|
|
||||||
import { getElementFromSelector, isDisabled } from './index'
|
|
||||||
|
|
||||||
const enableDismissTrigger = (component, method = 'hide') => {
|
|
||||||
const clickEvent = `click.dismiss${component.EVENT_KEY}`
|
|
||||||
const name = component.NAME
|
|
||||||
|
|
||||||
EventHandler.on(document, clickEvent, `[data-bs-dismiss="${name}"]`, function (event) {
|
|
||||||
if (['A', 'AREA'].includes(this.tagName)) {
|
|
||||||
event.preventDefault()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isDisabled(this)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const target = getElementFromSelector(this) || this.closest(`.${name}`)
|
|
||||||
const instance = component.getOrCreateInstance(target)
|
|
||||||
|
|
||||||
// Method argument is left, for Alert and only, as it doesn't implement the 'hide' method
|
|
||||||
instance[method]()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
export {
|
|
||||||
enableDismissTrigger
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
/* Test helpers */
|
/* Test helpers */
|
||||||
|
|
||||||
import { clearFixture, createEvent, getFixture } from '../../helpers/fixture'
|
import { clearFixture, createEvent, getFixture } from '../../helpers/fixture'
|
||||||
import { enableDismissTrigger } from '../../../src/util/component-functions'
|
|
||||||
import BaseComponent from '../../../src/base-component'
|
import BaseComponent from '../../../src/base-component'
|
||||||
|
import { enableDismissTrigger } from '../../../src/dom/magic-actions'
|
||||||
|
|
||||||
class DummyClass2 extends BaseComponent {
|
class DummyClass2 extends BaseComponent {
|
||||||
static get NAME() {
|
static get NAME() {
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ toc: true
|
|||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
||||||
|
<div class="alert alert-primary" data-bs-act="click:alert:close">Working example. Click on it</div>
|
||||||
|
<div class="alert alert-danger" data-bs-act="click:kalert:close">NOT working example. Click on it</div>
|
||||||
Alerts are available for any length of text, as well as an optional close button. For proper styling, use one of the eight **required** contextual classes (e.g., `.alert-success`). For inline dismissal, use the [alerts JavaScript plugin](#dismissing).
|
Alerts are available for any length of text, as well as an optional close button. For proper styling, use one of the eight **required** contextual classes (e.g., `.alert-success`). For inline dismissal, use the [alerts JavaScript plugin](#dismissing).
|
||||||
|
|
||||||
{{< example >}}
|
{{< example >}}
|
||||||
|
|||||||
Reference in New Issue
Block a user