0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/js/dist/toast.js

242 lines
7.3 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
2020-08-04 18:24:33 +02:00
* Bootstrap toast.js v4.5.1 (https://getbootstrap.com/)
2020-05-12 18:53:07 +02:00
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-08-04 18:24:33 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 07:41:12 +01:00
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery'), require('./util.js')) :
typeof define === 'function' && define.amd ? define(['jquery', './util.js'], factory) :
2020-08-04 18:24:33 +02:00
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Toast = factory(global.jQuery, global.Util));
2019-11-26 18:12:00 +01:00
}(this, (function ($, Util) { 'use strict';
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
$ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
Util = Util && Object.prototype.hasOwnProperty.call(Util, 'default') ? Util['default'] : Util;
2018-11-13 07:41:12 +01:00
2020-08-04 18:24:33 +02:00
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2018-11-13 07:41:12 +01:00
2020-08-04 18:24:33 +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); } }
2018-11-13 07:41:12 +01:00
2020-08-04 18:24:33 +02:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2018-11-13 07:41:12 +01:00
/**
2018-11-24 17:22:59 +01:00
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
2018-11-13 07:41:12 +01:00
*/
2018-11-24 17:22:59 +01:00
var NAME = 'toast';
2020-08-04 18:24:33 +02:00
var VERSION = '4.5.1';
2018-11-24 17:22:59 +01:00
var DATA_KEY = 'bs.toast';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
2020-05-12 18:53:07 +02:00
var EVENT_CLICK_DISMISS = "click.dismiss" + EVENT_KEY;
var EVENT_HIDE = "hide" + EVENT_KEY;
var EVENT_HIDDEN = "hidden" + EVENT_KEY;
var EVENT_SHOW = "show" + EVENT_KEY;
var EVENT_SHOWN = "shown" + EVENT_KEY;
var CLASS_NAME_FADE = 'fade';
var CLASS_NAME_HIDE = 'hide';
var CLASS_NAME_SHOW = 'show';
var CLASS_NAME_SHOWING = 'showing';
2018-11-24 17:22:59 +01:00
var DefaultType = {
animation: 'boolean',
autohide: 'boolean',
delay: 'number'
};
var Default = {
animation: true,
autohide: true,
delay: 500
};
2020-05-12 18:53:07 +02:00
var SELECTOR_DATA_DISMISS = '[data-dismiss="toast"]';
2019-11-26 18:12:00 +01:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
var Toast = /*#__PURE__*/function () {
2018-11-24 17:22:59 +01:00
function Toast(element, config) {
this._element = element;
this._config = this._getConfig(config);
this._timeout = null;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
this._setListeners();
} // Getters
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
var _proto = Toast.prototype;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
// Public
_proto.show = function show() {
var _this = this;
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
var showEvent = $.Event(EVENT_SHOW);
2019-11-26 18:12:00 +01:00
$(this._element).trigger(showEvent);
if (showEvent.isDefaultPrevented()) {
return;
}
2018-11-13 07:41:12 +01:00
2020-08-04 18:24:33 +02:00
this._clearTimeout();
2018-11-24 17:22:59 +01:00
if (this._config.animation) {
2020-05-12 18:53:07 +02:00
this._element.classList.add(CLASS_NAME_FADE);
2018-11-24 17:22:59 +01:00
}
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
var complete = function complete() {
2020-05-12 18:53:07 +02:00
_this._element.classList.remove(CLASS_NAME_SHOWING);
2018-12-16 00:13:22 +01:00
2020-05-12 18:53:07 +02:00
_this._element.classList.add(CLASS_NAME_SHOW);
2018-12-16 00:13:22 +01:00
2020-05-12 18:53:07 +02:00
$(_this._element).trigger(EVENT_SHOWN);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (_this._config.autohide) {
2019-11-26 18:12:00 +01:00
_this._timeout = setTimeout(function () {
_this.hide();
}, _this._config.delay);
2018-11-13 07:41:12 +01:00
}
};
2020-05-12 18:53:07 +02:00
this._element.classList.remove(CLASS_NAME_HIDE);
2018-12-16 00:13:22 +01:00
2019-11-26 18:12:00 +01:00
Util.reflow(this._element);
2020-05-12 18:53:07 +02:00
this._element.classList.add(CLASS_NAME_SHOWING);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (this._config.animation) {
var transitionDuration = Util.getTransitionDurationFromElement(this._element);
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
} else {
complete();
}
};
2018-11-13 07:41:12 +01:00
2019-11-26 18:12:00 +01:00
_proto.hide = function hide() {
2020-05-12 18:53:07 +02:00
if (!this._element.classList.contains(CLASS_NAME_SHOW)) {
2018-11-24 17:22:59 +01:00
return;
}
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
var hideEvent = $.Event(EVENT_HIDE);
2019-11-26 18:12:00 +01:00
$(this._element).trigger(hideEvent);
2018-11-13 07:41:12 +01:00
2019-11-26 18:12:00 +01:00
if (hideEvent.isDefaultPrevented()) {
return;
2018-11-24 17:22:59 +01:00
}
2019-11-26 18:12:00 +01:00
this._close();
2018-11-24 17:22:59 +01:00
};
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
_proto.dispose = function dispose() {
2020-08-04 18:24:33 +02:00
this._clearTimeout();
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
if (this._element.classList.contains(CLASS_NAME_SHOW)) {
this._element.classList.remove(CLASS_NAME_SHOW);
2018-11-24 17:22:59 +01:00
}
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
$(this._element).off(EVENT_CLICK_DISMISS);
2018-11-24 17:22:59 +01:00
$.removeData(this._element, DATA_KEY);
this._element = null;
this._config = null;
2019-01-04 17:29:45 +01:00
} // Private
;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
_proto._getConfig = function _getConfig(config) {
2020-08-04 18:24:33 +02:00
config = _extends({}, Default, $(this._element).data(), typeof config === 'object' && config ? config : {});
2018-11-24 17:22:59 +01:00
Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
return config;
};
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
_proto._setListeners = function _setListeners() {
2019-11-26 18:12:00 +01:00
var _this2 = this;
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
$(this._element).on(EVENT_CLICK_DISMISS, SELECTOR_DATA_DISMISS, function () {
2019-11-26 18:12:00 +01:00
return _this2.hide();
2018-11-24 17:22:59 +01:00
});
};
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
_proto._close = function _close() {
2019-11-26 18:12:00 +01:00
var _this3 = this;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
var complete = function complete() {
2020-05-12 18:53:07 +02:00
_this3._element.classList.add(CLASS_NAME_HIDE);
2018-12-16 00:13:22 +01:00
2020-05-12 18:53:07 +02:00
$(_this3._element).trigger(EVENT_HIDDEN);
2018-11-24 17:22:59 +01:00
};
2020-05-12 18:53:07 +02:00
this._element.classList.remove(CLASS_NAME_SHOW);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (this._config.animation) {
var transitionDuration = Util.getTransitionDurationFromElement(this._element);
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
} else {
complete();
}
2020-08-04 18:24:33 +02:00
};
_proto._clearTimeout = function _clearTimeout() {
clearTimeout(this._timeout);
this._timeout = null;
2019-01-04 17:29:45 +01:00
} // Static
;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
Toast._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $element = $(this);
var data = $element.data(DATA_KEY);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
var _config = typeof config === 'object' && config;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (!data) {
data = new Toast(this, _config);
$element.data(DATA_KEY, data);
}
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError("No method named \"" + config + "\"");
2018-11-13 07:41:12 +01:00
}
2018-11-24 17:22:59 +01:00
data[config](this);
2018-11-13 07:41:12 +01:00
}
2018-11-24 17:22:59 +01:00
});
};
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
_createClass(Toast, null, [{
key: "VERSION",
get: function get() {
return VERSION;
}
}, {
key: "DefaultType",
get: function get() {
return DefaultType;
}
}, {
key: "Default",
get: function get() {
return Default;
}
2018-11-24 17:22:59 +01:00
}]);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
return Toast;
}();
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
$.fn[NAME] = Toast._jQueryInterface;
$.fn[NAME].Constructor = Toast;
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Toast._jQueryInterface;
};
2018-11-13 07:41:12 +01:00
return Toast;
2019-11-26 18:12:00 +01:00
})));
2018-11-13 07:41:12 +01:00
//# sourceMappingURL=toast.js.map