1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/dist/alert.js

206 lines
6.4 KiB
JavaScript
Raw Normal View History

2018-11-13 01:41:12 -05:00
/*!
* Bootstrap alert.js v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 14:50:01 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 01:41:12 -05:00
*/
2018-07-23 20:51:14 -04:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/selector-engine.js'), require('./dom/event-handler.js'), require('./base-component.js')) :
typeof define === 'function' && define.amd ? define(['./dom/selector-engine', './dom/event-handler', './base-component'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Alert = factory(global.SelectorEngine, global.EventHandler, global.Base));
}(this, (function (SelectorEngine, EventHandler, BaseComponent) { 'use strict';
2018-07-23 20:51:14 -04:00
2020-09-14 11:12:06 -04:00
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2021-03-23 12:26:54 -04:00
const getSelector = element => {
let selector = element.getAttribute('data-bs-target');
2019-03-01 11:31:34 -05:00
if (!selector || selector === '#') {
2021-03-23 12:26:54 -04:00
let hrefAttr = element.getAttribute('href'); // The only valid content that could double as a selector are IDs or classes,
// so everything starting with `#` or `.`. If a "real" URL is used as the selector,
// `document.querySelector` will rightfully complain it is invalid.
// See https://github.com/twbs/bootstrap/issues/32273
if (!hrefAttr || !hrefAttr.includes('#') && !hrefAttr.startsWith('.')) {
return null;
} // Just in case some CMS puts out a full URL with the anchor appended
if (hrefAttr.includes('#') && !hrefAttr.startsWith('#')) {
hrefAttr = `#${hrefAttr.split('#')[1]}`;
}
2019-08-27 09:03:21 -04:00
selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : null;
2019-03-01 11:31:34 -05:00
}
2019-08-27 09:03:21 -04:00
return selector;
};
2021-03-23 12:26:54 -04:00
const getElementFromSelector = element => {
const selector = getSelector(element);
2019-08-27 09:03:21 -04:00
return selector ? document.querySelector(selector) : null;
2019-03-01 11:31:34 -05:00
};
2021-03-23 12:26:54 -04:00
const getjQuery = () => {
const {
jQuery
} = window;
2019-08-27 09:03:21 -04:00
2020-11-23 08:17:16 -05:00
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
2019-08-27 09:03:21 -04:00
return jQuery;
}
return null;
};
const DOMContentLoadedCallbacks = [];
2021-03-23 12:26:54 -04:00
const onDOMContentLoaded = callback => {
2020-11-11 12:07:37 -05:00
if (document.readyState === 'loading') {
// add listener on the first call when the document is in loading state
if (!DOMContentLoadedCallbacks.length) {
document.addEventListener('DOMContentLoaded', () => {
DOMContentLoadedCallbacks.forEach(callback => callback());
});
}
DOMContentLoadedCallbacks.push(callback);
2020-11-11 12:07:37 -05:00
} else {
callback();
}
};
const defineJQueryPlugin = plugin => {
2021-03-23 12:26:54 -04:00
onDOMContentLoaded(() => {
const $ = getjQuery();
/* istanbul ignore if */
2020-12-03 09:18:59 -05:00
if ($) {
const name = plugin.NAME;
2021-03-23 12:26:54 -04:00
const JQUERY_NO_CONFLICT = $.fn[name];
$.fn[name] = plugin.jQueryInterface;
$.fn[name].Constructor = plugin;
2020-12-03 09:18:59 -05:00
2021-03-23 12:26:54 -04:00
$.fn[name].noConflict = () => {
$.fn[name] = JQUERY_NO_CONFLICT;
return plugin.jQueryInterface;
};
2020-12-03 09:18:59 -05:00
}
});
};
2020-12-03 09:18:59 -05:00
2021-03-23 12:26:54 -04:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v5.0.2): alert.js
2021-03-23 12:26:54 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2020-12-03 09:18:59 -05:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2021-03-23 12:26:54 -04:00
const NAME = 'alert';
const DATA_KEY = 'bs.alert';
const EVENT_KEY = `.${DATA_KEY}`;
const DATA_API_KEY = '.data-api';
const SELECTOR_DISMISS = '[data-bs-dismiss="alert"]';
const EVENT_CLOSE = `close${EVENT_KEY}`;
const EVENT_CLOSED = `closed${EVENT_KEY}`;
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;
const CLASS_NAME_ALERT = 'alert';
const CLASS_NAME_FADE = 'fade';
const CLASS_NAME_SHOW = 'show';
2019-10-08 02:39:10 -04:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2021-03-23 12:26:54 -04:00
class Alert extends BaseComponent__default['default'] {
// Getters
static get NAME() {
return NAME;
2021-03-23 12:26:54 -04:00
} // Public
2015-05-07 15:48:22 -04:00
2015-08-13 00:12:03 -04:00
2021-03-23 12:26:54 -04:00
close(element) {
const rootElement = element ? this._getRootElement(element) : this._element;
2015-05-07 20:07:38 -04:00
2021-03-23 12:26:54 -04:00
const customEvent = this._triggerCloseEvent(rootElement);
2015-05-07 15:48:22 -04:00
2019-03-01 11:31:34 -05:00
if (customEvent === null || customEvent.defaultPrevented) {
2018-11-13 01:41:12 -05:00
return;
}
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
this._removeElement(rootElement);
2019-01-04 11:29:45 -05:00
} // Private
2017-09-30 17:28:03 -04:00
2015-05-07 15:48:22 -04:00
2021-03-23 12:26:54 -04:00
_getRootElement(element) {
return getElementFromSelector(element) || element.closest(`.${CLASS_NAME_ALERT}`);
}
2015-05-07 15:48:22 -04:00
2021-03-23 12:26:54 -04:00
_triggerCloseEvent(element) {
return EventHandler__default['default'].trigger(element, EVENT_CLOSE);
}
2016-11-01 00:36:10 -04:00
2021-03-23 12:26:54 -04:00
_removeElement(element) {
element.classList.remove(CLASS_NAME_SHOW);
const isAnimated = element.classList.contains(CLASS_NAME_FADE);
2015-05-07 15:48:22 -04:00
this._queueCallback(() => this._destroyElement(element), element, isAnimated);
2021-03-23 12:26:54 -04:00
}
2015-05-07 15:48:22 -04:00
2021-03-23 12:26:54 -04:00
_destroyElement(element) {
element.remove();
2020-09-14 11:12:06 -04:00
EventHandler__default['default'].trigger(element, EVENT_CLOSED);
2019-01-04 11:29:45 -05:00
} // Static
2016-10-09 20:26:51 -04:00
2021-03-23 12:26:54 -04:00
static jQueryInterface(config) {
2018-11-13 01:41:12 -05:00
return this.each(function () {
const data = Alert.getOrCreateInstance(this);
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (config === 'close') {
data[config](this);
}
});
2021-03-23 12:26:54 -04:00
}
2016-10-09 20:26:51 -04:00
2021-03-23 12:26:54 -04:00
static handleDismiss(alertInstance) {
2018-11-13 01:41:12 -05:00
return function (event) {
if (event) {
event.preventDefault();
}
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
alertInstance.close(this);
2017-09-30 17:28:03 -04:00
};
2021-03-23 12:26:54 -04:00
}
2015-05-07 15:48:22 -04:00
2021-03-23 12:26:54 -04:00
}
2018-11-13 01:41:12 -05:00
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-07 15:48:22 -04:00
2020-09-14 11:12:06 -04:00
EventHandler__default['default'].on(document, EVENT_CLICK_DATA_API, SELECTOR_DISMISS, Alert.handleDismiss(new Alert()));
2018-11-13 01:41:12 -05:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2020-11-11 12:07:37 -05:00
* add .Alert to jQuery only if jQuery is present
2018-11-13 01:41:12 -05:00
*/
2017-09-30 17:28:03 -04:00
defineJQueryPlugin(Alert);
2015-05-07 15:48:22 -04:00
return Alert;
2018-07-23 20:51:14 -04:00
2019-11-08 03:11:23 -05:00
})));
2018-07-23 20:51:14 -04:00
//# sourceMappingURL=alert.js.map