Changes to Alert component to match the others (#33402)

Alert.js: Refactor code to match the other components
* Use this._element
* Remove handleDismiss method and keep its functionality on event
* Change JqueryInterface to be more generic
* Correct docs to be aligned with code, and add undocumented functionality
* Update alerts.md

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
GeoSot 2021-06-28 16:34:47 +03:00 committed by GitHub
parent 45d26de728
commit 70dd7f6ff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 67 deletions

View File

@ -7,7 +7,8 @@
import { import {
defineJQueryPlugin, defineJQueryPlugin,
getElementFromSelector getElementFromSelector,
isDisabled
} from './util/index' } 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'
@ -48,38 +49,24 @@ class Alert extends BaseComponent {
// Public // Public
close(element) { close() {
const rootElement = element ? this._getRootElement(element) : this._element const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE)
const customEvent = this._triggerCloseEvent(rootElement)
if (customEvent === null || customEvent.defaultPrevented) { if (closeEvent.defaultPrevented) {
return return
} }
this._removeElement(rootElement) this._element.classList.remove(CLASS_NAME_SHOW)
const isAnimated = this._element.classList.contains(CLASS_NAME_FADE)
this._queueCallback(() => this._destroyElement(), this._element, isAnimated)
} }
// Private // Private
_destroyElement() {
_getRootElement(element) { this._element.remove()
return getElementFromSelector(element) || element.closest(`.${CLASS_NAME_ALERT}`) EventHandler.trigger(this._element, EVENT_CLOSED)
} this.dispose()
_triggerCloseEvent(element) {
return EventHandler.trigger(element, EVENT_CLOSE)
}
_removeElement(element) {
element.classList.remove(CLASS_NAME_SHOW)
const isAnimated = element.classList.contains(CLASS_NAME_FADE)
this._queueCallback(() => this._destroyElement(element), element, isAnimated)
}
_destroyElement(element) {
element.remove()
EventHandler.trigger(element, EVENT_CLOSED)
} }
// Static // Static
@ -88,21 +75,17 @@ class Alert extends BaseComponent {
return this.each(function () { return this.each(function () {
const data = Alert.getOrCreateInstance(this) const data = Alert.getOrCreateInstance(this)
if (config === 'close') { if (typeof config !== 'string') {
data[config](this) return
} }
if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
throw new TypeError(`No method named "${config}"`)
}
data[config](this)
}) })
} }
static handleDismiss(alertInstance) {
return function (event) {
if (event) {
event.preventDefault()
}
alertInstance.close(this)
}
}
} }
/** /**
@ -111,7 +94,19 @@ class Alert extends BaseComponent {
* ------------------------------------------------------------------------ * ------------------------------------------------------------------------
*/ */
EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DISMISS, Alert.handleDismiss(new Alert())) EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DISMISS, function (event) {
if (['A', 'AREA'].includes(this.tagName)) {
event.preventDefault()
}
if (isDisabled(this)) {
return
}
const target = getElementFromSelector(this) || this.closest(`.${CLASS_NAME_ALERT}`)
const alert = Alert.getOrCreateInstance(target)
alert.close()
})
/** /**
* ------------------------------------------------------------------------ * ------------------------------------------------------------------------

View File

@ -2,7 +2,7 @@ import Alert from '../../src/alert'
import { getTransitionDurationFromElement } from '../../src/util/index' import { getTransitionDurationFromElement } from '../../src/util/index'
/** Test helpers */ /** Test helpers */
import { getFixture, clearFixture, jQueryMock } from '../helpers/fixture' import { clearFixture, getFixture, jQueryMock } from '../helpers/fixture'
describe('Alert', () => { describe('Alert', () => {
let fixtureEl let fixtureEl
@ -102,25 +102,20 @@ describe('Alert', () => {
it('should not remove alert if close event is prevented', done => { it('should not remove alert if close event is prevented', done => {
fixtureEl.innerHTML = '<div class="alert"></div>' fixtureEl.innerHTML = '<div class="alert"></div>'
const alertEl = document.querySelector('.alert') const getAlert = () => document.querySelector('.alert')
const alertEl = getAlert()
const alert = new Alert(alertEl) const alert = new Alert(alertEl)
const endTest = () => {
setTimeout(() => {
expect(alert._removeElement).not.toHaveBeenCalled()
done()
}, 10)
}
spyOn(alert, '_removeElement')
alertEl.addEventListener('close.bs.alert', event => { alertEl.addEventListener('close.bs.alert', event => {
event.preventDefault() event.preventDefault()
endTest() setTimeout(() => {
expect(getAlert()).not.toBeNull()
done()
}, 10)
}) })
alertEl.addEventListener('closed.bs.alert', () => { alertEl.addEventListener('closed.bs.alert', () => {
endTest() throw new Error('should not fire closed event')
}) })
alert.close() alert.close()
@ -167,9 +162,9 @@ describe('Alert', () => {
jQueryMock.fn.alert = Alert.jQueryInterface jQueryMock.fn.alert = Alert.jQueryInterface
jQueryMock.elements = [alertEl] jQueryMock.elements = [alertEl]
expect(Alert.getInstance(alertEl)).toBeNull()
jQueryMock.fn.alert.call(jQueryMock, 'close') jQueryMock.fn.alert.call(jQueryMock, 'close')
expect(Alert.getInstance(alertEl)).not.toBeNull()
expect(fixtureEl.querySelector('.alert')).toBeNull() expect(fixtureEl.querySelector('.alert')).toBeNull()
}) })

View File

@ -147,35 +147,39 @@ Loop that generates the modifier classes with the `alert-variant()` mixin.
## JavaScript behavior ## JavaScript behavior
### Triggers ### Initialize
Enable dismissal of an alert via JavaScript: Initialize elements as alerts
```js ```js
var alertList = document.querySelectorAll('.alert') var alertList = document.querySelectorAll('.alert')
alertList.forEach(function (alert) { var alerts = [].slice.call(alertList).map(function (element) {
new bootstrap.Alert(alert) return new bootstrap.Alert(element)
}) })
``` ```
{{< callout info >}}
For the sole purpose of dismissing an alert, it isn't necessary to initialize the component manually via the JS API. By making use of `data-bs-dismiss="alert"`, the component will be initialized automatically and properly dismissed.
Or with `data` attributes on a button **within the alert**, as demonstrated above: See the [triggers](#triggers) section for more details.
{{< /callout >}}
### Triggers
Dismissal can be achieved with `data` attributes on a button **within the alert** as demonstrated above:
```html ```html
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
``` ```
Note that closing an alert will remove it from the DOM. or on a button **outside the alert** using the `data-bs-target` as demonstrated above:
### Methods ```html
<button type="button" class="btn-close" data-bs-dismiss="alert" data-bs-target="#my-alert" aria-label="Close"></button>
You can create an alert instance with the alert constructor, for example:
```js
var myAlert = document.getElementById('myAlert')
var bsAlert = new bootstrap.Alert(myAlert)
``` ```
This makes an alert listen for click events on descendant elements which have the `data-bs-dismiss="alert"` attribute. (Not necessary when using the data-api's auto-initialization.) **Note that closing an alert will remove it from the DOM.**
### Methods
<table class="table"> <table class="table">
<thead> <thead>