0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/js/dist/alert.js

288 lines
8.6 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
2019-02-13 17:01:40 +01:00
* Bootstrap alert.js v4.3.1 (https://getbootstrap.com/)
2019-01-04 17:29:45 +01:00
* Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2018-11-13 07:41:12 +01:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
2018-07-24 02:51:14 +02:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('../dom/data.js'), require('../dom/event-handler.js'), require('../dom/selector-engine.js')) :
typeof define === 'function' && define.amd ? define(['../dom/data.js', '../dom/event-handler.js', '../dom/selector-engine.js'], factory) :
2019-03-01 17:31:34 +01:00
(global = global || self, global.Alert = factory(global.Data, global.EventHandler, global.SelectorEngine));
}(this, function (Data, EventHandler, SelectorEngine) { 'use strict';
2018-07-24 02:51:14 +02:00
2019-03-01 17:31:34 +01:00
Data = Data && Data.hasOwnProperty('default') ? Data['default'] : Data;
EventHandler = EventHandler && EventHandler.hasOwnProperty('default') ? EventHandler['default'] : EventHandler;
SelectorEngine = SelectorEngine && SelectorEngine.hasOwnProperty('default') ? SelectorEngine['default'] : SelectorEngine;
2018-07-24 02:51:14 +02:00
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
2017-09-06 06:05:12 +02:00
2019-03-01 17:31:34 +01:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.3.1): util/index.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var MILLISECONDS_MULTIPLIER = 1000;
var TRANSITION_END = 'transitionend';
2019-03-11 16:13:30 +01:00
var _window = window,
jQuery = _window.jQuery; // Shoutout AngusCroll (https://goo.gl/pxwQGp)
2019-03-01 17:31:34 +01:00
var getSelectorFromElement = function getSelectorFromElement(element) {
var selector = element.getAttribute('data-target');
if (!selector || selector === '#') {
var hrefAttr = element.getAttribute('href');
selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : '';
}
try {
return document.querySelector(selector) ? selector : null;
2019-03-11 16:13:30 +01:00
} catch (error) {
2019-03-01 17:31:34 +01:00
return null;
}
};
var getTransitionDurationFromElement = function getTransitionDurationFromElement(element) {
if (!element) {
return 0;
} // Get transition-duration of the element
var _window$getComputedSt = window.getComputedStyle(element),
transitionDuration = _window$getComputedSt.transitionDuration,
transitionDelay = _window$getComputedSt.transitionDelay;
var floatTransitionDuration = parseFloat(transitionDuration);
var floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found
if (!floatTransitionDuration && !floatTransitionDelay) {
return 0;
} // If multiple durations are defined, take the first
transitionDuration = transitionDuration.split(',')[0];
transitionDelay = transitionDelay.split(',')[0];
return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
};
var triggerTransitionEnd = function triggerTransitionEnd(element) {
2019-04-18 13:47:52 +02:00
var evt = document.createEvent('HTMLEvents');
evt.initEvent(TRANSITION_END, true, true);
element.dispatchEvent(evt);
2019-03-01 17:31:34 +01:00
};
var emulateTransitionEnd = function emulateTransitionEnd(element, duration) {
var called = false;
var durationPadding = 5;
var emulatedDuration = duration + durationPadding;
function listener() {
called = true;
element.removeEventListener(TRANSITION_END, listener);
}
element.addEventListener(TRANSITION_END, listener);
setTimeout(function () {
if (!called) {
triggerTransitionEnd(element);
}
}, emulatedDuration);
};
2018-11-13 07:41:12 +01:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'alert';
2019-02-13 17:01:40 +01:00
var VERSION = '4.3.1';
2018-11-13 07:41:12 +01:00
var DATA_KEY = 'bs.alert';
var EVENT_KEY = "." + DATA_KEY;
var DATA_API_KEY = '.data-api';
var Selector = {
DISMISS: '[data-dismiss="alert"]'
};
2019-04-18 13:47:52 +02:00
var Event = {
2018-11-13 07:41:12 +01:00
CLOSE: "close" + EVENT_KEY,
CLOSED: "closed" + EVENT_KEY,
CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
ALERT: 'alert',
FADE: 'fade',
SHOW: 'show'
2017-09-13 07:24:15 +02:00
/**
* ------------------------------------------------------------------------
2018-11-13 07:41:12 +01:00
* Class Definition
2017-09-13 07:24:15 +02:00
* ------------------------------------------------------------------------
*/
2018-11-13 07:41:12 +01:00
};
2018-11-13 07:41:12 +01:00
var Alert =
/*#__PURE__*/
function () {
function Alert(element) {
this._element = element;
2019-03-01 17:31:34 +01:00
if (this._element) {
Data.setData(element, DATA_KEY, this);
}
2018-11-13 07:41:12 +01:00
} // Getters
2017-09-30 23:28:03 +02:00
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
var _proto = Alert.prototype;
2015-08-13 06:12:03 +02:00
2018-11-13 07:41:12 +01:00
// Public
_proto.close = function close(element) {
var rootElement = this._element;
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
if (element) {
rootElement = this._getRootElement(element);
}
2015-05-08 02:07:38 +02:00
2018-11-13 07:41:12 +01:00
var customEvent = this._triggerCloseEvent(rootElement);
2015-05-07 21:48:22 +02:00
2019-03-01 17:31:34 +01:00
if (customEvent === null || customEvent.defaultPrevented) {
2018-11-13 07:41:12 +01:00
return;
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
this._removeElement(rootElement);
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
_proto.dispose = function dispose() {
2019-03-01 17:31:34 +01:00
Data.removeData(this._element, DATA_KEY);
2018-11-13 07:41:12 +01:00
this._element = null;
2019-01-04 17:29:45 +01:00
} // Private
;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto._getRootElement = function _getRootElement(element) {
2019-03-01 17:31:34 +01:00
var selector = getSelectorFromElement(element);
2018-11-13 07:41:12 +01:00
var parent = false;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (selector) {
2019-03-01 17:31:34 +01:00
parent = SelectorEngine.findOne(selector);
2018-11-13 07:41:12 +01:00
}
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (!parent) {
2019-03-01 17:31:34 +01:00
parent = SelectorEngine.closest(element, "." + ClassName.ALERT);
2018-11-13 07:41:12 +01:00
}
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
return parent;
};
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
_proto._triggerCloseEvent = function _triggerCloseEvent(element) {
2019-04-18 13:47:52 +02:00
return EventHandler.trigger(element, Event.CLOSE);
2018-11-13 07:41:12 +01:00
};
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
_proto._removeElement = function _removeElement(element) {
var _this = this;
2016-11-01 05:36:10 +01:00
2019-03-01 17:31:34 +01:00
element.classList.remove(ClassName.SHOW);
2015-05-07 21:48:22 +02:00
2019-03-01 17:31:34 +01:00
if (!element.classList.contains(ClassName.FADE)) {
2018-11-13 07:41:12 +01:00
this._destroyElement(element);
2015-08-19 05:28:28 +02:00
2018-11-13 07:41:12 +01:00
return;
}
2015-05-07 21:48:22 +02:00
2019-03-01 17:31:34 +01:00
var transitionDuration = getTransitionDurationFromElement(element);
EventHandler.one(element, TRANSITION_END, function () {
return _this._destroyElement(element);
2019-03-01 17:31:34 +01:00
});
emulateTransitionEnd(element, transitionDuration);
2018-11-13 07:41:12 +01:00
};
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
_proto._destroyElement = function _destroyElement(element) {
2019-03-01 17:31:34 +01:00
if (element.parentNode) {
element.parentNode.removeChild(element);
}
2019-04-18 13:47:52 +02:00
EventHandler.trigger(element, Event.CLOSED);
2019-01-04 17:29:45 +01:00
} // Static
;
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
Alert._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
2019-03-01 17:31:34 +01:00
var data = Data.getData(this, DATA_KEY);
2017-09-06 06:05:12 +02:00
2018-11-13 07:41:12 +01:00
if (!data) {
data = new Alert(this);
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (config === 'close') {
data[config](this);
}
});
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
Alert._handleDismiss = function _handleDismiss(alertInstance) {
return function (event) {
if (event) {
event.preventDefault();
}
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
alertInstance.close(this);
2017-09-30 23:28:03 +02:00
};
2018-11-13 07:41:12 +01:00
};
2017-09-30 23:28:03 +02:00
2019-03-01 17:31:34 +01:00
Alert._getInstance = function _getInstance(element) {
return Data.getData(element, DATA_KEY);
};
2018-11-13 07:41:12 +01:00
_createClass(Alert, null, [{
key: "VERSION",
get: function get() {
return VERSION;
}
}]);
2015-05-07 21:48:22 +02:00
2018-11-13 07:41:12 +01:00
return Alert;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2015-05-07 21:48:22 +02:00
2019-04-18 13:47:52 +02:00
EventHandler.on(document, Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert()));
2018-11-13 07:41:12 +01:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2019-03-01 17:31:34 +01:00
* add .alert to jQuery only if jQuery is present
2018-11-13 07:41:12 +01:00
*/
2017-09-30 23:28:03 +02:00
/* istanbul ignore if */
2019-03-01 17:31:34 +01:00
if (typeof jQuery !== 'undefined') {
var JQUERY_NO_CONFLICT = jQuery.fn[NAME];
jQuery.fn[NAME] = Alert._jQueryInterface;
jQuery.fn[NAME].Constructor = Alert;
2018-07-24 02:51:14 +02:00
2019-03-01 17:31:34 +01:00
jQuery.fn[NAME].noConflict = function () {
jQuery.fn[NAME] = JQUERY_NO_CONFLICT;
return Alert._jQueryInterface;
};
}
2015-05-07 21:48:22 +02:00
return Alert;
2018-07-24 02:51:14 +02:00
2019-01-04 17:29:45 +01:00
}));
2018-07-24 02:51:14 +02:00
//# sourceMappingURL=alert.js.map