mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
Modal: handle click event from backdrop callback
This commit is contained in:
parent
aa650f0f1e
commit
28c9002573
@ -30,7 +30,6 @@ const EVENT_HIDDEN = `hidden${EVENT_KEY}`
|
|||||||
const EVENT_SHOW = `show${EVENT_KEY}`
|
const EVENT_SHOW = `show${EVENT_KEY}`
|
||||||
const EVENT_SHOWN = `shown${EVENT_KEY}`
|
const EVENT_SHOWN = `shown${EVENT_KEY}`
|
||||||
const EVENT_RESIZE = `resize${EVENT_KEY}`
|
const EVENT_RESIZE = `resize${EVENT_KEY}`
|
||||||
const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`
|
|
||||||
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
|
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
|
||||||
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
|
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
|
||||||
|
|
||||||
@ -115,7 +114,7 @@ class Modal extends BaseComponent {
|
|||||||
this._toggleEscapeEventListener(true)
|
this._toggleEscapeEventListener(true)
|
||||||
this._toggleResizeEventListener(true)
|
this._toggleResizeEventListener(true)
|
||||||
|
|
||||||
this._showBackdrop(() => this._showElement(relatedTarget))
|
this._backdrop.show(() => this._showElement(relatedTarget))
|
||||||
}
|
}
|
||||||
|
|
||||||
hide() {
|
hide() {
|
||||||
@ -158,9 +157,22 @@ class Modal extends BaseComponent {
|
|||||||
|
|
||||||
// Private
|
// Private
|
||||||
_initializeBackDrop() {
|
_initializeBackDrop() {
|
||||||
|
const clickCallback = () => {
|
||||||
|
if (this._config.backdrop === 'static') {
|
||||||
|
this._triggerBackdropTransition()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.hide()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 'static' option will be translated to true, and booleans will keep their value
|
||||||
|
const isVisible = Boolean(this._config.backdrop)
|
||||||
|
|
||||||
return new Backdrop({
|
return new Backdrop({
|
||||||
isVisible: Boolean(this._config.backdrop), // 'static' option will be translated to true, and booleans will keep their value
|
isVisible,
|
||||||
isAnimated: this._isAnimated()
|
isAnimated: this._isAnimated(),
|
||||||
|
clickCallback: isVisible ? clickCallback : null
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -250,25 +262,6 @@ class Modal extends BaseComponent {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
_showBackdrop(callback) {
|
|
||||||
EventHandler.on(this._element, EVENT_CLICK_DISMISS, event => {
|
|
||||||
if (event.target !== event.currentTarget) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this._config.backdrop === true) {
|
|
||||||
this.hide()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this._config.backdrop === 'static') {
|
|
||||||
this._triggerBackdropTransition()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
this._backdrop.show(callback)
|
|
||||||
}
|
|
||||||
|
|
||||||
_isAnimated() {
|
_isAnimated() {
|
||||||
return this._element.classList.contains(CLASS_NAME_FADE)
|
return this._element.classList.contains(CLASS_NAME_FADE)
|
||||||
}
|
}
|
||||||
|
@ -642,8 +642,11 @@ describe('Modal', () => {
|
|||||||
modalEl.addEventListener('shown.bs.modal', () => {
|
modalEl.addEventListener('shown.bs.modal', () => {
|
||||||
const spy = spyOn(modal, '_queueCallback').and.callThrough()
|
const spy = spyOn(modal, '_queueCallback').and.callThrough()
|
||||||
|
|
||||||
modalEl.click()
|
const mouseOverEvent = createEvent('mousedown')
|
||||||
modalEl.click()
|
const backdrop = document.querySelector('.modal-backdrop')
|
||||||
|
|
||||||
|
backdrop.dispatchEvent(mouseOverEvent)
|
||||||
|
backdrop.dispatchEvent(mouseOverEvent)
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
expect(spy).toHaveBeenCalledTimes(1)
|
expect(spy).toHaveBeenCalledTimes(1)
|
||||||
@ -710,9 +713,9 @@ describe('Modal', () => {
|
|||||||
|
|
||||||
const modalEl = fixtureEl.querySelector('.modal')
|
const modalEl = fixtureEl.querySelector('.modal')
|
||||||
const modal = new Modal(modalEl)
|
const modal = new Modal(modalEl)
|
||||||
|
|
||||||
modalEl.addEventListener('shown.bs.modal', () => {
|
modalEl.addEventListener('shown.bs.modal', () => {
|
||||||
modalEl.click()
|
const mouseOverEvent = createEvent('mousedown')
|
||||||
|
document.querySelector('.modal-backdrop').dispatchEvent(mouseOverEvent)
|
||||||
})
|
})
|
||||||
|
|
||||||
modalEl.addEventListener('hidden.bs.modal', () => {
|
modalEl.addEventListener('hidden.bs.modal', () => {
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
pointer-events: none;
|
||||||
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
||||||
// https://github.com/twbs/bootstrap/pull/10951.
|
// https://github.com/twbs/bootstrap/pull/10951.
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user