2015-05-07 12:48:22 -07:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2021-08-04 18:41:51 +03:00
|
|
|
* Bootstrap (v5.1.0): alert.js
|
2020-06-16 21:41:47 +03:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
2015-05-07 12:48:22 -07:00
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2021-07-28 17:39:32 +03:00
|
|
|
import { defineJQueryPlugin } from './util/index'
|
2019-10-02 11:43:54 +02:00
|
|
|
import EventHandler from './dom/event-handler'
|
2019-09-04 17:58:29 +03:00
|
|
|
import BaseComponent from './base-component'
|
2021-07-28 17:39:32 +03:00
|
|
|
import { enableDismissTrigger } from './util/component-functions'
|
2018-11-14 10:16:56 +01:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2019-02-26 13:20:34 +02:00
|
|
|
const NAME = 'alert'
|
|
|
|
const DATA_KEY = 'bs.alert'
|
|
|
|
const EVENT_KEY = `.${DATA_KEY}`
|
2018-09-26 10:39:01 +02:00
|
|
|
|
2020-03-07 11:31:42 +02:00
|
|
|
const EVENT_CLOSE = `close${EVENT_KEY}`
|
|
|
|
const EVENT_CLOSED = `closed${EVENT_KEY}`
|
2020-12-09 15:09:41 +02:00
|
|
|
const CLASS_NAME_FADE = 'fade'
|
|
|
|
const CLASS_NAME_SHOW = 'show'
|
2018-09-26 10:39:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2019-09-04 17:58:29 +03:00
|
|
|
class Alert extends BaseComponent {
|
2018-09-26 10:39:01 +02:00
|
|
|
// Getters
|
|
|
|
|
2021-05-11 10:49:30 +03:00
|
|
|
static get NAME() {
|
|
|
|
return NAME
|
2019-09-04 17:58:29 +03:00
|
|
|
}
|
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
// Public
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
close() {
|
|
|
|
const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE)
|
2015-05-10 19:45:38 -07:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
if (closeEvent.defaultPrevented) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return
|
2015-05-10 19:45:38 -07:00
|
|
|
}
|
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
this._element.classList.remove(CLASS_NAME_SHOW)
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
const isAnimated = this._element.classList.contains(CLASS_NAME_FADE)
|
|
|
|
this._queueCallback(() => this._destroyElement(), this._element, isAnimated)
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
// Private
|
|
|
|
_destroyElement() {
|
|
|
|
this._element.remove()
|
|
|
|
EventHandler.trigger(this._element, EVENT_CLOSED)
|
|
|
|
this.dispose()
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2018-03-13 09:59:20 +01:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
// Static
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2019-07-28 15:24:46 +02:00
|
|
|
static jQueryInterface(config) {
|
2018-09-26 10:39:01 +02:00
|
|
|
return this.each(function () {
|
2021-06-03 18:53:27 +03:00
|
|
|
const data = Alert.getOrCreateInstance(this)
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
if (typeof config !== 'string') {
|
|
|
|
return
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2018-06-07 21:43:04 +02:00
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
|
|
|
|
throw new TypeError(`No method named "${config}"`)
|
2018-07-25 11:29:16 +02:00
|
|
|
}
|
|
|
|
|
2021-06-28 16:34:47 +03:00
|
|
|
data[config](this)
|
|
|
|
})
|
2018-07-25 11:29:16 +02:00
|
|
|
}
|
2018-09-26 10:39:01 +02:00
|
|
|
}
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Data Api implementation
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2021-02-18 11:37:20 +01:00
|
|
|
|
2021-07-28 17:39:32 +03:00
|
|
|
enableDismissTrigger(Alert, 'close')
|
2018-09-26 10:39:01 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* jQuery
|
|
|
|
* ------------------------------------------------------------------------
|
2020-11-01 15:49:51 +02:00
|
|
|
* add .Alert to jQuery only if jQuery is present
|
2018-09-26 10:39:01 +02:00
|
|
|
*/
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2021-05-11 10:49:30 +03:00
|
|
|
defineJQueryPlugin(Alert)
|
2015-05-07 12:48:22 -07:00
|
|
|
|
2015-05-07 16:34:28 -07:00
|
|
|
export default Alert
|