0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-19 11:52:21 +01:00
Bootstrap/js/dist/alert.js

265 lines
8.3 KiB
JavaScript
Raw Normal View History

2018-11-13 08:41:12 +02:00
/*!
2021-03-23 18:26:54 +02:00
* Bootstrap alert.js v5.0.0-beta3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 21:50:01 +03:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 08:41:12 +02:00
*/
2018-07-23 17:51:14 -07:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/data.js'), require('./dom/event-handler.js'), require('./base-component.js')) :
typeof define === 'function' && define.amd ? define(['./dom/data', './dom/event-handler', './base-component'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Alert = factory(global.Data, global.EventHandler, global.Base));
}(this, (function (Data, EventHandler, BaseComponent) { 'use strict';
2018-07-23 17:51:14 -07:00
2020-09-14 18:12:06 +03:00
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var Data__default = /*#__PURE__*/_interopDefaultLegacy(Data);
var EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2019-03-01 18:31:34 +02:00
/**
* --------------------------------------------------------------------------
2021-03-23 18:26:54 +02:00
* Bootstrap (v5.0.0-beta3): util/index.js
2020-06-16 21:50:01 +03:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2019-03-01 18:31:34 +02:00
* --------------------------------------------------------------------------
*/
2021-03-23 18:26:54 +02:00
const MILLISECONDS_MULTIPLIER = 1000;
const TRANSITION_END = 'transitionend'; // Shoutout AngusCroll (https://goo.gl/pxwQGp)
2019-03-01 18:31:34 +02:00
2021-03-23 18:26:54 +02:00
const getSelector = element => {
let selector = element.getAttribute('data-bs-target');
2019-03-01 18:31:34 +02:00
if (!selector || selector === '#') {
2021-03-23 18:26:54 +02: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 16:03:21 +03:00
selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : null;
2019-03-01 18:31:34 +02:00
}
2019-08-27 16:03:21 +03:00
return selector;
};
2021-03-23 18:26:54 +02:00
const getElementFromSelector = element => {
const selector = getSelector(element);
2019-08-27 16:03:21 +03:00
return selector ? document.querySelector(selector) : null;
2019-03-01 18:31:34 +02:00
};
2021-03-23 18:26:54 +02:00
const getTransitionDurationFromElement = element => {
2019-03-01 18:31:34 +02:00
if (!element) {
return 0;
} // Get transition-duration of the element
2021-03-23 18:26:54 +02:00
let {
transitionDuration,
transitionDelay
} = window.getComputedStyle(element);
const floatTransitionDuration = Number.parseFloat(transitionDuration);
const floatTransitionDelay = Number.parseFloat(transitionDelay); // Return 0 if element or transition duration is not found
2019-03-01 18:31:34 +02:00
if (!floatTransitionDuration && !floatTransitionDelay) {
return 0;
} // If multiple durations are defined, take the first
transitionDuration = transitionDuration.split(',')[0];
transitionDelay = transitionDelay.split(',')[0];
2020-11-23 15:17:16 +02:00
return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
2019-03-01 18:31:34 +02:00
};
2021-03-23 18:26:54 +02:00
const triggerTransitionEnd = element => {
2020-03-28 12:29:08 +02:00
element.dispatchEvent(new Event(TRANSITION_END));
2019-03-01 18:31:34 +02:00
};
2021-03-23 18:26:54 +02:00
const emulateTransitionEnd = (element, duration) => {
let called = false;
const durationPadding = 5;
const emulatedDuration = duration + durationPadding;
2019-03-01 18:31:34 +02:00
function listener() {
called = true;
element.removeEventListener(TRANSITION_END, listener);
}
element.addEventListener(TRANSITION_END, listener);
2021-03-23 18:26:54 +02:00
setTimeout(() => {
2019-03-01 18:31:34 +02:00
if (!called) {
triggerTransitionEnd(element);
}
}, emulatedDuration);
};
2021-03-23 18:26:54 +02:00
const getjQuery = () => {
const {
jQuery
} = window;
2019-08-27 16:03:21 +03:00
2020-11-23 15:17:16 +02:00
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
2019-08-27 16:03:21 +03:00
return jQuery;
}
return null;
};
2021-03-23 18:26:54 +02:00
const onDOMContentLoaded = callback => {
2020-11-11 19:07:37 +02:00
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', callback);
} else {
callback();
}
};
2021-03-23 18:26:54 +02:00
const defineJQueryPlugin = (name, plugin) => {
onDOMContentLoaded(() => {
const $ = getjQuery();
/* istanbul ignore if */
2020-12-03 16:18:59 +02:00
if ($) {
2021-03-23 18:26:54 +02:00
const JQUERY_NO_CONFLICT = $.fn[name];
$.fn[name] = plugin.jQueryInterface;
$.fn[name].Constructor = plugin;
2020-12-03 16:18:59 +02:00
2021-03-23 18:26:54 +02:00
$.fn[name].noConflict = () => {
$.fn[name] = JQUERY_NO_CONFLICT;
return plugin.jQueryInterface;
};
2020-12-03 16:18:59 +02:00
}
});
};
2020-12-03 16:18:59 +02:00
2021-03-23 18:26:54 +02:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v5.0.0-beta3): alert.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2020-12-03 16:18:59 +02:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2021-03-23 18:26:54 +02: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 09:39:10 +03:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2021-03-23 18:26:54 +02:00
class Alert extends BaseComponent__default['default'] {
// Getters
static get DATA_KEY() {
return DATA_KEY;
} // Public
2015-05-07 12:48:22 -07:00
2015-08-12 21:12:03 -07:00
2021-03-23 18:26:54 +02:00
close(element) {
const rootElement = element ? this._getRootElement(element) : this._element;
2015-05-07 17:07:38 -07:00
2021-03-23 18:26:54 +02:00
const customEvent = this._triggerCloseEvent(rootElement);
2015-05-07 12:48:22 -07:00
2019-03-01 18:31:34 +02:00
if (customEvent === null || customEvent.defaultPrevented) {
2018-11-13 08:41:12 +02:00
return;
}
2016-10-09 17:26:51 -07:00
2018-11-13 08:41:12 +02:00
this._removeElement(rootElement);
2019-01-04 08:29:45 -08:00
} // Private
2017-09-30 14:28:03 -07:00
2015-05-07 12:48:22 -07:00
2021-03-23 18:26:54 +02:00
_getRootElement(element) {
return getElementFromSelector(element) || element.closest(`.${CLASS_NAME_ALERT}`);
}
2015-05-07 12:48:22 -07:00
2021-03-23 18:26:54 +02:00
_triggerCloseEvent(element) {
return EventHandler__default['default'].trigger(element, EVENT_CLOSE);
}
2016-10-31 21:36:10 -07:00
2021-03-23 18:26:54 +02:00
_removeElement(element) {
element.classList.remove(CLASS_NAME_SHOW);
2015-05-07 12:48:22 -07:00
if (!element.classList.contains(CLASS_NAME_FADE)) {
2018-11-13 08:41:12 +02:00
this._destroyElement(element);
2015-08-18 20:28:28 -07:00
2018-11-13 08:41:12 +02:00
return;
}
2015-05-07 12:48:22 -07:00
2021-03-23 18:26:54 +02:00
const transitionDuration = getTransitionDurationFromElement(element);
EventHandler__default['default'].one(element, 'transitionend', () => this._destroyElement(element));
2019-03-01 18:31:34 +02:00
emulateTransitionEnd(element, transitionDuration);
2021-03-23 18:26:54 +02:00
}
2015-05-07 12:48:22 -07:00
2021-03-23 18:26:54 +02:00
_destroyElement(element) {
2019-03-01 18:31:34 +02:00
if (element.parentNode) {
element.parentNode.removeChild(element);
}
2020-09-14 18:12:06 +03:00
EventHandler__default['default'].trigger(element, EVENT_CLOSED);
2019-01-04 08:29:45 -08:00
} // Static
2016-10-09 17:26:51 -07:00
2021-03-23 18:26:54 +02:00
static jQueryInterface(config) {
2018-11-13 08:41:12 +02:00
return this.each(function () {
2021-03-23 18:26:54 +02:00
let data = Data__default['default'].get(this, DATA_KEY);
2017-09-05 21:05:12 -07:00
2018-11-13 08:41:12 +02:00
if (!data) {
data = new Alert(this);
}
2016-10-09 17:26:51 -07:00
2018-11-13 08:41:12 +02:00
if (config === 'close') {
data[config](this);
}
});
2021-03-23 18:26:54 +02:00
}
2016-10-09 17:26:51 -07:00
2021-03-23 18:26:54 +02:00
static handleDismiss(alertInstance) {
2018-11-13 08:41:12 +02:00
return function (event) {
if (event) {
event.preventDefault();
}
2017-09-30 14:28:03 -07:00
2018-11-13 08:41:12 +02:00
alertInstance.close(this);
2017-09-30 14:28:03 -07:00
};
2021-03-23 18:26:54 +02:00
}
2015-05-07 12:48:22 -07:00
2021-03-23 18:26:54 +02:00
}
2018-11-13 08:41:12 +02:00
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-07 12:48:22 -07:00
2020-09-14 18:12:06 +03:00
EventHandler__default['default'].on(document, EVENT_CLICK_DATA_API, SELECTOR_DISMISS, Alert.handleDismiss(new Alert()));
2018-11-13 08:41:12 +02:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2020-11-11 19:07:37 +02:00
* add .Alert to jQuery only if jQuery is present
2018-11-13 08:41:12 +02:00
*/
2017-09-30 14:28:03 -07:00
defineJQueryPlugin(NAME, Alert);
2015-05-07 12:48:22 -07:00
return Alert;
2018-07-23 17:51:14 -07:00
2019-11-08 10:11:23 +02:00
})));
2018-07-23 17:51:14 -07:00
//# sourceMappingURL=alert.js.map